Skip to content

Instantly share code, notes, and snippets.

@CurtisAccelerate
CurtisAccelerate / PopupChat.AHK
Last active February 16, 2025 09:56
Popup ChatGPT AHK
Updated-- the ChatGPT is a UWP which has implications for the "on open" functionality.
; -----------------------------------------------
; ChatGPT Toggle Script with Minimize/Restore Toggle
; -----------------------------------------------
#NoEnv ; Recommended for performance and compatibility.
SendMode Input ; Use faster, more reliable input.
SetWorkingDir %A_ScriptDir% ; Ensure a consistent starting directory.
; Set the full UWP AUMID for ChatGPT
@CurtisAccelerate
CurtisAccelerate / EnableEdit
Created February 15, 2025 21:52
Enable Edit Button
Enabled edit ChatGPT Tamper Monkey
// ==UserScript==
// @name ChatGPT Edit Button Fix
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Force the hidden edit button to be visible on ChatGPT
// @author Your Name
// @match https://chatgpt.com/*
// @grant GM_addStyle
@CurtisAccelerate
CurtisAccelerate / R1 Boosting Second Version
Created February 1, 2025 07:29
R1 Boosting Second Version
THE RULES FOR PRIVATE THINKING
Instructions for Every Response
You must follow this exact structured format for every answer. This process ensures:
Thorough problem-solving
Complete uncertainty resolution
Multi-level hierarchical thinking
A polished, reliable final solution
This method emphasizes deep reasoning, continuous reflection, and meticulous verification—especially when tools may fail or provide incorrect results.
@CurtisAccelerate
CurtisAccelerate / gist:815ab82bebe17ebfc99fa8350ec88c92
Created February 1, 2025 07:26
Complete_R1_Transcript_With_Boosting
Write a p5.js script that simulates 25 particles in a vacuum space of a cylindrical container, bouncing within its boundaries. Use different colors for each ball and ensure they leave a trail showing their movement. Add a slow rotation of the container to give better view of what's going on in the scene. Make sure to create proper collision detection and physic rules to ensure particles remain in the container. Add an external spherical container. Add a slow zoom in and zoom out effect to the whole scene.
{Define Task Here}
Using process defined below
Response Format:
You must follow this exact structured format for every answer. This process ensures:
@CurtisAccelerate
CurtisAccelerate / o3 Boosting
Created February 1, 2025 05:42
o3 Boosting Script
Below is my o3 boosting script. You can increase or decrease the STEPS to influence the run-time compute spend on a problem.
A good default might be 7 steps. There is also a draft and final section. You may not need the draft section for all problems.
------------------------------------------
{Define Task Here}
Using process defined below
Response Format:
@CurtisAccelerate
CurtisAccelerate / R1-Boosted
Last active January 29, 2025 17:36
R1 Thinking With Boosting Script
THE RULES FOR PRIVATE THINKING
Instructions for Every Response
You must follow this exact structured format for every answer. This process ensures:
Thorough problem-solving
Complete uncertainty resolution
Multi-level hierarchical thinking
A polished, reliable final solution
This method emphasizes deep reasoning, continuous reflection, and meticulous verification—especially when tools may fail or provide incorrect results.
THE RULES FOR PRIVATE THINKING
Instructions for Every Response
You must follow this exact structured format for every answer. This process ensures:
Thorough problem-solving
Complete uncertainty resolution
Multi-level hierarchical thinking
A polished, reliable final solution
This method emphasizes deep reasoning, continuous reflection, and meticulous verification—especially when tools may fail or provide incorrect results.
@CurtisAccelerate
CurtisAccelerate / Features_Example.EL
Created January 14, 2025 18:22
EasyLanguage_Features
{
This code focuses on tracking certain “features” for winning and losing trades,
then adjusting buy conditions based on how similar current market conditions are
to past winners or losers (a simplified nearest-neighbor approach).
}
Variables:
WinCount(0), LossCount(0), TradeCount(0),
MarketPositionByBar(0),
EntryBar(0),
@CurtisAccelerate
CurtisAccelerate / Jupyter_LLM.txt
Last active July 7, 2024 03:45
Jupyter to LLM Integration
This project allows you to interface chat your Jupyter Notebook to LLM running locally and get real-time help for erros.
SendChat allows you to chat your local LLM, send the last cell (with any errors), or the last N cells in the notebook.
1. Requirements: lm studio, AutoHotKey, Jupyter Notebook
2. Start server in LM studio
3. Copy/paste the magic command into your notebook. Update the port/model to match your config.
4. Load your AutoHotKey AHK script.
5. %sendchat or use AHK abbreviations / expansions dot dot, dot c, and dot l for auto expansion.
// ==UserScript==
// @name ChatGPT Code Block Processor C64 Edition
// @namespace http://tampermonkey.net/
// @version 3.0.0
// @description Add "Run HTML" and "Run C64" buttons as hover actions on code blocks in ChatGPT responses with a draggable panel.
// @match https://chatgpt.com/*
// @grant GM_addElement
// @grant GM_addStyle
// @grant unsafeWindow
// ==/UserScript==