- node.js
- Installation paths: use one of these techniques to install node and npm without having to sudo.
- Node.js HOWTO: Install Node+NPM as user (not root) under Unix OSes
- Felix's Node.js Guide
- Creating a REST API using Node.js, Express, and MongoDB
- Node Cellar Sample Application with Backbone.js, Twitter Bootstrap, Node.js, Express, and MongoDB
- JavaScript Event Loop
- Node.js for PHP programmers
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
/* | |
Different performance for https://github.com/ceejbot/xx-bloom/blob/master/lib/bloom.js | |
Output (2.4 GHz Intel Core i7): | |
setbit cost: 24304ms | |
fastSetbit cost: 1ms | |
*/ | |
var assert = require('assert') | |
function setbit(bit){ |
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
# Usage: | |
1. Confirm you install node at /usr/bin folder | |
2. Confirm you download shooter to /usr/bin folder | |
3. Open Automator application | |
4. In this application create a new service | |
5. Then you need to select movie files for "Service receives selected" and choose Finder.app for the second option. Then drag the Run AppleScript into the window on the right. | |
6. Pass Shoot Subtitles.workflow code into the AppleScript window | |
7. Save to "Shoot Subtitles" as it's name | |
8. Selected movie file in the Finder, you can right-click, go to Services, and select "Shoot Subtitles". | |
9. Enjoy it. |
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
function prompt_char { | |
val='❯' | |
if [ $UID -eq 0 ]; then echo "#"; else echo "\033[38;5;265m${val}\033[0m\033[38;5;267m${val}\033[0m\033[38;5;80m${val}"; fi | |
} | |
function time_reminder { | |
knock_time=18 | |
sleep_time=22 | |
cond=$(date +"%H") | |
if [ $cond -ge $sleep_time ]; then |
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
#!/bin/bash | |
for i in `netstat -an | grep -i ':80 '| grep 'EST' | awk '{print $5}' | cut -d : -f 1 | sort | uniq -c | awk '{if($1 > 5) {print $2}}'` | |
do | |
echo $i >> /tmp/blockip | |
/sbin/iptables -A INPUT -p tcp -j DROP -s $i | |
done |
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
spawn = require('child_process').spawn | |
tls = require 'tls' | |
### | |
Google Beijing: | |
203.208.32.0 – 203.208.63.255 | |
### | |
ips = [] | |
for ip3 in [32...64] |
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
var thunkify = require('thunkify') | |
module.exports = function(model){ | |
var methods = ['save', | |
'create', | |
'find', | |
'findById', | |
'remove', | |
'aggregate', | |
'count', |
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
#!/usr/bin/env coffee | |
http = require 'http' | |
url = require 'url' | |
fs = require 'fs' | |
{spawn} = require 'child_process' | |
JS = """ | |
//For qzone: | |
var doc, imgs, img, i, val, s, len; |
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
bsearch = (key, values, comp)-> | |
max = values.length | |
min = 0 | |
comp = comp or (a, b)-> a - b | |
while true | |
if min > max | |
return -1 | |
mid = max + min >> 1 | |
cmp = comp key, values[mid] | |
if cmp is 0 |
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
{ | |
"port":9001, | |
"config":{ | |
"repo": "mashihua/Hphoto" | |
}, | |
"branchs":["master"] | |
} |