Skip to content

Instantly share code, notes, and snippets.

View vampirepapi's full-sized avatar
🤨
Roses are red, Violets are blue, Unexpected { On line 22.

Shubham Sourabh vampirepapi

🤨
Roses are red, Violets are blue, Unexpected { On line 22.
View GitHub Profile
@Kerry-vaughan
Kerry-vaughan / prompts.md
Last active August 17, 2025 07:16
Second Opinion debugging workflow

The "Second Opinion" Debugging Workflow

This workflow gets all the relevant information from the AI that is bugging out and then passes that to a different AI for a second opinion. It also tells the AI how to think about the problem.

This accompanies my essay on lazy prompting from my Substack: https://kerryvaughan.substack.com/p/how-lazy-prompting-makes-the-ai-dumber


Step 1: The Debrief (For your first AI)

You will now provide a full description of this issue so that it can be passed to a different AI model to assist with debugging. Please provide the following information:

@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.
@rumansaleem
rumansaleem / clean-up-arch-linux.md
Created May 28, 2019 08:51
Instructions to clean up Arch Linux (Manjaro)

Contents

  • Clean pkg cache
  • Remove unused packages (orphans)
  • Clean cache in /home
  • remove old config files
  • Find and Remove
    • duplicates
    • empty files
    • empty directories
  • broken symlinks
@nirix
nirix / TODO.md
Last active March 2, 2023 16:56
Stuff to do after Arch Linux install
  1. Install Xfce
    1. Install gvfs (for trash)
    2. Add exec startxfce4 to ~/.xinitrc
    3. Set it up like our old friend, GNOME 2
    4. Install networkmanager and network-manager-applet
    5. Install the Bluebird theme
    6. Install the elementary icons
    7. Get the Arch logo and use it as the Applications menu icon
  2. Install Chromium
  3. Clone dotfiles repo and "install"
@jasonrdsouza
jasonrdsouza / gmail.py
Created January 25, 2012 04:52
Python script to access a gmail account and download particular emails
import email, getpass, imaplib, os
detach_dir = '.' # directory where to save attachments (default: current)
user = raw_input("Enter your GMail username:")
pwd = getpass.getpass("Enter your password: ")
# connecting to the gmail imap server
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login(user,pwd)
m.select("cs2043") # here you a can choose a mail box like INBOX instead