Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@cablej
cablej / default.md
Created June 21, 2025 18:46
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@vladak
vladak / varmilo keyboard.md
Last active June 22, 2025 03:25
Varmilo keyboard details
@cmetz
cmetz / monitor.sh
Last active June 22, 2025 03:22
simple evo-x2 monitor script using ec_probe
#!/usr/bin/env sh
while true; do
temp=$(sudo ec_probe read 0x70 | awk '{print $1}')
high_byte=$(sudo ec_probe read 0x35 | awk '{print $1}')
low_byte=$(sudo ec_probe read 0x36 | awk '{print $1}')
fan1=$((high_byte * 256 + low_byte))
high_byte=$(sudo ec_probe read 0x37 | awk '{print $1}')
low_byte=$(sudo ec_probe read 0x38 | awk '{print $1}')
@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active June 22, 2025 03:19
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.