Install VSCode Extension: Custom CSS and JS Loader
/* Original Colors: https://www.schemecolor.com/matrix-code-green.php */
.mtk1,
.mtk10 {
color: #FAFCFE;
text-shadow: 0 0 1px #00FF41, 0 0 2px #008F11, 0 0 3px #003B00, 0 0 4px #0D0208;
}
Install VSCode Extension: Custom CSS and JS Loader
/* Original Colors: https://www.schemecolor.com/matrix-code-green.php */
.mtk1,
.mtk10 {
color: #FAFCFE;
text-shadow: 0 0 1px #00FF41, 0 0 2px #008F11, 0 0 3px #003B00, 0 0 4px #0D0208;
}
#!/bin/zsh | |
# AegeanSymphonicOrchestra-v2_2.sf2 | |
# GeneralUser-v1.471.sf2 | |
# SGM-V2.01.sf2 | |
SOUNDFONT='/Users/Will/.config/.soundfont/SGM-V2.01.sf2' | |
if [ -e "$SOUNDFONT" ] | |
then | |
for i in "$@" |
# Created by https://www.toptal.com/developers/gitignore/api/swiftpackagemanager,swift,xcode,macos | |
# Edit at https://www.toptal.com/developers/gitignore?templates=swiftpackagemanager,swift,xcode,macos | |
### macOS ### | |
# General | |
.DS_Store | |
.AppleDouble | |
.LSOverride |
import Foundation | |
func fatalerror(_ text : String) { | |
fputs(text, __stderrp) | |
exit(-1) | |
} | |
struct ReadingListItem { | |
init(title: String?, previewText: String?, url: URL, dateAdded: Date) { | |
self.title = title |
#!/bin/zsh | |
# #popclip | |
# name: Azure TTS | |
# icon: symbol:message.and.waveform | |
# Please apply for your own key | |
AZURE_REGION= | |
AZURE_SUBSCRIPTION_KEY= | |
# Create a temporary audio file |
sudo chflags -R noschg /Applications/Yunshu.app | |
sudo rm -rf /opt/yunshu \ | |
/opt/.yunshu \ | |
/Library/PrivilegedHelperTools/com.eagleyun.sase.helper \ | |
/Applications/Yunshu.app | |
function cleanup() { | |
local target="$1" | |
# XDG | |
# https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html | |
# https://specifications.freedesktop.org/basedir-spec/latest/ar01s03.html | |
export XDG_CONFIG_HOME="$HOME/.config" | |
export XDG_DATA_HOME="$HOME/.local/share" | |
export XDG_STATE_HOME="$HOME/.local/state" | |
export XDG_CACHE_HOME="$HOME/.cache" | |
# Zsh | |
export ZDOTDIR="$XDG_CONFIG_HOME/zsh" |