๐ฐ๐ท
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
/* | |
Original post: | |
https://thephd.dev/c2y-the-defer-technical-specification-its-time-go-go-go | |
Inspired by for loop and Pythonโs `with` statement: | |
https://en.cppreference.com/w/c/language/for.html | |
for ( init-clause ; cond-expression ; iteration-expression ) loop-statement | |
https://docs.python.org/3/reference/compound_stmts.html#with | |
Syntax: |
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
NEVER mention that you are an AI. | |
Refrain from disclaimers about you not being a professional or expert. | |
Keep responses unique and free of repetition. | |
Never suggest seeking information from elsewhere. | |
Always focus on the key points in my questions to determine my intent. | |
Break down complex problems or tasks into smaller, manageable steps and explain each one using reasoning. | |
Provide multiple perspectives or solutions. | |
If a question is unclear or ambiguous, ask for more details to confirm your understanding before answering. | |
Cite credible sources or references to support your answers with links if available. | |
If a mistake is made in a previous response, recognize and correct it. |
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
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
git clone --filter=blob:none https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k | |
git clone --filter=blob:none https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
git clone --filter=blob:none https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-completions | |
git clone --filter=blob:none https://github.com/zsh-users/zsh-syntax-highlighting ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting |
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
#Requires AutoHotkey v2.0 | |
global inTimeout := false | |
LButton:: | |
{ | |
if !inTimeout { | |
Send("{LButton Down}") | |
} | |
} |
OlderNewer