Skip to content

Instantly share code, notes, and snippets.

View valdean's full-sized avatar

Val Klump valdean

View GitHub Profile
@jonobr1
jonobr1 / has.js
Last active January 5, 2021 15:54
A nano JavaScript object that relays information about the window.navigator. Great for some feature detection and user agent.
/**
* @author jonobr1 / http://jonobr1.com
*
*/
var has = (function() {
var root = this;
var previousHas = root.has || {};
@coldnebo
coldnebo / Default (OSX).sublime-keymap -- User
Created February 3, 2012 16:21
Sublime Text 2 fix for OSX home/end keys
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} }