Skip to content

Instantly share code, notes, and snippets.

View joeeeeey's full-sized avatar
:shipit:
On vacation

Joey joeeeeey

:shipit:
On vacation
  • Shanghai, China
View GitHub Profile
@joeeeeey
joeeeeey / default.md
Created July 9, 2025 04:31 — 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.
@joeeeeey
joeeeeey / yield_self.rb
Last active November 8, 2017 07:48 — forked from cowboy/yield.rb
Ruby An example using "yield self if block_given?"
# No yielding
class NormPerson
attr_accessor :first, :last
def initialize(first = nil, last = nil)
@first = first
@last = last
end
def hello
puts "#{@first} #{@last} says hello!"
@joeeeeey
joeeeeey / download.md
Last active October 25, 2017 10:01 — forked from guzart/download
bash: Download and Compress Rails API
#!/bin/bash
```bash
wget -r -k -p http://api.rubyonrails.org/
```
* r - recursive
* k - convert links to point to local files
* p - get all images, etc needed to display the html pages
```bash