- Source code of the http-backend.c.
- Test suite: http-backend and http-push
- Blog post of a similar exercice.
pi@raspberrypi ~ $ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.254 0.0.0.0 UG 0 0 0 wlan0
0.0.0.0 10.5.5.1 0.0.0.0 UG 2 0 0 eth0
10.5.5.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
#HOW-TO: Virtualize Raspian with Qemu
0.Workspace
mkdir -p ~/workspace/raspdev
cd ~/workspace/raspdev
1.Install Qemu
sudo update-alternatives --config java
This file contains hidden or 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
/** | |
* Module dependencies | |
*/ | |
var GA = require('googleanalytics'), | |
jwt = require('jwt-sign'), | |
request = require('superagent'), | |
fs = require('fs'), | |
privateKey = fs.readFileSync(process.env['GA_PATH_PRIVATE_KEY'] || __dirname + '/key/private.pem','utf8'); |
- Affiliate network name - ¶meter=value_of_the_click_reference_here_CLICKREF
- Advortis - &xref1=CLICKREF
- Affiliate Future - &tracking=CLICKREF
- Affiliate Window - &clickref=CLICKREF
- Affilinet - &subid=CLICKREF
- Aflite - &aref=CLICKREF
- Brand Conversions - &subid=CLICKREF
- Buyat - &LID=CLICKREF
- Carpet Right Affiliates - &link_ref=CLICKREF
- ClixGalore - &OID=CLICKREF
This file contains hidden or 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
># java -ea:org.apache.lucene -cp /var/lib/chef/solr/solr-jetty/work/Jetty_0_0_0_0_8983_solr.war__solr__k1kf17/webapp/WEB-INF/lib/lucene-core-2.9-dev.jar org.apache.lucene.index.CheckIndex -fix /var/cache/chef/solr/data/index/ |
This file contains hidden or 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
description "your description" | |
author "your name <[email protected]>" | |
# Environment variables | |
env APP_CONFIG=/home/web/app/config.json | |
env APP_USER=myapp | |
env APP_SCRIPT=/home/web/app/index.js | |
env NODE_ENV=production | |
env PID_FILE=/var/run/app.pid | |
env STDERR_LOG_FILE=/var/log/app/stderr.log |