Skip to content

Instantly share code, notes, and snippets.

View QWxleA's full-sized avatar

Alex QWxleA

View GitHub Profile
@SuzanaK
SuzanaK / README.md
Last active March 13, 2017 08:26
World map with languages of jw.org

Map of languages from jw.org (July 2014)

This visualisation does not contain all languages from jw.org (644 in July 2014) but only those where the Glottolog entry contains the geographical coordinates (587 languages).

Each circle contains a hyperlink to the corresponding publications on jw.org.

Map data from MBostock's TopoJSON, language data from Glottolog, languages from jw.org/en/publications, color palette from this ColourLovers palette.

You can scroll and move the map with the mouse.

@ShingoFukuyama
ShingoFukuyama / Samples of ht.el
Created February 7, 2014 05:02
Samples of ht.el Emacs Lisp hash table library.
;; Wilfred / ht.el
;; https://github.com/Wilfred/ht.el
(setq $h1 (ht (1 8888)
(2 "ABCDE")
(3 "Emacs Lisp")
(4 "Emacs")))
;; => #s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8 data
;; (1 8888 2 "ABCDE" 3 "Emacs Lisp" 4 "Emacs"))