https://instagram.com/accounts/remove/request/permanent/
View delete.md
Instagram
Facebook
View countries.js
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
// Array of [continent code, country code, country name] | |
// Source: https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_continent_(data_file) | |
// let rows = Array.from(document.querySelectorAll('table.sortable tr')) | |
// let data = rows.slice(1).map(row => [row.cells[0].textContent, row.cells[1].textContent, row.cells[4].textContent]) | |
// data | |
[ | |
[ | |
"AS", | |
"AF", | |
"Afghanistan, Islamic Republic of" |
View colors.txt
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
16 (0,0,0) | |
17 (0,0,95) | |
18 (0,0,135) | |
19 (0,0,175) | |
20 (0,0,215) | |
21 (0,0,255) | |
22 (0,95,0) | |
23 (0,95,95) | |
24 (0,95,135) | |
25 (0,95,175) |
View caesar.py
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
from functools import wraps | |
a_ord = ord('a') | |
class NonAlphaException(Exception): | |
pass | |
View forth.sml
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
structure Parser = | |
struct | |
exception ParsingError of string | |
datatype cmd = Push of int | |
| Add | |
| Sub | |
| Mul | |
| Div | |
| Dup |
View pascal.sml
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
structure Pascal = | |
struct | |
local | |
fun nextrow row = | |
let | |
val (ns, _) = | |
foldl | |
(fn (x, (acc, prev)) => ((prev + x) :: acc, x)) | |
([], 0) | |
row |
View quickselect.go
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
package main | |
import ( | |
"sort" | |
) | |
func partition(xs []int, left, right, pivotIndex int) int { | |
pivot := xs[pivotIndex] | |
partitionIndex := left | |
xs[pivotIndex], xs[right] = xs[right], xs[pivotIndex] |
View hofstadter.sml
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
(* | |
* Hofstadter sequences | |
* https://en.wikipedia.org/wiki/Hofstadter_sequence | |
*) | |
signature QUEUE = | |
sig | |
type 'a queue = 'a list * 'a list | |
val empty: 'a queue | |
val enqueue: 'a -> 'a queue -> 'a queue |
View fibonacci.py
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
def fib(): | |
a, b = 0, 1 | |
while True: | |
yield a | |
a, b = b, a + b |
View tictactoe.py
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 random | |
import curses | |
import sys | |
import time | |
class Board(object): | |
WINNING_COMBOS = ( | |
(0, 1, 2), | |
(3, 4, 5), |
NewerOlder