Skip to content

Instantly share code, notes, and snippets.

View skt-t1-byungi's full-sized avatar

BYUNGI skt-t1-byungi

View GitHub Profile
@skt-t1-byungi
skt-t1-byungi / hyper-nitty-gritty.js
Created January 29, 2018 13:50 — forked from WebReflection/hyper-nitty-gritty.js
hyperHTML, the nitty gritty
// used to retrieve template content
const templates = new Map;
// used to retrieve node updates
const updates = new WeakMap;
// hyperHTML, the nitty gritty
function hyperHTML(chunks, ...interpolations) {
// if the static chunks are unknown
@skt-t1-byungi
skt-t1-byungi / ie.gif
Last active August 17, 2017 02:07 — forked from nolanlawson/ie.gif
Scroll jank demo - touch (passive false)
ie.gif
@skt-t1-byungi
skt-t1-byungi / ie.gif
Last active August 17, 2017 02:07 — forked from nolanlawson/LICENSE
Scroll jank demo - wheel (passive true)
ie.gif
@skt-t1-byungi
skt-t1-byungi / OpenWithSublimeText3.bat
Created October 6, 2016 06:36 — forked from cstewart90/OpenWithSublimeText3.bat
Open folders and files with Sublime Text 3 from windows explorer context menu (tested in Windows 10)
@echo off
SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f