Hay's dev cheatsheet
So, how do i...
#!/usr/bin/env python3 | |
from bs4 import BeautifulSoup | |
from dataknead import Knead | |
from pathlib import Path | |
import requests | |
import sys | |
import urllib.request | |
API_KEY = "your-api-key-here" |
title | |
"Rooms Katholieke Kerk" | |
"Gereformeerde Kerken in Nederland" | |
"Ned. Hervormde Kerk" | |
"PKN Gereformeerde Kerk" | |
"Islamitisch" | |
"Christelijke Gereformeerde Kerk" | |
"Evangelie Gemeente" | |
"Rooms-Katholieke Kerk" | |
"PKN Ned. Hervormd" |
Sean,706883 | |
Adam,90500 | |
Grace,407103 | |
Sean,836266 | |
Kelly,28335 |
Welcome to the fake people database! | |
No people database yet | |
Make a choice: | |
1) Remove a person | |
2) Add a person | |
3) Quit the program | |
Make your choice: [1/2/3]: 2 | |
Added Jane with phone number 52334 | |
Saved the database with 1 people | |
There are 1 people in the database: |
Hey, welcome to Number Guessr | |
Please state your name Hay | |
Welcome Hay! You'll have 5 tries to guess a number | |
The number will be between 1 and 100 | |
You have 5 guesses remaining | |
What's your guess? 50 | |
50 is not correct, the number is lower | |
You have 4 guesses remaining | |
What's your guess? 25 |
#!/usr/bin/env python3 | |
from tqdm import tqdm | |
from sys import argv, exit | |
from os.path import getsize | |
def fix_token(token): | |
if token == ",": | |
return "''," | |
elif token == "(,": | |
return "(''," |
# Converts a JSONL file generated with telegram-history-dump (1) to CSV | |
# Usage: python telegram-csv.py <path to json file> <path to output csv file> | |
# Example: python telegram-csv.py Bob.json Bob.csv | |
# 1: https://github.com/tvdstaaij/telegram-history-dump | |
from datetime import datetime | |
import unicodecsv as csv | |
import json, sys | |
def get_isodate(msg): | |
date = msg.get("date", None) |
import java.io.BufferedReader; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
public class WMStats { | |
private static final String FILE_NAME = "pagecounts-20141029-230000"; |
So, how do i...
var Module = Stapes.subclass({ | |
sayName : function() { | |
console.log('i say my name!'); | |
} | |
}); | |
var BetterModule = Module.subclass({ | |
// Note that this method name is the same as the one in Module | |
sayName : function() { | |
BetterModule.parent.sayName.apply(this, arguments); |