Skip to content

Instantly share code, notes, and snippets.

View MattSurabian's full-sized avatar

Matthew Surabian MattSurabian

View GitHub Profile
@MattSurabian
MattSurabian / keybase.md
Created March 25, 2014 00:05
Verifying myself on keybase.io https://keybase.io/mattsurabian

Keybase proof

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:

@MattSurabian
MattSurabian / redis-one-line--pattern-delete.sh
Last active November 14, 2018 17:52
One liner for deleting based on a pattern in redis. KEYS supports wildcards, delete doesn't. No worries xargs to the rescue. You might not need HOST, or PORT depending on your setup. You might need to sudo BOTH commands depending on your setup.
redis-cli -h <HOST> -p <PORT> KEYS "<PATTERN>" | xargs -i% redis-cli -h <HOST> -p <PORT> DEL %
@MattSurabian
MattSurabian / JS Quiz Answer Explanations.md
Last active October 11, 2023 19:38
My attempt to explain the answers for David Shariff's feelings hurting JS quiz found at: davidshariff.com/js-quiz/

Are your feelings hurt?

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.

Question #1

Don't over think it.

var foo = function foo() {
@MattSurabian
MattSurabian / upstartTemplate.conf
Last active December 31, 2015 21:09
Basic upstart script template
#!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
@MattSurabian
MattSurabian / google-maps-loader.js
Last active June 26, 2019 16:07
Boilerplate RequireJS module to async load the google maps api and still be able to bundle with rjs. Cooked up with @adamjarret
/**
* 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(){
@MattSurabian
MattSurabian / SqrtErrors.go
Created July 14, 2013 13:17
My implementation of the Errors Exercise in Go, printing errors if a negative number is run through the Sqrt function. Part of the Go tour: http://tour.golang.org/#55
package main
import (
"fmt"
"math"
)
const(
ACCURACY_DELTA = 0.00000000000001 // Experiment with this value to see accuracy impact!
)
@MattSurabian
MattSurabian / NewtonianCubeRoot.go
Created July 14, 2013 06:06
My implementation of the Newtonian Cube Root Approximation using complex numbers in Go. Part of the Go tour: http://tour.golang.org/#47
package main
import "fmt"
import "math/cmplx"
import "math"
const(
ACCURACY_DELTA = 0.0000000000000001
)
@MattSurabian
MattSurabian / FibonacciClosure.go
Created July 14, 2013 05:32
Implementation of a Fibonacci Closure in Go. Part of the Go tour: http://tour.golang.org/#43
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
@MattSurabian
MattSurabian / WordCount.go
Created July 14, 2013 04:52
My implementation of WordCount in Go. Part of the Go tour: http://tour.golang.org/#40
package main
import (
"code.google.com/p/go-tour/wc"
"strings"
)
func WordCount(s string) map[string]int {
words := strings.Fields(s)