Skip to content

Instantly share code, notes, and snippets.

View mshumayl's full-sized avatar
📚
Hyperlearning!

Shumayl mshumayl

📚
Hyperlearning!
View GitHub Profile
@mshumayl
mshumayl / default.md
Created June 22, 2025 09:01 — forked from cablej/default.md
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.
@mshumayl
mshumayl / keybindings.json
Last active July 6, 2024 08:42
Vim motion keybindings for VS Code Intellisense suggestions
// Add the following lines to your keybindings.json file
{
"key": "ctrl+j",
"command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+k",
"command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
@mshumayl
mshumayl / example.yaml
Last active November 23, 2023 08:19
Docker Compose - T3 stack app and Postgres
version: "3.9"
services:
db:
platform: "linux/amd64"
image: postgres:15
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres_user
- POSTGRES_PASSWORD=postgres_pw