>>349
> document.querySelectorAll() を
> $() とかけるだけで、素晴らしいって思うだろうねw

document.querySelectorAll()を$()と書けるようにする方法

方法1:
var $ = document.querySelectorAll.bind(document)
(48文字、minifyで46文字)

方法2:
jQueryのロード
(minify + gzipで約30,000文字w)
ブラウザがgzip解凍後の約85,000文字のjsで書かれたjQueryコードをパース、コンパイルwww
結構な時間です
https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/javascript-startup-optimization/#parsecompile