´´´´javascript
´´´´
function paramify(p){var n=0,r='';for(var i in p){r+=(!n++?'':'&')+i+'='+p[i];}return r;} |
function beep(){ | |
process.stderr.write('\x07'); | |
} |
% -------------------------------------------------------------- | |
% This is all preamble stuff that you don't have to worry about. | |
% Head down to where it says "Start here" | |
% -------------------------------------------------------------- | |
\documentclass[12pt]{article} | |
\usepackage[margin=1in]{geometry} | |
\usepackage{amsmath,amsthm,amssymb} | |
insertDash=n=>{var r='',i;n+=r;for(i in n){r+=(n[i-1]%2&&n[i]%2?'-':'')+n[i]}return r} |
{ | |
"scripts": { | |
"a": "mkdir a && touch a.js && webpack a bundle-a.js", | |
"b": "touch b.js && webpack b bundle-b.js" | |
}, | |
"dependencies": { | |
"webpack": "^1.13.1" | |
} | |
} |
**** = Editor's Choice(tm) | |
1Password - Password Manager | |
(Adium) - IM Client | |
**** App Cleaner | |
Dash - Code Documentation | |
(Grammarly) - Natural Language Editor | |
HandBrake - Transcoder | |
Hex Fiend - Hex Editor | |
Hopper Disassembler - falls Du einen brauchst, auf jeden Fall der Beste für mac |
I hereby claim:
To claim this, I am signing this object:
const add=(x,...r)=>x+(+r?r[0]:add(...r)); | |
console.log(add(1,2,3,4,5,6)); |
#!/bin/bash | |
set -e | |
rm -f text | |
vi text | |
rm -f text.asc | |
gpg --clearsign text | |
cat text.asc | pbcopy |