I hereby claim:
- I am mattsurabian on github.
- I am mattsurabian (https://keybase.io/mattsurabian) on keybase.
- I have a public key whose fingerprint is 4166 58C3 5DE7 068C 2BF3 E9DE 7A3B 61CD D032 A9E4
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
redis-cli -h <HOST> -p <PORT> KEYS "<PATTERN>" | xargs -i% redis-cli -h <HOST> -p <PORT> DEL % |
If you rushed through David Shariff's JS Quiz or are just new to JS they might be. I know mine were. After I dried my eyes, I took the quiz again, this time very slowly trying to get at the meat behind each answer. Below is my attempt to explain each question's answer and offer some interesting permutations so that others can move beyond their hurt feelings and come out the other side better JS developers.
I initially thought I'd turn this into a blog post but think it's probably better as a gist.
Don't over think it.
var foo = function foo() {
#!upstart | |
# | |
# Copy me to /etc/init/ | |
# This installs a daemon as a system level call and ensures the process can be monitored and is consistently restarted on error. | |
# Manual start, stop, and restart respected. | |
# | |
description "DESCRIBE_ME" | |
# Let upstart attempt to restart the daemon on error, exit, or otherwise non-manual termination |
/** | |
* GoogleMapsAPI Loader Module | |
* | |
* Returns a promise that resolves with the google.maps object when all of the google maps api loading process is complete | |
* | |
* Example Usage: | |
* | |
* define([ 'app/lib/google-maps-loader' ], function(GoogleMapsLoader){ | |
* GoogleMapsLoader.done(function(GoogleMaps){ | |
* // your google maps code here! |
var cluster = require('cluster'); | |
if(cluster.isMaster) { | |
var numCPUs = require('os').cpus().length; | |
var data = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']; | |
var currentDataPos = 0; | |
console.log(numCPUs+' CPUs detected'); | |
var statusInterval = setInterval(function(){ |
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
const( | |
ACCURACY_DELTA = 0.00000000000001 // Experiment with this value to see accuracy impact! | |
) |
package main | |
import "fmt" | |
import "math/cmplx" | |
import "math" | |
const( | |
ACCURACY_DELTA = 0.0000000000000001 | |
) |
package main | |
import "fmt" | |
// fibonacci is a function that returns | |
// a function that returns an int. | |
func fibonacci() func() int { | |
var m1, m2 int | |
return func() int { | |
res := m1 + m2 |
package main | |
import ( | |
"code.google.com/p/go-tour/wc" | |
"strings" | |
) | |
func WordCount(s string) map[string]int { | |
words := strings.Fields(s) |