Skip to content

Instantly share code, notes, and snippets.

View jmwright's full-sized avatar

Jeremy Wright jmwright

View GitHub Profile
@jmwright
jmwright / sliderule_local_demo_setup.md
Last active November 22, 2018 11:39
Using the git daemon to set up a demo on a local system

Intro

This assumes a Linux system. Adapt as needed for Windows.

Prerequisites

Note that most of this may be superceeded if a repo is created holding all the proper demo directory structure.

  1. Create a blank demo directory to be the root directory and cd into it: mkdir demo && cd demo
  2. Initialize the directory as a blank git repository: git init
  3. Follow steps 1 and 2 for the component you want to create.
  4. Make sure to cd back into the root demo directory before executing the next step.
  5. Make sure to have git installed. Then run the following command.
@jmwright
jmwright / kalliope_on_intel_edison.md
Last active April 18, 2017 03:00
How to Get the Kalliope Assistant Running on an Intel Edison

Kalliope is a modular always-on voice controlled personal assistant designed for home automation. You can find the Kalliope project here.

Get Kalliope Running

  1. Flash Ubilinux onto the Edison as described here
  2. (OPTIONAL) Follow the instructions in the "Add Some Security" section of the Ubilinux doc.
  3. Follow the instructions in the "The Better Way" subsection of the "Enable WiFi" section of the Ubilinux doc.
  4. Install python-setuptools with sudo apt-get install python-setuptools.
  5. Install pip with sudo apt-get install python-pip.
  6. Upgrade pip with sudo pip install --upgrade pip.
  7. Upgrade setuptools with sudo pip install --upgrade setuptools.