Skip to content

Instantly share code, notes, and snippets.

@eva01
eva01 / clock.scad
Last active August 29, 2015 14:27 — forked from m-ou-se/clock.scad
3D model for my whiteboard clock
$fs=1;
$fa=1;
servo_l = 24;
servo_w = 13;
servo_h = 21;
bolt_hole_diameter = 4.5;
servo_axis_diameter = 4;
@eva01
eva01 / SerialBridge.ino
Created February 1, 2017 13:36 — forked from Justasic/SerialBridge.ino
An arduino program that will bridge a UART and USB serial interface using an Arduino and software serial.
/*
This is a basic Arduino program to read the UART serial interface on an old
SpeedStream 5360 DSL modem I have. The code sets up a UART software serial
interface using the Arduino's 2 and 3 pins as RX and TX.
This program bridges the serial interfaces between USB and the UART software
serial. This will allow communication between the 3 devices.
This example code is in the public domain.
@eva01
eva01 / MP3_Shield_RealtimeMIDI.ino
Created March 5, 2017 17:19 — forked from microtherion/MP3_Shield_RealtimeMIDI.ino
Playing Real Time MIDI through the Sparkfun MP3 Player Shield
/*
*
* File: MP3_Shield_RealtimeMIDI.ino
* Author: Matthias Neeracher
*
* This code is in the public domain, with the exception of the contents of sVS1053b_Realtime_MIDI_Plugin.
*
* The code is based on Nathan Seidle's Sparkfun Electronics example code for the Sparkfun
* MP3 Player and Music Instrument shields and and VS1053 breakout board.
*
@eva01
eva01 / osx_install.sh
Created April 28, 2019 00:15 — forked from t-io/osx_install.sh
Install most of my Apps with homebrew & cask
#!/bin/sh
echo Install all AppStore Apps at first!
# no solution to automate AppStore installs
read -p "Press any key to continue... " -n1 -s
echo '\n'
echo Install and Set San Francisco as System Font
ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)"
echo Install Homebrew, Postgres, wget and cask
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"