Skip to content

Instantly share code, notes, and snippets.

View hi-im-aj's full-sized avatar
💻
Hi!

Anders Jørgensen hi-im-aj

💻
Hi!
  • Denmark
  • 11:08 (UTC +02:00)
View GitHub Profile
DELAY 1000
GUI r
DELAY 500
STRING cmd
SHIFT CTRL ENTER
DELAY 1000
LEFT
ENTER
DELAY 1000
@hi-im-aj
hi-im-aj / storage.json
Last active October 27, 2021 14:22
Computer Science json task
{
"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 "]
}
}
}
}
CREATE TABLE recipeIngredientRelations(
id INTEGER
constraint table_name_pk
primary key autoincrement,
recipeId INTEGER,
ingredientId INTEGER,
unit INTEGER,
amount REAL
);
@hi-im-aj
hi-im-aj / website.py
Created January 13, 2021 10:15
Run this file on startup
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"]