post :create do
doc %(Get a summary of an individual Automation workflow’s settings and
content. The `trigger_settings` object returns information for the first email in
the workflow.
You can use Markdown in these doc strings.
* Foo
* Bar
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
Tuning: eBGDAE | |
capo 2nd fret. (all chords relative to capo) | |
Intro (played around an open A chord) | |
e|--------------------------| | |
B|--0-----------0-----------| | |
G|--------2-----------2-----| | |
D|-----2--2--------2--2-----| |
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 'rubyserial' | |
// s = Serial.new('/dev/cu.wchusbserial1410') | |
// s.write('0') | |
#include <Adafruit_NeoPixel.h> | |
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(60, 3, NEO_GRB + NEO_KHZ800); | |
void setup() { | |
Serial.begin(9600); |
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
``` | |
$ sudo apt install libjpeg-dev libexif-dev libtool autotools | |
$ git clone https://github.com/mattes/epeg.git | |
$ cd epeg | |
$ sh autogen.sh | |
$ make | |
$ sudo make install | |
$ ldconfig | |
``` |
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 'curses' | |
include Curses | |
init_screen | |
noecho | |
nodelay = true | |
$l = 0 |
Use mini.iso
to install Ubuntu.
Oddly, while my wifi card was detected and I was able to connect to my wireless network during the install, after I booted up for the first time I found that I didn't have a network connection.
Running iwconfig
reveals that my wireless adapter is wlp3s0
.
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
# Minimal Ubuntu 17.04 | |
Use `mini.iso` to install Ubuntu. | |
## Wifi | |
Oddly, while my wifi card was detected and I was able to connect to my wireless network during the install, after I booted up | |
for the first time I found that I didn't have a network connection. | |
Running `iwconfig` reveals that my wireless adapter is `wlp3s0`. |