Skip to content

Instantly share code, notes, and snippets.

View amcnamara's full-sized avatar

Alex McNamara amcnamara

View GitHub Profile
@amcnamara
amcnamara / gist:fbff94386b5d68bfae4a716011fdf6e1
Created January 29, 2025 23:32
telnet towel.blinkenlights.nl
This file has been truncated, but you can view the full file.
Original Work : Simon Jansen ( http://www.asciimation.co.nz/ )
Telnetification : Sten Spans ( sten@blinkenlights.nl )
Terminal Tricks : Mike Edwards (pf-asciimation@mirkwood.net)
@amcnamara
amcnamara / gist:88165926a192e768cc5e86293340935d
Created January 19, 2025 04:06
Wayback Machine asset list for WikiChip (defunct)
http://web.archive.org/web/20131223233007id_/http://en.wikichip.org/wiki/Variables_-_C
http://web.archive.org/web/20131223233017id_/http://en.wikichip.org/wiki/Operator_precedence_and_associativity_-_C
http://web.archive.org/web/20131223233043id_/http://en.wikichip.org/wiki/Data_types_-_C
http://web.archive.org/web/20131223233124id_/http://en.wikichip.org/wiki/Generic_selection_-_C
http://web.archive.org/web/20131223233701id_/http://en.wikichip.org/wiki/Phobos
http://web.archive.org/web/20131229224818id_/http://en.wikichip.org/wiki/Category:Lua_Standard_Libraries
http://web.archive.org/web/20131229224905id_/http://en.wikichip.org/wiki/Deque_Header_-_C%2B%2B
http://web.archive.org/web/20131229224944id_/http://en.wikichip.org/wiki/Assert.h
http://web.archive.org/web/20131229224952id_/http://en.wikichip.org/wiki/Complex.h
http://web.archive.org/web/20131229224959id_/http://en.wikichip.org/wiki/Ctype.h
@amcnamara
amcnamara / gist:1249805
Created September 29, 2011 01:59
Quine o' lets
(LET ((LET '`(LET ((LET ',LET)) ,LET))) `(LET ((LET ',LET)) ,LET))
@amcnamara
amcnamara / gist:1193721
Created September 4, 2011 23:37
Test for single character difference (sub, del, ins) between two strings.
#(loop [i % j %2]
(if (not= (first i) (first j))
(or (= (rest i) (rest j)) (= (rest i) j) (= i (rest j)))
(or (empty? i) (recur (rest i) (rest j)))))