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
import mmap | |
import sys | |
import struct | |
def main(in_file, out_file): | |
with open(in_file, "r+b") as f: | |
map = mmap.mmap(f.fileno(), 0) | |
data = map.readline() | |
# Assuming first char is \x00 and | |
# data is in blocks of 3. |
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 cradle = require('cradle'); | |
var database = 'app'; | |
cradle.setup({ | |
host: '127.0.0.1', | |
port: 5984, | |
auth: { username: "YOUR_USERNAME", password: "YOUR_PASSWORD" } | |
}); |
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 sys = require('sys'); | |
var fs = require('fs'); | |
var restler = require('restler'); | |
exports.generate_pdf = function(username, api_key, src_data, res) { | |
console.log("starting to generate pdf"); | |
console.log(username); | |
console.log(api_key); | |
console.log(src_data); |
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/sh | |
## Save cookies to the "cookies.txt" file | |
## Assumes the web service expects username | |
## and password in a JSON object, submitted via POST. | |
curl --cookie-jar cookies.txt -H "Content-Type: application/json" -X POST http://localhost:3000/user/login -d "{\"username\": \"YOURUSERNAME\", \"password\": \"YOURPASSWORD\"}" | |
## Now to use the authenticated session: | |
## (Assuming your web service speaks JSON) | |
curl --cookie cookies.txt -X GET http://localhost:3000/user/SOMEID |
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
TypeError: Object #<Object> has no method 'on' | |
at Worker.start (./node_modules/cluster/lib/worker.js:83:17) | |
at Socket.<anonymous> (./node_modules/cluster/lib/master.js:258:16) | |
at Socket.emit (events.js:61:17) | |
at Socket._onConnect (net.js:587:12) | |
at IOWatcher.onWritable [as callback] (net.js:186:12) | |
Error: Socket is not writable | |
at Socket._writeOut (net.js:392:11) | |
at Socket.write (net.js:378:17) |
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
[Thu, 19 May 2011 18:18:04 GMT] INFO spawned worker 0 | |
[Thu, 19 May 2011 18:18:04 GMT] ERROR worker 3 died | |
[Thu, 19 May 2011 18:18:04 GMT] INFO spawned worker 3 | |
[Thu, 19 May 2011 18:18:04 GMT] ERROR worker 1 died | |
[Thu, 19 May 2011 18:18:04 GMT] INFO spawned worker 1 | |
[Thu, 19 May 2011 18:26:00 GMT] INFO master started | |
[Thu, 19 May 2011 18:26:00 GMT] INFO spawned worker 0 | |
[Thu, 19 May 2011 18:26:00 GMT] INFO spawned worker 1 | |
[Thu, 19 May 2011 18:26:00 GMT] INFO spawned worker 2 | |
[Thu, 19 May 2011 18:26:00 GMT] INFO spawned worker 3 |
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
Cluster detected over 20 worker deaths in the first | |
20 seconds of life, there is most likely | |
a serious issue with your server. | |
aborting. | |
info [90m- master started[0m | |
info [90m- worker 0 spawned[0m | |
info [90m- worker 1 spawned[0m |
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 cluster = require('cluster'); | |
cluster('./app') | |
.set('socket path', '/tmp') | |
.use(cluster.logger('logs')) | |
.use(cluster.stats()) | |
.use(cluster.pidfiles('pids')) | |
.use(cluster.cli()) | |
.use(cluster.repl(8888)) | |
.listen(3000); |
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
/* F - Red Theme - Extended from: https://gist.github.com/909284 | |
-----------------------------------------------------------------------------------------------------------*/ | |
.ui-bar-f { | |
border: 1px solid #A60000; | |
background: #FF0000; | |
color: #ffffff; | |
font-weight: bold; | |
text-shadow: 0 -1px 1px #BF3030; | |
background-image: -webkit-gradient(linear, left top, left bottom, from( #FF7373 /*{a-bar-background-start}*/), to( #FF4040 /*{a-bar-background-end}*/)); /* Saf4+, Chrome */ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="dns-prefetch" href="//code.jquery.com"> | |
<!-- Ensure we set a viewport so everything scales appropriately on mobile devices. --> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
OlderNewer