Skip to content

Instantly share code, notes, and snippets.

View andytlr's full-sized avatar

Andy Taylor andytlr

View GitHub Profile
# Takes one URL per line on the clipboard.
# Opens each one in a new tab in the default browser.
touch temp.txt
pbpaste > temp.txt
echo "" >> temp.txt
cat temp.txt | while read a; do open $a; done
rm temp.txt
@andytlr
andytlr / proofer.ino
Created March 15, 2017 03:14
Bread Proofer Arduino Project
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
int ThermistorPin = 0;
int relayPin = 10;
int Vo;
float R1 = 10000;
float logR2, R2, T, Tc;