Skip to content

Instantly share code, notes, and snippets.

View erdalstk's full-sized avatar
🎯
Focusing

Erdal SATIK erdalstk

🎯
Focusing
View GitHub Profile
@erdalstk
erdalstk / default.md
Created June 24, 2025 06:58 — 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.
@erdalstk
erdalstk / gist:075d227ae0a66d612cc87e9150f3777f
Created November 27, 2023 11:00 — forked from levelsio/gist:5bc87fd1b1ffbf4a705047bebd9b4790
Secret of Monkey Island: Amsterdam (by @levelsio) or how to create your own ChatGPT image+text-based adventure game
2023-11-27 MIT LICENSE
Here's the open source version of my ChatGPT game MonkeyIslandAmsterdam.com.
It's an unofficial image+text-based adventure game edition of Monkey Island in Amsterdam, my home town.
Please use it however you want. It'd be nice to see more ChatGPT-based games appear from this.
It's much easier than you think and you'll be shocked by how relatively well it works with little work.
@erdalstk
erdalstk / serverless.yml
Created January 24, 2021 19:47 — forked from dabit3/serverless.yml
Deploying Next.js to AWS with a custom domain name
nextamplified:
component: "@sls-next/[email protected]"
inputs:
domain: "nextjsonaws.com"
@erdalstk
erdalstk / searchAllTerms.js
Created February 26, 2020 07:47
Search For Content That Includes All Search Terms
var searchTerms = ['facebook', 'apple', 'google']
var contents = [
'facebook is a company',
'google is good',
'facebook apple google'
]
function prepare(contents) {
var hash = {}
contents.forEach(function(item, i) {