Skip to content

Instantly share code, notes, and snippets.

View asd142513's full-sized avatar
๐Ÿ‡ฐ๐Ÿ‡ท

Donghyeon Lee asd142513

๐Ÿ‡ฐ๐Ÿ‡ท
View GitHub Profile
/*
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:
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.
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
#Requires AutoHotkey v2.0
global inTimeout := false
LButton::
{
if !inTimeout {
Send("{LButton Down}")
}
}