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
LLM: Would you like me to revert the changes and only move the "Author" line to the bottom without modifying any of the existing descriptions? | |
ME: help me understand why the extra descriptive text was changed. it is neither good or bad. I'm just learning how to use LLMs | |
LLM: Let me explain what happened: | |
Pattern Matching: When I saw the task of moving the "Author" line, I unconsciously looked for patterns in documentation. In many codebases, docstrings often follow a specific format with: | |
Brief description |
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
### k8s current context ### | |
# Add Kubernetes context to Zsh prompt | |
autoload -U add-zsh-hook | |
add-zsh-hook precmd update_k8s_context | |
function update_k8s_context() { | |
local k8s_context | |
k8s_context=$(kubectl config current-context 2>/dev/null) |
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
print( "hello Andy" ) |