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
after-login-command = [] | |
after-startup-command = [ | |
# JankyBorders has a built-in detection of already running process, | |
# so it won't be run twice on AeroSpace restart | |
'exec-and-forget borders active_color=0xffff4641‰ width=5.0' | |
] | |
start-at-login = true | |
enable-normalization-flatten-containers = true | |
enable-normalization-opposite-orientation-for-nested-containers = true |
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
general: | |
# Commands to run when the WM has started (e.g. to run a script or launch | |
# another application). Here we are running a batch script to start Zebar. | |
startup_commands: ['shell-exec %userprofile%/.glzr/zebar/start.bat'] | |
# Whether to automatically focus windows underneath the cursor. | |
focus_follows_cursor: false | |
# Whether to switch back and forth between the previously focused | |
# workspace when focusing the current workspace. |
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
plugins=(git zsh-autosuggestions zsh-syntax-highlighting ssh-agent) | |
alias ls="ls -lFh --color" | |
function command_not_found_handler() { | |
echo "zsh: command not found: $1\n" | |
figlet -froman lol - $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
/* better contrast for status-bar */ | |
.status-bar{ | |
color: var(--tx2); | |
} | |
/* better contrast for status bar (sync button) */ | |
:is(.theme-light, .theme-dark) :is(.sync-status-icon.mod-success, .sync-status-icon.mod-working) { | |
color: var(--tx2); | |
} |
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
# Created by https://www.toptal.com/developers/gitignore/api/go,python,node,java,intellij+all,sublimetext,visualstudiocode,xcode,maven,gradle | |
# Edit at https://www.toptal.com/developers/gitignore?templates=go,python,node,java,intellij+all,sublimetext,visualstudiocode,xcode,maven,gradle | |
### Go ### | |
# Binaries for programs and plugins | |
*.exe | |
*.exe~ | |
*.dll | |
*.so |
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
" Reference: https://github.com/amix/vimrc/blob/master/vimrcs/basic.vim | |
" Enable filetype plugins | |
filetype plugin on | |
filetype indent on | |
" Better status when using window | |
" Reference: https://superuser.com/a/807010= | |
highlight StatusLineNC cterm=bold ctermfg=white ctermbg=darkgray |
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
version: "3.9" | |
services: | |
jupyter: | |
image: quay.io/jupyter/scipy-notebook | |
ports: | |
- "8888:8888" | |
volumes: | |
- ./notebooks:/home/jovyan/ | |
environment: |
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
#!/bin/bash | |
if [ -z "${prefix}" ]; then | |
echo "warn: prefix is not set" | |
fi | |
for f in *; do | |
if [ -d "${f}" ]; then | |
echo "Zipping ${f} to ${prefix}${f}.cbz" | |
zip -r "${prefix}${f}.cbz" "${f}" |
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
https://www.datadoghq.com/blog/postgresql-monitoring/ | |
https://www.datadoghq.com/blog/postgresql-monitoring-tools/ |
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
alias ls='ls -FGH' | |
alias ll='ls -l' | |
export JAVA_HOME=/Libary/Java/Home | |
kubecontext() | |
{ | |
if [[ -e ~/.kube/config && $(type -P kubectl 2>/dev/null) ]]; then | |
echo -n " [$(kubectl config current-context)]" | |
else |
NewerOlder