This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<base target="_top"> | |
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css"> | |
</head> | |
<body> | |
<div id="container"> | |
<h1>Choose Your Goat</h1> | |
<form id="goatForm" onsubmit="event.preventDefault();"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @author Yagisanatode @link https://www.yagisanatode.com | |
// Link to attached sheet. Go to File > Make a copy | |
// @link https://docs.google.com/spreadsheets/d/14orOMBnjpjHewUsWUgunZQKbeNNnZHM9JKMpkaCxRDA/edit#gid=0 | |
// ####### on Edit trigger function ####### | |
/** | |
* Custom Apps Script Trigger function that runs when sheet is edited. | |
* @param {Object} e - Apps Script trigger event object. | |
*/ | |
function onEdit(e) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<base target="_top"> | |
</head> | |
<body> | |
<h1 style="color:blue">You are worthy!</h1> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Check out the link for the full tutorial and video guide | |
* {@link https://yagisanatode.com/2021/07/03/get-a-unique-list-of-objects-in-an-array-of-object-in-javascript/ |Get a Unique List of Objects in an Array of Object in JavaScript} | |
*/ | |
const myObjArray = [ | |
{ | |
name: "Eva Devore", | |
character: "Evandra", | |
episodes: 15, | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Link to the tutorial: https://yagisanatode.com/2021/05/16/how-to-find-and-replace-text-in-a-google-doc-with-a-link-or-a-list-of-links-with-google-apps-script/ | |
/** | |
* Find an replace text with a single link where there is no | |
* other text in the paragraph. | |
*/ | |
function singleLink() { | |
// ## Inputs ## | |
let text = "My URL"; | |
let url = "https://yagisanatode.com/"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Finding an Item Between Two Characters In a String Using: | |
partition and rpartition | |
This could be handy for file creation and checking. | |
''' | |
file = 'batman(0).jpg' | |
file.partition('(')[-1].rpartition(')')[0] | |
''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! Python 3.4 | |
### using the "with" statment to open a file### | |
"""Two ways to open a file""" | |
""" The old way """ | |
file = open('example.txt', 'r') | |
read_file = file.read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! Python 3 | |
''' | |
Aim: To ping every fifth time in a count while | |
printing out the count 1 to 20 | |
''' | |
count = 1 | |
for i in range(0,4): | |
print ("ping") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! Python 3.4 | |
""" | |
Open a file dialog window in tkinter using the filedialog method. | |
Tkinter has a prebuilt dialog window to access files. | |
This example is designed to show how you might use a file dialog askopenfilename | |
and use it in a program. | |
""" |
NewerOlder