Skip to content

Instantly share code, notes, and snippets.

View acreeger's full-sized avatar

Adam Creeger acreeger

  • Engineering Manager, Facebook
  • New York, NY
View GitHub Profile
@acreeger
acreeger / TrieNode.groovy
Created May 8, 2012 07:30
Simple TrieNode implementation in groovy
public class TrieNode {
boolean value = false
def children = [:]
public void build(words) {
if (words in String) words = [words]
def startTime = System.currentTimeMillis();
for (String word : words) {
word = word.toLowerCase()
@acreeger
acreeger / gist:5367689
Created April 11, 2013 22:23
Code from parse.com to give developers a little hello when they open the console.
<script type="text/javascript">
if (typeof console == "object") {
if (Util.is_chrome) {
console.log("%cHey! Like what you see and enjoy looking under the hood? That's cool. We love curious people. You should join us and help us build great stuff. https://www.parse.com/jobs", "color: #0677c8; font-size: 18px; font-family: 'Helvetica-Neue', Helvetica, Arial, sans-serif;");
} else {
console.log("Hey! Like what you see and enjoy looking under the hood? That's cool. We love curious people. You should join us and help us build great stuff. https://www.parse.com/jobs");
}
}
</script>
@acreeger
acreeger / gist:7556067
Created November 20, 2013 01:36
counting connections and origins
netstat -an|grep 10.176.2.157:27017|awk '{print $5}'|awk -F: '{print $1}'|sort -n -t. -k1,1 -k2,2 -k3,3 -k4,4|uniq -c|sort -n
/**
* @license Angulartics v0.17.0
* (c) 2013 Luis Farzati http://luisfarzati.github.io/angulartics
* License: MIT
*/
(function(angular) {
'use strict';
/**
* @ngdoc overview