Skip to content

Instantly share code, notes, and snippets.

View lefthandedgoat's full-sized avatar

Chris Holt lefthandedgoat

View GitHub Profile
@lefthandedgoat
lefthandedgoat / cdsp.yml
Created March 6, 2025 00:28
camilladsp v3 living room config
description: null
devices:
adjust_period: 10
capture:
channels: 2
device: hw:UAC2Gadget
format: S32LE
labels: null
link_mute_control: null
link_volume_control: null
@lefthandedgoat
lefthandedgoat / usb_g_audio.conf
Last active March 6, 2025 00:32
usb_g_audio.conf
file: /etc/modprobe.d/usb_g_audio.conf
#have many options presented to usb host
options g_audio iManufacturer="lefthandedgoat audio" iProduct="cdsp" c_srate=44100,48000,88200,96000,176400,192000,352800,384000,705600,768000 c_ssize=4 p_chmask=0
#only 192000
options g_audio iManufacturer="lefthandedgoat audio" iProduct="cdsp" c_srate=192000 c_ssize=4 p_chmask=0
description: null
devices:
adjust_period: 10
capture:
channels: 2
device: BlackHole 2ch
format: FLOAT32LE
type: CoreAudio
capture_samplerate: 96000
chunksize: 4096
description: null
devices:
adjust_period: 10
capture:
channels: 2
device: BlackHole 2ch
format: FLOAT32LE
type: CoreAudio
capture_samplerate: 96000
chunksize: 4096
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>canopy</id>
<version>2.0.0</version>
<authors>Chris Holt</authors>
<licenseUrl>https://github.com/lefthandedgoat/canopy/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>http://lefthandedgoat.github.io/canopy/</projectUrl>
<iconUrl>http://lefthandedgoat.github.io/canopy/canopy_orig.jpg</iconUrl>
<description>A simple framework in F# on top of selenium for writing UI automation and tests.</description>
@lefthandedgoat
lefthandedgoat / esc.ahk
Created May 18, 2017 19:19
auto hot key script to have capslock double up as esc and ctrl and have left shit and right shift add parenthesis
;be sure to run AHK et all as administrator
g_LastCtrlKeyDownTime := 0
g_AbortSendEsc := false
g_ControlRepeatDetected := false
*CapsLock::
if (g_ControlRepeatDetected)
{
return
@lefthandedgoat
lefthandedgoat / init.el
Created April 4, 2017 17:37
my emacs config
;; require package managers, but we'll avoid them if at all possible
(require 'package)
(push '("melpa" . "http://melpa.milkbox.net/packages/")
package-archives)
;;=====================================
;;plugins
;;=====================================
@lefthandedgoat
lefthandedgoat / gist:25e5bc05f8c631c2d9885ace4f4169a6
Created February 11, 2017 16:55
working fsx with html reporter
#I @"C:\projects\fsxCanopy\packages\Selenium.WebDriver.3.0.0\lib\net40\"
#I @"C:\projects\fsxCanopy\packages\canopy.1.0.6\lib"
#r "WebDriver.dll"
#r "canopy.dll"
open canopy
open runner
open reporters
module Test1
open Xunit
open FsUnit.Xunit
type ``Context 1`` () =
let setup = failwith "do your setup here and if it returns unit its fine, it will bind to the setup val"
[<Fact>]
member x.``test 1`` () =
@lefthandedgoat
lefthandedgoat / connect4.fs
Created September 28, 2016 23:21
Connect 4
type Color =
| Red
| Yellow
type Spot =
| Empty
| Color of Color
type Column =
| A