- Bed maintenance
- Wipe clean after almost everything -- including touching
- Use adhesive when the print will take longer than ~30min
- Symptoms: spaghetti, bunching
- Extruder maintenance
- Keep nozzle clean
- Don't wipe with paper towel
- Keep nozzle clean
- Pull off debris with pliers
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
var i = 16; | |
var sleep = 0; | |
while (i-- > 0) { | |
var iHex = i.toString(16); | |
var ii = 16; | |
while (ii-- > 0) { | |
(function() { | |
var iiHex = ii.toString(16); | |
var fullHex = iHex + iiHex + iHex + iiHex + iHex + iiHex; |
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
(function(doc, undefined) { | |
var soundEffectStable = [ | |
new Audio("/media/sounds/comical.wav"), | |
new Audio("/media/sounds/dirp.wav"), | |
new Audio("/media/sounds/whip-and-bonk.wav"), | |
]; | |
for (var i = 0; i < 4; i++) { | |
soundEffectStable = soundEffectStable.concat(soundEffectStable); | |
} |
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/bash | |
{ | |
date_slug=$(date "+%y%m%d") | |
image_filename="$PWD/images/$date_slug.jpg" | |
cache_page_filename="$PWD/cache/ap$date_slug.html" | |
function download_page() { | |
if [ ! -f $cache_page_filename ]; then | |
curl -# -L http://apod.nasa.gov/apod/ap$date_slug.html \ |
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
// <p>Before</p> | |
// <p class="separator"> | |
// Or | |
// </p> | |
// <p>Before</p> | |
.separator { | |
text-align: center; | |
position: relative; |
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
.square(@size) { | |
display: block; | |
height: @size; | |
width: @size; | |
line-height: @size; | |
text-align: center; | |
} | |
@desired-total-width: 100px; |
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
# You'll need ImageMagick, bub. | |
for filename in *.jpg | |
do | |
start='Description: ' | |
name=$(identify -verbose "$filename" \ | |
| grep -oE "$start.*" \ | |
| cut -c ${#start}- \ | |
| sed -e 's/^[ \t]*//') | |
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
{% macro progress_nav_link(step_name, text) %} | |
<a href="{{ step_name }}" ng-class="{ | |
'not-completed-or-current': !completedOrCurrent('{{ step_name }}') | |
}"> | |
{{ text }} | |
</a> | |
{% endmacro %} | |
<div class="progress-nav"> | |
{{ _self.progress_nav_link('services', 'Services')}} |
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
.custom-recolumn(@when-default, @when-less-than-total-width, @first-column: false) { | |
.dynamic-column(@when-default, @first-column); | |
@media @less-than-total-width { | |
.dynamic-column(@when-less-than-total-width, @first-column); | |
} | |
@media @mobile { | |
.full-width-column(); | |
} |