local (non-tailnet) DNS is failing whenever Tailscale is connected and "Use Tailscale DNS Settings" is active.
I have reproduced this on the following platforms:
- macOS 15.6 (TS Standalone 1.86.2)
- iOS 18.6 (TS 1.84.1)
- tvOS 18.5 (TS 1.84.1)
mkdir -p ~/Library/LaunchAgents | |
cat << EOF > ~/Library/LaunchAgents/com.dosburros.SSH_AUTH_SOCK.plist | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.dosburros.SSH_AUTH_SOCK</string> | |
<key>ProgramArguments</key> | |
<array> |
// ==UserScript== | |
// @name Paylocity Enhance | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js | |
// @namespace https://app.paylocity.com/ | |
// @version 0.1 | |
// @description Try to make Paylocity's UI marginally better | |
// @author Sean Graham | |
// @match https://app.paylocity.com/PerformanceManagement/Reviews/activeReviews | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=paylocity.com |
unbind C-b | |
set -g prefix C-a | |
bind -r a send-prefix | |
bind C-a last-window | |
# https://gist.github.com/admackin/4507371 | |
# fix ssh agent when tmux is detached | |
# See .ssh/rc for socket linking | |
set -g update-environment -r | |
set-environment -g SSH_AUTH_SOCK $HOME/.ssh/agent.sock |
" .vimrc | |
" Originally Jon Parise ([email protected]) | |
" Modified by Sean Graham ([email protected]) | |
" set encoding=utf-8 | |
if file_readable(expand("~/.vimrc_local")) | |
source ~/.vimrc_local | |
endif |
import sqlite3 | |
from urllib.parse import unquote | |
from urllib.parse import parse_qs | |
dbPath = "./com.plexapp.plugins.library.db" | |
conn = sqlite3.connect(dbPath) | |
c = conn.cursor() | |
c2 = conn.cursor() | |
doviTitles = c.execute('''SELECT metadata_items.title, media_items.id, media_streams.extra_data FROM media_items |
unbind C-b | |
set -g prefix C-a | |
bind -r a send-prefix | |
bind C-a last-window | |
# https://gist.github.com/admackin/4507371 | |
# fix ssh agent when tmux is detached | |
# See .ssh/rc for socket linking | |
set -g update-environment -r | |
set-environment -g SSH_AUTH_SOCK $HOME/.ssh/agent.sock |
DATE | OPPONENT | TIME | TV | Radio |
---|---|---|---|---|
02/24 | Huskies | 01:05 PM | NESN | |
02/25 | @Braves | 01:05 PM | NESN | WEEI |
02/26 | Rays | 01:05 PM | NESN | WEEI 93.7 |
02/27 | Twins | 01:05 PM | NESN | WEEI |
02/28 | @Marlins | 06:40 PM | NESN+ | WEEI |
03/01 | @Astros | 01:05 PM | WEEI 850 | |
03/02 | Phillies | 12:05 PM | ESPN | WEEI 850 |
03/03 | @Twins | 01:05 PM | WEEI 850 |
#!/usr/bin/env bash | |
OUTPUTNAME=out.mkv | |
if [ $# -eq 2 ]; then | |
OUTPUTNAME=$2 | |
fi | |
ffmpeg -i "$1" -c copy "$OUTPUTNAME" |