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
@@ -81,6 +81,13 @@ | |
"HTTP/1.1 405 Method Not Allowed" CRLF | |
"Connection: close" CRLF CRLF; | |
+static const char *respRobots = | |
+ "HTTP/1.1 200 OK" CRLF | |
+ "Content-Type: text/plain" CRLF | |
+ "Content-Length: 26" CRLF CRLF | |
+ "User-Agent: *" CRLF | |
+ "Disallow: /"; |
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 | |
# CCNx shim for NDNx | |
# This script creates shim headers so that apps written for CCNx can compile with NDNx. | |
# NDNx is available at https://github.com/named-data/ndnx | |
# | |
# Usage: sudo ./ndnx-ccnx-shim.sh | |
# updated: 2013-09-02 | |
INCLUDE_DIR=/usr/local/include |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<language id="oberon0" _name="Oberon0" version="2.0" _section="Sources"> | |
<metadata> | |
<property name="globs">*.ob0;*.ob</property> | |
</metadata> | |
<styles> | |
<style id="comment" _name="Comment" map-to="def:comment"/> | |
<style id="error" _name="Error" map-to="def:error"/> | |
<style id="string" _name="String" map-to="def:string"/> |
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 | |
# NDN platform easy installer for Ubuntu 12.04 | |
# programs included: | |
# NDNx (with ndnd /robots.txt patch) | |
# CCNx shim for NDNx | |
# NDNLP | |
# ndnping | |
# PyNDN | |
# updated: 2013-09-02 |
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 | |
# USAGE | |
# 1. clone / check out a repo to reponame/ | |
# 2. execute once: echo 0 > reponame/repo2email.ver | |
# 3. if needed, create reponame/repo2email.prepare.sh script which will be called before packaging | |
# 4. set up crontab to execute: ./repo2email.sh 'reponame' 'svn' '[email protected];[email protected]' | |
reponame=$1 | |
repotype=$2 |
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 WebSocketServer = require('ws').Server; | |
var net = require('net'); | |
var wss = new WebSocketServer({port:9696,host:'0.0.0.0'}); | |
wss.on('connection', function(ws) { | |
console.log('wsconn'); | |
var sock_ready = false; | |
var send_queue = []; | |
var sock = net.createConnection(9695); | |
ws.on('message',function(message){ |
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
81a82,88 | |
> static const char *respRobots = | |
> "HTTP/1.1 200 OK" CRLF | |
> "Content-Type: text/plain" CRLF | |
> "Content-Length: 26" CRLF CRLF | |
> "User-Agent: *" CRLF | |
> "Disallow: /"; | |
> | |
99c106 | |
< char rbuf[16]; |
NewerOlder