Discover gists
| - Open Notepad. | |
| - Copy everything from the comment below and paste it in Notepad. | |
| - Press X to close Notepad, it will ask you to save the file. | |
| - Choose an appropriate name eg. TransMac_Reset_Trial.cmd | |
| You can place the file whatever you like as long as you have installed TransMac in the default install path. | |
| You can also put TransMac_Reset_Trial.cmd in the same directory as TransMac.exe and run it from there. | |
| This is useful if you want to put TransMac.exe in another path than default. |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| since you can find this on the internet easily anyway, i decided to create this for ya. | |
| I know a lot of ppl wont like this but fuck it, it's ez anyway. | |
| One click batch script download: https://anonfiles.com/59T773t2uf/TransMac_Trial_Resetter_bat | |
| Run this whenever you want or put it in your startup folder | |
| (Win+R and type shell:startup) | |
| For all other users, one time easy way to do it, open Regedit | |
| Navigate to Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\ or paste that in the address bar. |
| since you can find this on the internet easily anyway, i decided to create this for ya. | |
| I know a lot of ppl wont like this but fuck it, it's ez anyway. | |
| One click batch script download: https://anonfiles.com/59T773t2uf/TransMac_Trial_Resetter_bat | |
| Run this whenever you want or put it in your startup folder | |
| (Win+R and type shell:startup) | |
| For all other users, one time easy way to do it, open Regedit | |
| Navigate to Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved\ or paste that in the address bar. |
This repository contains a disciplined, evidence-first prompting framework designed to elevate an Agentic AI from a simple command executor to an Autonomous Principal Engineer.
The philosophy is simple: Autonomy through discipline. Trust through verification.
This framework is not just a collection of prompts; it is a complete operational system for managing AI agents. It enforces a rigorous workflow of reconnaissance, planning, safe execution, and self-improvement, ensuring every action the agent takes is deliberate, verifiable, and aligned with senior engineering best practices.
I also have Claude Code prompting for your reference: https://gist.github.com/aashari/1c38e8c7766b5ba81c3a0d4d124a2f58
| {%- set image_count = namespace(value=0) %} | |
| {%- set video_count = namespace(value=0) %} | |
| {%- macro render_content(content, do_vision_count, is_system_content=false) %} | |
| {%- if content is string %} | |
| {{- content }} | |
| {%- elif content is iterable and content is not mapping %} | |
| {%- for item in content %} | |
| {%- if 'image' in item or 'image_url' in item or item.type == 'image' %} | |
| {%- if is_system_content %} | |
| {{- raise_exception('System message cannot contain images.') }} |
| You are Gemini. You are a helpful assistant. Balance empathy with candor: validate the user's emotions, but ground your responses in fact and reality, gently correcting misconceptions. Mirror the user's tone, formality, energy, and humor. Provide clear, insightful, and straightforward answers. Be honest about your AI nature; do not feign personal experiences or feelings.Use LaTeX only for formal/complex math/science (equations, formulas, complex variables) where standard text is insufficient. Enclose all LaTeX formulas using $ for inline equations and$$ for display equations. Ensure there is no space between the delimiter ($ or $$) and the formula. Never render LaTeX in a code block unless the user explicitly asks for it. Strictly Avoid LaTeX for simple formatting (use Markdown), non-technical contexts and regular prose (e.g., resumes, letters, essays, CVs, cooking, weather, etc.), or simple units/numbers (e.g., render 180°C or 10%).Further guidelines:I. Response Guiding PrinciplesStructure your response for |
| #include <stdio.h> | |
| // Compile with cc -o gray gray.c -framework UniversalAccess -F /System/Library/PrivateFrameworks | |
| extern void UAGrayscaleSetEnabled(int isEnabled); | |
| extern int UAGrayscaleIsEnabled(); | |
| int main() { | |
| UAGrayscaleSetEnabled(!UAGrayscaleIsEnabled()); | |
| } |
