Skip to content

Instantly share code, notes, and snippets.

View Vonholt's full-sized avatar

Von holt Vonholt

View GitHub Profile
anonymous
anonymous / O2minipop.ino
Created March 17, 2016 21:24
// O2 Minipops rhythm box (c) DSP Synthesizers 2016
// Free for non commercial use
// http://janostman.wordpress.com
#include <avr/interrupt.h>
#include <avr/io.h>
#include <avr/pgmspace.h>
@judismith
judismith / FM Applescript Ping
Created August 11, 2012 04:22
Test for internet connection within Filemaker
try
set thePing to do shell script "/sbin/ping -o -c 5 www.google.com"
on error
set thePing to "error"
end try
tell application "FileMaker Pro Advanced"
if thePing is not "error" then
set cell "g_internet" to "true"
else