Skip to content

Instantly share code, notes, and snippets.

@zenorocha
zenorocha / basic.md
Last active March 26, 2023 09:00
New Firebase Auth vs Old Firebase Auth
@erinpagemd
erinpagemd / RailsConf2016.md
Last active January 5, 2016 15:58
Job Hunting Talk Proposal

###Bio I am a native Texan, US Army Veteran, and mom to two brilliant teenage boys. I found a love of programming while working as a technology recruiter in Nashville. I decided to turn my hobby into my new career and attended Nashville Software School where I learned full-stack development with Ruby, Rails, Javascript, and Angular.

I have helped organize user groups like Code for Nashville, Nashville MongoDB, and currently Nash.rb. I assist in organizing conferences like Nodevember and BarCamp.

###Abstract Software Developers are a highly sought after group. But the jobs we are contacted about are rarely the ones we want. When it is time to take the next step in your career, are you going to know how to do it? In this talk, I discuss the modern job ecosystem and provide tips and techniques for job hunting in a rich market.

###Details

@lightningdb
lightningdb / goodreads-bookmarklet.js
Last active November 22, 2023 17:36
Add to Goodreads from Amazon.com book page bookmarklet
javascript: var asin_elements, asin;asin_elements = document.getElementsByName('ASIN'); if (asin_elements.length == 0) { asin_elements = document.getElementsByName('ASIN.0'); };if (asin_elements.length == 0) { alert('Sorry, this doesn\'t appear to be an Amazon book page.'); }else { asin = asin_elements[0].value; if (asin.match(/\D/) === null) { var x = window.open('http://www.goodreads.com/review/isbn/'+ asin, 'add_review'); } else { var x = window.open('https://www.goodreads.com/search?q='+ asin); } x.focus();}
@simenbrekken
simenbrekken / README.md
Last active January 7, 2017 13:44
Firebase NPM doesn't expose the token generator dependency

There are some ways to fix this:

  1. Remove dependency and let users install it manually as needed, the token generator isn't really a hard dependency of Firebase anyway
  2. Expose the dependency from the firebase module:
    var Firebase = require('firebase')
        FirebaseTokenGenerator = Firebase.TokenGenerator
@omnicolor
omnicolor / svn-lint.php
Last active August 4, 2021 19:57
Pre-commit SVN hook that runs lint
#!/usr/local/bin/php
<?php
/**
* Pre-commit Subversion script.
*
* @author Omni Adams <omni@digitaldarkness.com>
*/
/**