- Designed to break cheapest parts first
- Arms break first on impact, only $5 for a set of 4.
- Motors cost $3.50 each and are unlikely to break.
- Replacement batteries are $5.50
- No soldering necessary
This file contains hidden or 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
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: dockerico | |
# Required-Start: docker | |
# Required-Stop: docker | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: A badging service for the docker registry. | |
# Description: |
Debian Wheezy and other systems using the SysV style init with extend LSB Headers as defined in Chapter 20 of the LSB 3.1 specification
This file contains hidden or 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
#!/bin/sh | |
set -e | |
### BEGIN INIT INFO | |
# Provides: {{SERVICE_NAME}} | |
# Required-Start: $all | |
# Required-Stop: $all | |
# Should-Start: | |
# Should-Stop: | |
# Default-Start: 2 3 4 5 |
This file contains hidden or 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
#cloud-config | |
hostname: coreos1 | |
users: | |
- name: wblankenship | |
passwd: $6$rounds=4096$/iBafoYauGnV$nO3WK2UKET9eKOXtkW73AkAk4oUL98AVjFUQl2jT1nPAy2m/J6ZJUGFnsMC8OCatl.QGRRPW9qbAmQx7MqVzU0 | |
groups: | |
- sudo | |
- docker |
This file contains hidden or 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
# Install Node.js | |
curl -sL https://deb.nodesource.com/setup | sudo bash - | |
apt-get install -y nodejs gcc g++ make | |
# Install Docker | |
echo "deb http://http.debian.net/debian wheezy-backports main" >> /etc/apt/sources.list | |
apt-get -y update | |
apt-get install -y -t wheezy-backports linux-image-amd64 | |
curl -sSL https://get.docker.com/ | sh |
node/index.js
var async = require('async')
async.each(["hello","world"],
function(v) {
console.log(v)
},
function(e) {
This file contains hidden or 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
setInterval(function() { | |
var connectBtns = document.getElementsByClassName('bt-request-buffed'); | |
for(var i =0; i < connectBtns.length; i++) { | |
connectBtns[i].click() | |
} | |
}, 500); |