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
; disable beeps | |
(setq visible-bell t) | |
; better switch buffer mode. just type and go | |
; (crtl-r moves through the buffers) | |
(iswitchb-mode 1) | |
; highlight matching parens | |
(show-paren-mode t) |
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
<html> | |
<head> | |
<script language=javascript type='text/javascript'> | |
function toggle_visiblity(id) { | |
var e = document.getElementById(id); | |
if (e.style.display == 'block') | |
e.style.display = 'none'; | |
else | |
e.style.display = 'block'; | |
} |
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
<html> | |
<head> | |
<style> | |
code { font-family: Courier; } | |
.new code { font-family: "Courier New";} | |
</style> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
</head> | |
<body> | |
<p> Courier Font:</p> |
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
#!/usr/bin/python | |
import sys | |
import random | |
text = sys.stdin.read() | |
new_text = "" | |
for char in text: |
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
#!/usr/bin/python | |
import sys | |
import random | |
text = sys.stdin.read() | |
text = text.split() | |
new_text = "" |
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
accessControl: | |
enabled: false | |
api: | |
key: <apikey> | |
appearance: | |
color: black | |
devel: | |
cache: | |
enabled: false | |
preemptive: false |
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
(==Configuration Settings==) | |
G21 ;set metric mode - use mm as units | |
M100 ({{ysv:1000}}) ;slow y-axis homing velocity so it doesn't slam | |
M100 ({{4pl:0.6}}) ;this is setting the motor power level on the Extruder - motor 4 - to 60 percent | |
;skipping all other configuration. The stock settings should be correct | |
(==Home Printer==) | |
M100 ({{_leds:3}}) ;turn LED on, blue color | |
G92.1 X0 Y0 Z0 A0 B0 ;reset origin offsets on all axes -clean slate | |
G28.2 X0 Y0 Z0 ;home the x, y and z axes. | |
(==Level Bed==) |
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
int redPin = 5; | |
int greenPin = 6; | |
int bluePin = 3; | |
int ledMax = 40; | |
int ledMin = 5; | |
//int brightness = ledMin; | |
//int fadeAmount = 1; |
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
int redPin = 5; | |
int greenPin = 6; | |
int bluePin = 3; | |
int ledMax = 10; | |
int ledMin = 2; | |
int redVal = ledMin; | |
int greenVal = ledMin; |