- Jumping Jacks
- Push ups
- Mountain Climbers
- Squats
- High Knees
- Reverse Plank
- Pendulum Lunge
- Burpees
- Plank
- Crunch
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
Boards | |
Arduino Mega R3 - http://www.adafruit.com/products/191 | |
Arduino Yún - http://www.adafruit.com/products/1498 | |
Arduino Micro - http://www.adafruit.com/products/1086 | |
Arduino Due - http://www.adafruit.com/products/1076 | |
Arduino Menta - http://www.adafruit.com/products/795 | |
Sensors |
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
^CSIGINT received | |
/usr/local/foreman/lib/foreman/engine.rb:226:in `synchronize': can't be called from trap context (ThreadError) | |
from /usr/local/foreman/lib/foreman/engine.rb:226:in `output_with_mutex' | |
from /usr/local/foreman/lib/foreman/engine.rb:232:in `system' | |
from /usr/local/foreman/lib/foreman/engine.rb:304:in `terminate_gracefully' | |
from /usr/local/foreman/lib/foreman/engine.rb:41:in `block in start' | |
from /usr/local/foreman/lib/foreman/engine.rb:289:in `call' | |
from /usr/local/foreman/lib/foreman/engine.rb:289:in `wait2' | |
from /usr/local/foreman/lib/foreman/engine.rb:289:in `watch_for_termination' | |
from /usr/local/foreman/lib/foreman/engine.rb:48:in `start' |
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
<!DOCTYPE HTML> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Jeremy Boggs</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
</body> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Bulletproof Accessible Icon Test</title> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css"> | |
<style type="text/css" media="screen"> | |
.audible { | |
clip: rect(0 0 0 0); | |
overflow: hidden; | |
position: absolute; |
- How to turn it on and off
- How to get a model onto the printer: Makerbot
- How to get a model onto the printer: ReplicatorG
- How to unload and load the filament before/after a print
- Make sure to check the kind of filament you're using (PLA, ABS) and confirm settings when exporting for a print. (You don't want to use ABS settings with PLA, and vice versa.)
- How to unload and load the filament during a print
- How to watch the filament to make sure it isn’t getting tangled on the spool.
- How to level the build platform
- How to remove/add painters tape on build platform
- How to remove build platform
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
@mixin ie-filter-gradient($start-color, $end-color, $orientation: vertical) { | |
@include has-layout; | |
$gradient-type: if($orientation == vertical, 0, 1); | |
@each $property in -ms-filter, filter { | |
#{$property}: progid:DXImageTransform.Microsoft.gradient(gradientType=#{$gradient-type}, startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}'); | |
} | |
} |