Skip to content

Instantly share code, notes, and snippets.

View d3cline's full-sized avatar
🎯
Focusing

John Spounias d3cline

🎯
Focusing
View GitHub Profile
@d3cline
d3cline / Blocktwine.txt
Created May 25, 2018 04:48
Blocktwine.txt
____ _ _
| _ \| | | |
| |_) | | ___ ___| | __
| _ <| |/ _ \ / __| |/ /
| |_) | | (_) | (__| <
|____/|_|\___/_\___|_|\_\
| | (_)
| |___ ___ _ __ ___
@d3cline
d3cline / crontab
Created September 28, 2017 20:44
Pi Webcam Youtube streamer with text from ioTank. (yet another weather station)
*/1 * * * * $HOME/weather.sh
* * * * * $HOME/watch.sh > $HOME/cron/watchdog.log 2>&1
@d3cline
d3cline / ReadSerialPort.cs
Created March 10, 2017 06:30 — forked from mkchandler/ReadSerialPort.cs
Some C# code to read a serial port. Using this as a starting point for an Arduino project.
using System;
using System.IO.Ports;
namespace SerialReader
{
class Program
{
static void Main(string[] args)
{
var reader = new ArduinoSerialReader("COM3");