This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description: null | |
devices: | |
adjust_period: 10 | |
capture: | |
channels: 2 | |
device: hw:UAC2Gadget | |
format: S32LE | |
labels: null | |
link_mute_control: null | |
link_volume_control: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description: null | |
devices: | |
adjust_period: 10 | |
capture: | |
channels: 2 | |
device: BlackHole 2ch | |
format: FLOAT32LE | |
type: CoreAudio | |
capture_samplerate: 96000 | |
chunksize: 4096 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description: null | |
devices: | |
adjust_period: 10 | |
capture: | |
channels: 2 | |
device: BlackHole 2ch | |
format: FLOAT32LE | |
type: CoreAudio | |
capture_samplerate: 96000 | |
chunksize: 4096 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;be sure to run AHK et all as administrator | |
g_LastCtrlKeyDownTime := 0 | |
g_AbortSendEsc := false | |
g_ControlRepeatDetected := false | |
*CapsLock:: | |
if (g_ControlRepeatDetected) | |
{ | |
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; require package managers, but we'll avoid them if at all possible | |
(require 'package) | |
(push '("melpa" . "http://melpa.milkbox.net/packages/") | |
package-archives) | |
;;===================================== | |
;;plugins | |
;;===================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`` () = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Color = | |
| Red | |
| Yellow | |
type Spot = | |
| Empty | |
| Color of Color | |
type Column = | |
| A |
NewerOlder