Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<link href="http://getbootstrap.com/dist/css/bootstrap.css" rel="stylesheet" />
<meta charset=utf-8 />
<title>Form Accessibility</title>
</head>
<body>
<div class="container">
<form class="form-horizontal" action="javascript:void 0">
@kaleb
kaleb / .gitignore
Last active November 9, 2017 16:40
/node_modules
/jspm_packages
@kaleb
kaleb / README.md
Created December 18, 2017 16:06
HTML comments

HTML Comments

Comment below

@kaleb
kaleb / redirect.html
Created February 28, 2011 00:49
Template for Redirect Page
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Refresh" content="0; url={{ content }}">
<title>Redirect to {{ content }}</title>
</head>
<body>
<a href="{{ content }}">{{ content }}</a>
</body>
</html>
@kaleb
kaleb / js-main.js
Last active December 14, 2018 02:13
// @ts-check
import {Person} from './person.js';
const clippy = new Person('Clippy',
new Date(1996, 11 - 1, 19));
const rocky = new Person('Rocky',
9879879879879877);
@kaleb
kaleb / XDG.vim
Last active January 17, 2022 23:16
VIM XDG Configuration
" XDG Environment For VIM
" =======================
"
" References
" ----------
"
" - http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables
" - http://tlvince.com/vim-respect-xdg
"
if empty($XDG_CACHE_HOME)
@kaleb
kaleb / aliases
Created October 15, 2011 15:51
Gmail on Mutt
#~/.mutt/aliases
alias nick Nicholas Levandoski <nick.levandoski@auglug.org>
alias tim Timothy Pitt <timothy.pitt@auglug.org>
alias steven Steven Jackson <sjackson@auglug.org>
alias kaleb Kaleb Hornsby <kaleb.hornsby@auglug.org>
alias alug-admin nick, tim, steven
@kaleb
kaleb / .vscode\settings.json
Created July 21, 2016 18:40
Lint Old PHP Using Docker For Visual Studio Code
{
"php.validate.executablePath": "scripts/php.sh"
}