- Attempt: 1 - https://github.com/cloudfoundry/cli/actions/runs/14111173082/job/39529983149
- Attempt: 1 - https://github.com/cloudfoundry/cli/actions/runs/14111117830/job/39529781918
- Attempt: 2 - https://github.com/cloudfoundry/cli/actions/runs/14109824586/job/39535360238
- Attempt: 1 - https://github.com/cloudfoundry/cli/actions/runs/14109815083/job/39525291554
- Attempt: 1 - https://github.com/cloudfoundry/cli/actions/runs/14109787993/job/39525189421
- Attempt: 1 - [https://github.com/cloudfoundry/cli/actions/runs/14108031459/job/395191
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
on alfred_script(q) | |
set cmd to q | |
repeat while cmd starts with space | |
set cmd to cmd's text 2 thru -1 | |
end repeat | |
tell application "kitty" to activate | |
do shell script "/Applications/Kitty.app/Contents/MacOS/kitty @ --to unix:/tmp/mykitty new-window --new-tab" | |
tell application "System Events" to keystroke cmd | |
tell application "System Events" |
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit
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
URL Schemes | |
Apple | |
Apple Music — music://geo.itunes.apple.com/us/albums/<albumID> | |
– music://geo.itunes.apple.com/us/artists/<artistID> | |
Apple News — applenews:// | |
App Store — itms-apps://itunes.apple.com/app/<appID> | |
Apple TV — videos:// |
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
blur: | |
ginkgo blur $(git status -s | sed -r 's/^.{3}//' | xargs dirname | sort -u) | |
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
function gp() { | |
printf "GlobalProtect: " | |
case $1 in | |
on) | |
echo ON | |
launchctl load /Library/LaunchAgents/com.paloaltonetworks.gp.pangpa.plist | |
launchctl load /Library/LaunchAgents/com.paloaltonetworks.gp.pangps.plist | |
;; | |
*) | |
echo OFF |
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
// Since `overlapArea` function is monotonic increasing, we can perform a | |
// simple bisection search to find the distance that leads to an overlap | |
// area within epsilon of the desired overlap. | |
function distanceForOverlapArea(r1, r2, desiredOverlap) { | |
// Ensure r1 <= r2 | |
if (r1 > r2) { | |
var temp = r2; | |
r2 = r1; | |
r1 = temp; | |
} |
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
" Apparently some vim environments require colons before commands in | |
" .vimrc and others don't. This file has been primarily tested in | |
" Ubuntu 12.04, 13.10, and 14.04 environments, where a : is required | |
" on each line before a command. According to one stackexchange topic | |
" it is best to leave the leading colons because systems that do not | |
" require them can still execute them. | |
" Author - Trent Robbins | |
:set background=dark |
NewerOlder