Skip to content

Instantly share code, notes, and snippets.

View artistio's full-sized avatar

Benny Chandra artistio

View GitHub Profile
@artistio
artistio / Vagrant.chef.rb
Last active September 29, 2015 03:06 — forked from hgilani/Vagrant.chef.rb
Vagrant VM running with latest version of chef and ruby
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty32"
config.omnibus.chef_version = :latest
@artistio
artistio / blinky.ino
Last active September 5, 2015 11:03 — forked from ericevenchick/blinky.ino
Blinking LED sketch for Arduino
/*
* copyleft 2005 DojoDave <http://www.0j0.org>
* http://arduino.berlios.de
*
* based on an orginal by H. Barragan for the Wiring i/o board
*/
int ledPin = 13; // LED connected to digital pin 13
void setup()