Skip to content

Instantly share code, notes, and snippets.

View tph5595's full-sized avatar
๐Ÿ”

Taylor Henderson tph5595

๐Ÿ”
View GitHub Profile
@tph5595
tph5595 / gist:0ef9cbd906f93ee493294b1db677150f
Last active February 8, 2021 20:23
Install Ardour ubuntu 20.04
# Change waf to use python3 and not python
# Install deps
sudo apt install libboost-all-dev libasound2-dev libpulse-dev glibmm-2.4-dev libsndfile-dev libcurl4-openssl-dev \
libarchive-dev liblo-dev libtag1-dev vamp-plugin-sdk librubberband-dev fftw3-dev libjack-dev libudev-dev libaubio-dev \
libcppunit-dev libusb-1.0-0-dev libcwiid-dev libwebsockets-dev libpangomm-1.4-dev liblrdf-dev libsamplerate-dev lv2-dev \
libserd-dev libsord-dev libsratom-dev liblilv-dev libgtkmm-2.4-dev libsoundtouch-dev libsuil-dev
@tph5595
tph5595 / sendRawEth.c
Created December 20, 2018 19:49 — forked from austinmarton/sendRawEth.c
Send a raw Ethernet frame in Linux
/*
* 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 3 of the License, or
* (at your option) any later version.
*/
#include <arpa/inet.h>
#include <linux/if_packet.h>
#include <stdio.h>
@tph5595
tph5595 / gostff
Created July 25, 2018 18:46
GO cool stuff
https://about.gitlab.com/2017/11/27/go-tools-and-gitlab-how-to-do-continuous-integration-like-a-boss/
@tph5595
tph5595 / script
Created January 11, 2018 19:59
Auto formatting for c
!#/bin/bash
find . -type d -execdir sh -c 'gindent *.c -kr -ci2 -cli2 -i2 -l80 -nut; rm *.c~' {} \;