This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
NewerOlder