~ % ifconfig
docker0 Link encap:Ethernet HWaddr 1a:53:fc:1b:12:b5
inet adr:172.17.42.1 Bcast:0.0.0.0 Masque:255.255.0.0
adr inet6: fe80::1853:fcff:fe1b:12b5/64 Scope:Lien
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Packets reçus:0 erreurs:0 :0 overruns:0 frame:0
TX packets:93 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 lg file transmission: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
module.exports = function(grunt) { | |
// grunt conf | |
grunt.initConfig({ | |
// compile foundation style | |
compass: { | |
foundation: { | |
options: { | |
sassDir: 'components/foundation/scss', | |
cssDir: 'src/styles/foundation/css' |
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
Jun 04, 2013 3:24:55 PM com.cloudbees.jenkins.GitHubWebHook processGitHubPayload | |
INFO: Poked test | |
Jun 04, 2013 3:24:55 PM com.cloudbees.jenkins.GitHubWebHook processGitHubPayload | |
FINE: Considering to poke test | |
Jun 04, 2013 3:24:55 PM com.cloudbees.jenkins.GitHubWebHook processGitHubPayload | |
FINE: Skipped breizhcamp-js because it doesn't have a matching repository. | |
Jun 04, 2013 3:24:55 PM com.cloudbees.jenkins.GitHubWebHook processGitHubPayload | |
FINE: Considering to poke breizhcamp-js | |
Jun 04, 2013 3:24:55 PM com.cloudbees.jenkins.GitHubWebHook processGitHubPayload | |
FINE: Full details of the POST was {"ref":"refs/heads/master","after":"1783cd244934c14547684cdea5b86aaaf4462635","before":"9159e1632dd32304f69313948f0a12187453afe3","created":false,"deleted":false,"forced":false,"compare":"https://github.com/xseignard/breizhcamp-js/compare/9159e1632dd3...1783cd244934","commits":[{"id":"0c2d750068be0640d817369c2f029ec1c84e7376","distinct":true,"message":"express server now renders client pages","timestamp":"2013-06-04T0 |
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 gpio = require('gpio'), | |
pin4 = gpio.export(4, { | |
direction: 'out' | |
}), | |
pin17 = gpio.export(17, { | |
direction: 'out' | |
}); | |
pin4.set(1, function() { | |
pin17.set(0, function() { |
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
{ | |
"hands":[ | |
{ | |
"direction":[ | |
-0.255273, | |
0.810761, | |
-0.526785 | |
], | |
"id":6, | |
"palmNormal":[ |
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 util = require('util'), | |
proc = require('child_process'), | |
EventEmitter = require('events').EventEmitter; | |
var Test = function() { | |
var _self = this; | |
proc.exec('ls -l', function(error, stdout, stderr) { | |
_self.emit('test'); | |
}); | |
}; |
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
void setup() { | |
Serial.begin(9600); | |
pinMode(13, OUTPUT); | |
} | |
void loop() { | |
String content= ""; | |
while(Serial.available()) { | |
content.concat((char)Serial.read()); | |
delay (10); | |
} |
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 midi = require('midi'), | |
midiOut = new midi.output(); | |
try { | |
midiOut.openPort(0); | |
} catch(error) { | |
midiOut.openVirtualPort(''); | |
} | |
var loop = function() { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.