Skip to content

Instantly share code, notes, and snippets.

View virgilvox's full-sized avatar

Moheeb Zara virgilvox

View GitHub Profile
@w4ilun
w4ilun / adc.js
Created September 30, 2016 20:47
var mraa = require('mraa');
var version = mraa.getVersion();
if (version >= 'v0.6.1') {
console.log('mraa version (' + version + ') ok');
}
else {
console.log('mraa version(' + version + ') is old - this code may not work')
}
@gotascii
gotascii / Cakefile
Created September 14, 2011 13:35
Node in Max/MSP
# Compile the coffee in bare joined mode.
{exec, spawn} = require 'child_process'
fs = require 'fs'
util = require 'util'
print = (data) ->
console.log data.trimRight()
task 'build', 'Compile Coffeescript to Javascript', ->