I hereby claim:
- I am alexkrolick on github.
- I am krolick (https://keybase.io/krolick) on keybase.
- I have a public key whose fingerprint is C812 6A18 8976 B0CF 029F C880 B074 92C5 FC3B FD70
To claim this, I am signing this object:
\usepackage{embedfile} % for attaching the .tex file to the PDF | |
\embedfile{\jobname.tex} % embed the source |
\documentclass[11pt,letterpaper]{article} | |
%DOCUMENT INFORMATION | |
\title{Document Title} | |
\author{First Author Name \and Second Author Name} | |
\date{\today} | |
%PACKAGES | |
\usepackage{graphicx} % for images | |
\usepackage{fullpage} % 1" margins |
I hereby claim:
To claim this, I am signing this object:
<div id="editor-container"></div> | |
<form submit="#"> | |
<input type="hidden" id="myHtml"/> | |
<button type="submit">Submit</submit> | |
</form> |
const CDN = process.env['CDN_HOST'] || ''; | |
/** | |
* Webpack configuration for integrating Webpack with Rails via the webpack-rails gem | |
* (https://github.com/mipearson/webpack-rails) | |
* | |
* Cache-Busting Strategy: | |
* Development: Change query string of resource when content MD5 hash changes, | |
* rewriting the asset in place but triggering rewrite of the manifest. | |
* Production: Use MD5 hash of asset as filename, writing new assets and manifest |
/** | |
* Replace browser's URL search parameter. Expects jQuery, $, or window to have .param | |
* defined or it will only URIencode strings and error on other types. | |
*/ | |
function replaceUrlSearchParams(newParams) { | |
var url; | |
if (typeof window.URL === "function") { | |
url = new URL(window.location.href); | |
} else { | |
// Workaround for browsers without URL constructor: |
# Installation | |
# | |
# MacOS | |
# | |
# mkdir ~/.zsh | |
# brew install zsh-syntax-highlighting zsh-completions | |
# touch ~/.zshrc | |
# touch ~/.profile | |
# | |
# Paste this file into `~/.zshrc` |
<div class="app"> | |
</div> |
// Before April 2017 run this with flags: | |
// node --harmony-async-await ./async-test.js | |
function sayHi (name) { | |
if (name == null) throw Error('Missing name') | |
return `Hi ${name}.` | |
} | |
function sayWhatsUpAsync (msg, timeoutMs) { | |
console.log(`Will return in ${timeoutMs / 1000}s`) |
[alias] | |
last = log -1 HEAD | |
unstage = reset HEAD -- | |
undo = reset --soft HEAD^ | |
stash-all = stash save --include-untracked | |
ss = stash-all | |
a = add --patch | |
aa = add . | |
amend = commit --amend | |
c = commit |