Skip to content

Instantly share code, notes, and snippets.

View jbarrett's full-sized avatar
🤘
Be excellent to each other

John Barrett jbarrett

🤘
Be excellent to each other
View GitHub Profile
@jasonrudolph
jasonrudolph / about.md
Last active May 14, 2024 16:36
Programming Achievements: How to Level Up as a Developer
@und3f
und3f / midi2speaker.pl
Created May 3, 2012 11:29
MIDI interface to the internal speaker
#!/usr/bin/env perl
use strict;
use warnings;
use Audio::Beep;
use MIDI::ALSA qw(
SND_SEQ_EVENT_NOTEON
SND_SEQ_EVENT_NOTEOFF
SND_SEQ_EVENT_PORT_UNSUBSCRIBED);
@kmccarth
kmccarth / nginx.conf
Last active October 5, 2019 08:29
nginx at Streetwise Media. This bad boy handled 2M+ UVs on one VM
user www-data;
worker_processes 4; # number of cores on machine
error_log /var/log/nginx/error.log;
events {
worker_connections 1024;
}
http {
@ruario
ruario / latest-firefox.sh
Last active July 19, 2024 18:04
This script will find the latest Firefox binary package, download it and repackage it into Slackware format.
#!/bin/bash
# latest-firefox Version 1.6.3
# Contributer: drgibbon (thanks!)
# This script will find the latest Firefox binary package, download it
# and repackage it into Slackware format.
# I don't use Firefox for regular browsing but it is handy for
# comparative tests against Vivaldi. :P