Note the following code:
if (a) {
foo()
bar()
}
else {
foo()
moo()
Aardvark | |
Aardwolf | |
African Buffalo | |
African Elephant | |
African Leopard | |
Albatross | |
Alligator | |
Alpaca | |
Amphibian | |
Anaconda |
/* | |
An "or" function is a higher-order function that composes multiple predicates into one, | |
such that the composed predicate will return true if at least one of the predicates | |
returns true for the given argument. (A predicate is a function that returns `boolean`.) | |
e.g. | |
const isEven = n => n%2 === 0 | |
const isPositive = n => n > 0 | |
// un-fancy |
{ | |
"drawhint": [ | |
[{ | |
"char": "l" | |
}] | |
], | |
"drawhintn": [ | |
[{ | |
"shift": true, | |
"char": "l" |
# convert a video to an animated gif | |
# requires ffmpeg and gifsicle | |
togif() { | |
if [ $# -lt 1 ] | |
then | |
echo "Converts a video to a compressed, animated gif. Outputs to INPUT.xyz.gif" | |
echo "" | |
echo "Usage:" | |
echo "togif input.mov" | |
return 1 |
{ | |
"10391939175ab928c729511332ec9883" : { | |
"9a40cbd4ba0ba21269bcb0228eb1f6f6" : { | |
"c427925417b73918db2732368c79bc48" : { | |
"550179f314032c3690136920213af67a" : { | |
"lastUpdated" : "2020-06-05T00:56:55.025Z", | |
"leaf" : true, | |
"path" : [ { | |
"rank" : 4.0419921875, | |
"value" : "🏡 Home" |
Note the following code:
if (a) {
foo()
bar()
}
else {
foo()
moo()
/* https://github.com/sindresorhus/refined-github */ | |
/* conflict marker positioning */ | |
.rgh-conflict-marker { margin-left: 5px !important; margin-right: 0 !important } | |
/* everhour start icon */ | |
.js-issue-row .everhour.start { display: none !important; } | |
/* reset row size */ | |
.js-issue-row .text-small.text-gray { line-height: inherit; !important } |
# https://superuser.com/questions/436314/how-can-i-get-bash-to-perform-tab-completion-for-my-aliases/437508#437508 | |
# Usage: | |
# 1. Save alias_completion.sh to /usr/local/etc/ or wherever. | |
# 2. echo "source /usr/local/etc/alias_completion.sh" >> ~/.bash_profile | |
# 3. source ~/.bash_profile | |
# Automatically add completion for all aliases to commands having completion functions | |
function alias_completion { | |
local namespace="alias_completion" |
This is a sample sentence. | |
That is a tample tentence. |
npm rebuild leveldown scrypt; | |
echo "Starting Testrpc..." | |
./node_modules/ethereumjs-testrpc/bin/testrpc --port 8545 --account "0xb21e287e6dcb34cf16abb6ce71f7209906c13f763c6415c6b2320eea7688212f, 10000000000000000000000000" --account "0x3ba8150286625233d3154d795527e3cbbc07a135d14392e9485f08d2d555fb3d, 10000000000000000000000000" & | |
testrpc_pid=$! | |
sleep 5; | |
karma start config.karma.js | |
echo "Shutting down TestRpc..." | |
kill -9 $testrpc_pid | |
./node_modules/.bin/electron-rebuild; |