Skip to content

Instantly share code, notes, and snippets.

View joshuavial's full-sized avatar

Joshua Vial joshuavial

View GitHub Profile

Keybase proof

I hereby claim:

  • I am joshuavial on github.
  • I am joshuavial (https://keybase.io/joshuavial) on keybase.
  • I have a public key whose fingerprint is 594A C1D1 927B B45A DF15 F536 E451 7834 B772 85B7

To claim this, I am signing this object:

@joshuavial
joshuavial / gist:d33c30ddb47f4857f8c9
Created May 11, 2015 22:48
js function that has properties
var $ = (function() {
var jquery = function(selector) {
console.log(selector)
}
jquery.on = function() {
console.log('on')
}
return jquery
})()
@joshuavial
joshuavial / gist:adcf177b9e99c60d30e3
Last active November 25, 2015 01:15
Remote Job Boards
http://www.workingnomads.co/
http://www.reddit.com/r/remotejs/
https://www.reddit.com/r/Jobs4Bitcoins/
https://jobs.github.com/positions?description=&location=remote
https://authenticjobs.com/#types=7,1,3,5&category=2&onlyremote=1
https://authenticjobs.com/#types=7,1,3,5&category=4&onlyremote=1
https://remotecoder.io/
https://weworkremotely.com/
https://remoteok.io/
http://careers.stackoverflow.com/jobs?allowsremote=true
@joshuavial
joshuavial / gist:2644cb22f629a6c29f51
Created February 9, 2015 20:58
recursive fibonacci ruby example
def fib(number)
return 0 if number < 1
return 1 if number == 1
fib = fib(number-1) + fib(number-2)
end
puts fib(0) == 0
puts fib(1) == 1
puts fib(2) == 1