- Raleigh Tamland 2 (gravel bike)
- 40mm tires
- Two handlebar bags (https://www.thespindleatl.com/spindle-custom-bags/the-40oz-crusher)
- One half frame bag (like this but also custom made by the place above - https://www.blackburndesign.com/bags/outpost-frame-bag-large.html)
- Seat bag (https://www.apidura.com/product/saddle-pack-regular/)
- Front light (https://www.amazon.com/Distance-rechargeable-Bicycle-EdisonBright-Batteries/dp/B01ACHGGQW/)
- Backup batteries for front light
- Rear light (https://www.amazon.com/Cygolite-Hotshot-Bike-Tail-Light/dp/B01IO12OLO)
- Backup rear light (https://www.amazon.com/Cygolite-Micro-2-Watt-Shot-Light/dp/B00MDCIDZC)
This file contains hidden or 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
#!/bin/sh | |
#pacmd set-default-sink alsa_output.usb-Logitech_Logitech_G933_Gaming_Wireless_Headset-00.analog-stereo | |
#pacmd set-default-source alsa_input.usb-Logitech_Logitech_G933_Gaming_Wireless_Headset-00.analog-mono | |
set -e | |
QUDELIX_SINK="alsa_output.usb-QTIL_Qudelix-5K_USB_DAC_ABCDEF0123456789-00.analog-stereo" | |
SPEAKER_SINK="alsa_output.pci-0000_0f_00.4.3.iec958-stereo" | |
STAGE_SINK="alsa_output.usb-ACTIONS_Stage_V2-00.analog-stereo" | |
BOSE_SINK="bluez_output.78_2B_64_CE_04_03.1" |
This file contains hidden or 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
#!/usr/bin/nu | |
def main [] { | |
print "main" | |
} | |
def "main raise" [] { | |
let vol = currentVolume | |
if ($vol < 100) { | |
pactl set-sink-volume @DEFAULT_SINK@ $"($vol + 1)%" |
This file contains hidden or 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
[ { name: "Firefox - Personal" | |
, app_id: "firefox_personal" | |
, exec: "/usr/lib/firefox/firefox" | |
, args: ["--class=firefox", "-P", "personal", "--name=firefox_personal"] | |
} | |
, { name: "Firefox - Work" | |
, app_id: "firefox_work" | |
, exec: "/usr/lib/firefox/firefox" | |
, args: ["--class=firefox", "-P", "flipstone", "--name=firefox_work"] | |
} |
This file contains hidden or 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
Africa/Abidjan | |
Africa/Accra | |
Africa/Addis_Ababa | |
Africa/Algiers | |
Africa/Asmara | |
Africa/Asmera | |
Africa/Bamako | |
Africa/Bangui | |
Africa/Banjul | |
Africa/Bissau |
This file contains hidden or 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
#!/bin/sh | |
#pacmd set-default-sink alsa_output.usb-Logitech_Logitech_G933_Gaming_Wireless_Headset-00.analog-stereo | |
#pacmd set-default-source alsa_input.usb-Logitech_Logitech_G933_Gaming_Wireless_Headset-00.analog-mono | |
function switchAudio() { | |
case "$1" in | |
"logitech") | |
local sink="alsa_output.usb-Logitech_Logitech_G933_Gaming_Wireless_Headset-00.analog-stereo" |
This file contains hidden or 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
#!/bin/sh | |
echo "CREATING SUBSCRIPTION WITH QUEUE ARN" | |
set -e | |
ENDPOINT_URL="http://localhost:4100" | |
export AWS_DEFAULT_REGION="us-east-1" | |
export AWS_SECRET_ACCESS_KEY="fakefakefake" | |
export AWS_ACCESS_KEY_ID="faketyfakefake" | |
TOPIC_ARN=$(aws --endpoint-url $ENDPOINT_URL sns create-topic --name test-topic | jq -r ".TopicArn") |
This file contains hidden or 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
/* utilities */ | |
.pull-left { | |
float: left; | |
} | |
.sr-only { | |
position: absolute !important; | |
clip: rect(1px, 1px, 1px, 1px); | |
padding: 0 !important; | |
border: 0 !important; |
This file contains hidden or 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 'uri' | |
base = 'http://google.com' | |
foo = 'foo' | |
bar = 'bar' | |
puts URI::join(base, foo) | |
puts URI::join(base, foo, bar) |
NewerOlder