This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @license Angulartics v0.17.0 | |
* (c) 2013 Luis Farzati http://luisfarzati.github.io/angulartics | |
* License: MIT | |
*/ | |
(function(angular) { | |
'use strict'; | |
/** | |
* @ngdoc overview |
OlderNewer