Skip to content

Instantly share code, notes, and snippets.

View Yagisanatode's full-sized avatar

Yagisanatode Yagisanatode

View GitHub Profile
@Yagisanatode
Yagisanatode / RemoveWhitespace.py
Last active August 29, 2015 14:21
Removing Unwanted Whitespace in a String
###Removing Unwanted Whitespace In A String###
Comment_1 = " How are you? "
Comment_2 = " How are you? "
def remove_whitespace_either_side(comment):
comment = comment.strip()
print(comment)
def remove_any_duplicated_white_space(comment):
comment = " ".join(comment.split())
print (comment)
@Yagisanatode
Yagisanatode / ReturnFunction.py
Last active August 29, 2015 14:21
Returning A Value From A Function To Be Used Outside The Function
###Using a variable in a function from outside the function###
###Returning a value from a function to be used outside the function.###
# Returns a string in lowercase
def Make_Lowercase(cmt):
cmt = cmt.lower()
return cmt
comment = "My name is SCOTT."
print ("Commment without lowercase formatting:")
@Yagisanatode
Yagisanatode / NthNumberRangeLoop.py
Last active August 29, 2015 14:21
Python 3 - Use In For In Range Loop To Do Differently Occurring Tasks
#! 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")
@Yagisanatode
Yagisanatode / WithOpen.py
Last active August 29, 2015 14:21
Python 3 - Opening files Using the "with" Statement
#! 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()
@Yagisanatode
Yagisanatode / partition.py
Created May 29, 2015 09:32
Python - Finding an Item Between Two Characters In a String Using: partition and rpartition
'''
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]
'''
@Yagisanatode
Yagisanatode / Tkinter_filedialog.py
Last active July 15, 2021 11:58
Python 3 - Open file dialog window in tkinter with filedialog
#! 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.
"""
@Yagisanatode
Yagisanatode / Index.html
Last active August 18, 2021 07:16
Added link to tutorial
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<h1 style="color:blue">You are worthy!</h1>
</body>
</html>
@Yagisanatode
Yagisanatode / Code.gs
Last active November 3, 2021 09:23
Update Date-Time stamp on checkbox clicked in Google Sheets with Google Apps Script
// @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) {
@Yagisanatode
Yagisanatode / TkinterScrollingWithText.py
Last active April 22, 2022 19:51
Scrolling with inserted text using ScrolledText "yview" in tkinter
###Tkinter Scrolling with Text###
'''Make text scroll to the bottom of the text box as new entries appear'''
from tkinter import *
from tkinter.scrolledtext import *
window = Tk()
@Yagisanatode
Yagisanatode / list_hidden_google_sheets.gs
Last active September 9, 2022 00:04
List hidden Google Sheets by name and id with Google Apps Script
/**
* @OnlyCurrentDoc
*/
/**
* Get a list of hidden or visible sheets.
* [The video tutorial]{@link https://youtu.be/jsTvi_F_Xk8}
* @author Scott (Yagi) <yagisanatode@gmail.com>
* @license Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)
*/