This file contains 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
DELAY 1000 | |
GUI r | |
DELAY 500 | |
STRING cmd | |
SHIFT CTRL ENTER | |
DELAY 1000 | |
LEFT | |
ENTER | |
DELAY 1000 |
This file contains 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
{ | |
"S1A": { | |
"Computer cables": { | |
"USB": { | |
"USB 2.0": { | |
"Mini USB": ["USB cable 2.0 - USB-A male / Mini-B - 0.15 m", "USB cable 2.0 - USB-A male / Mini-B - 1 m "] | |
} | |
} | |
} | |
} |
This file contains 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
CREATE TABLE recipeIngredientRelations( | |
id INTEGER | |
constraint table_name_pk | |
primary key autoincrement, | |
recipeId INTEGER, | |
ingredientId INTEGER, | |
unit INTEGER, | |
amount REAL | |
); |
This file contains 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
import webbrowser as wb | |
import time | |
import datetime | |
# 1. Edit list to your needs | |
l = ["https://calendar.google.com/", | |
"https://todoist.com/app", | |
"https://clockify.me/projects", | |
"https://github.com"] |