Skip to content

Instantly share code, notes, and snippets.

View yoursunny's full-sized avatar
📟

Junxiao Shi yoursunny

📟
View GitHub Profile
@yoursunny
yoursunny / ndnd_stats_robotstxt.patch
Created August 8, 2013 17:25
ndnd robots.txt patch
@@ -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: /";
@yoursunny
yoursunny / ndnx-ccnx-shim.sh
Last active December 20, 2015 19:58
CCNx shim for NDNx
#!/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
@yoursunny
yoursunny / oberon0.lang
Last active December 12, 2015 02:28
Oberon0 syntax highlighter for gtksourceview-3.0 Place this file in ~/.local/share/gtksourceview-3.0/language-specs/ Limitation: does not support nested comments.
<?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"/>
@yoursunny
yoursunny / ndn-install.sh
Last active December 10, 2015 23:19
NDN platform easy installer
#!/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
@yoursunny
yoursunny / repo2email.sh
Last active December 10, 2015 02:58
when a repo has a new commit, send email with code package
#!/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
@yoursunny
yoursunny / ndnws.js
Created October 4, 2012 18:21
CCNx WebSocket proxy
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){
@yoursunny
yoursunny / ccnd_stats.patch
Created October 3, 2012 23:10
ccnd robots.txt patch
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];