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
git config --global alias.ac '!git add . && git commit -m' | |
git config --global alias.ck '!f() { \ | |
branch=$(git branch -a | grep -v HEAD | sed "s/.* //" | fzf); \ | |
git checkout "$branch"; \ | |
}; f' | |
git config --global alias.rmb '!f() { \ | |
branch=$(git branch | sed "s/^[*[:space:]]*//" | fzf); \ | |
git branch -d "$branch"; \ |
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
git config --global alias.rmb '!f() { \ | |
branch=$(git branch | sed "s/^[*[:space:]]*//" | fzf); \ | |
git branch -d "$branch"; \ | |
}; f' |
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
git config --global alias.ck '!f() { \ | |
branch=$(git branch -a | grep -v HEAD | sed "s/.* //" | fzf); \ | |
git checkout "$branch"; \ | |
}; f' |
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
{ | |
// ==================== | |
// Editor Settings | |
// ==================== | |
"editor.minimap.enabled": false, | |
"editor.fontSize": 16, | |
"editor.fontLigatures": false, | |
"editor.suggestSelection": "first", | |
"editor.renderLineHighlight": "gutter", | |
"editor.tabSize": 2, |
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
# ------------------------------------------- | |
# Powerlevel10k Instant Prompt (Keep near top) | |
# ------------------------------------------- | |
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
# ------------------------------------------- | |
# Oh-My-Zsh Setup & PATH Customizations | |
# ------------------------------------------- |
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
const r = @cImport({ | |
@cInclude("raylib.h"); | |
}); | |
const WINDOW_WIDTH = 960; | |
const WINDOW_HEIGHT = 540; | |
pub fn main() !void { | |
r.InitWindow(960, 540, "Zig Paint POC"); |
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
package main | |
import ( | |
"bufio" | |
"encoding/json" | |
"fmt" | |
"log" | |
"os" | |
"os/exec" | |
"strconv" |
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
package main | |
import ( | |
"fmt" | |
"os" | |
"strconv" | |
) | |
func getInput() int { | |
if len(os.Args) <= 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
RAlt & c:: | |
Send, ç | |
return | |
!<+c:: | |
Send, Ç | |
return | |
!Right:: | |
Send, {End} |
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
html { | |
box-sizing: border-box; | |
font-size: 16px; | |
} | |
*, *:before, *:after { | |
box-sizing: inherit; | |
} | |
body, h1, h2, h3, h4, h5, h6, p, ol, ul { |
NewerOlder