Skip to content

Instantly share code, notes, and snippets.

@zonque
zonque / mcasttest.c
Last active November 13, 2021 09:03
Simple client/server multicast test
/*
* Compile:
*
* gcc mcasttest.c -o server -Wall
* ln -s server client
*
* Invoke:
*
* ./client
* ./server
@zonque
zonque / dccptest.c
Created October 5, 2015 14:02
Simple DCCP client/server test
/*
* Compile:
*
* gcc dccptest.c -o server -Wall
* ln -s server client
*
* Invoke:
*
* ./client
* ./server
#!/usr/bin/ruby
require 'json'
require 'sinatra'
require 'awesome_print'
post '/github_webhook' do
request.body.rewind
content = request.body.read
#!/usr/bin/python
import serial
import time
ser = serial.Serial(
port = '/dev/ttyACM0',\
baudrate = 9600,\
parity = serial.PARITY_NONE,\
stopbits = serial.STOPBITS_ONE,\
#!/usr/bin/ruby
#
# Copyright 2013 Daniel Mack
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
#!/usr/bin/env ruby
require 'json'
require 'date'
def to_time(seconds)
minutes = seconds / 60
sprintf("%d:%02d", minutes / 60, minutes % 60)
end
@zonque
zonque / dmx-udp.c
Last active September 13, 2022 16:56
/*
* Simple proxy between USB2DMX adapter cables and UDP senders
*
* Compile with:
*
* gcc -o dmx-udp dmx-udp.c $(pkg-config --cflags --libs libftdi1) -Wall
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
#!/usr/bin/python
# Find patterns in a text an remove then, along with everything that follows in
# curly braces ({}). The matched pattern may as well contain nested curly brances.
# Patterns may spread across multiple lines.
import sys
import fileinput
def strip_first(s, pattern, count):
#!/usr/bin/ruby
#
# Reads lines from STDIN such as
#
# 00000001 01234578
#
# and assumes that the first column is a register offset and the 2nd is a value.
#
# Will then output the all registers ever accessed with the value they were set to last.
@zonque
zonque / localaddr.go
Created March 20, 2019 08:20
Get local IP that a given host can reach the local machine on
package main
import (
"fmt"
"log"
"net"
)
func localAddrForHost(host string) (string, error) {
conn, err := net.Dial("udp", host + ":12345")