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
# *** Documentation Links | |
Documentation list: https://communities.intel.com/community/makers/edison/documentation/content | |
Edison Guide: https://communities.intel.com/docs/DOC-23158 | |
Mini Breakout Guide: https://communities.intel.com/docs/DOC-23252 | |
Mini Breakout Schematic: https://communities.intel.com/docs/DOC-23323 | |
Mini Breakout BoM: https://communities.intel.com/docs/DOC-23322 | |
Arduino Breakout Guide: https://communities.intel.com/docs/DOC-23161 | |
Arduino Breakout Schematic: https://communities.intel.com/docs/DOC-23309 | |
Arduino Breakout BoM: https://communities.intel.com/docs/DOC-23308 | |
BSP Guide (yocto build environment): https://communities.intel.com/docs/DOC-23159 |
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
function Robot(robot) { | |
this.dd = false; | |
} | |
// well, we need to do something... | |
// whenever our robot is idle, this method gets called. | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; |
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
function Robot(robot) { | |
this.dd = false; | |
} | |
// well, we need to do something... | |
// whenever our robot is idle, this method gets called. | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; |
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
require 'rubygems' | |
require 'nokogiri' | |
require 'fileutils' | |
require 'date' | |
require 'uri' | |
# usage: ruby import.rb my-blog.xml | |
# my-blog.xml is a file from Settings -> Basic -> Export in blogger. | |
data = File.read ARGV[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
if [ "\$(type -t __git_ps1)" ]; then | |
PS1="\$(__git_ps1 '(%s) ')$PS1" | |
fi |