Skip to content

Instantly share code, notes, and snippets.

View rayhu's full-sized avatar
🎯
Focusing

Ray Hu rayhu

🎯
Focusing
  • Bay Area, CA, USA
  • 10:40 (UTC -07:00)
View GitHub Profile
@OndraZizka
OndraZizka / switchHeadphones.sh
Last active May 29, 2024 13:43
Bluetooth headset - switch between quality sound + no mic (A2DP) and crappy sound and mic (HSP/HFP)
#!/bin/bash
#### Restart Bluetooth
if [ "$1" == "resetBT" ] ; then
sudo rfkill block bluetooth && sleep 0.1 && sudo rfkill unblock bluetooth;
exit;
fi;
#### Toggle listen/speak
if [ "$1" == "" -o "$1" == "toggle" ] ; then
@rbnpi
rbnpi / FurEliseMusicaBox.rb
Last active December 30, 2019 12:54
Beethoven's Fur Elise rendered with a sampled Musical Box voice on Sonic Pi. Listen at https://soundcloud.com/scrbn/fur-elise-musical-box-generated-by-sonic-pi. Samples can be downloaded from http://r.newman.ch/rpi/MusicalBox.zip
#Fur Elise by Beethoven played with a sampled Musical Box voice, by Robin Newman June 2016
#array to hold note info for range 52 to 103. Each entry shows three items:
#note value, offset of sample to use in sample folder and rpitch value to use with the sample
#I recorded 12 samples from a musical box played slowly, and separated them in Audacity
#The piece is played an octave above the notated pitch.
path="~/Desktop/Samples/MusicalBox/mb2" #path to sample folder. Adjust as necessary
nlist=[
[52,0,-22],[53,0,-21],[54,0,-20],[55,0,-19],[56,0,-18],
[57,0,-17],[58,0,-16],[59,0,-15],[60,0,-14],[61,0,-13],
@Two9A
Two9A / decronym.php
Last active January 22, 2025 17:46
Decronym: A simple Reddit bot
<?php
/**
* Dirty, dirty Reddit bot: Decronym
*/
class Reddit {
const USERNAME = 'Decronym';
const PASSWORD = '***';
const CLIENTID = '***';
const SECRET = '***';