AI Place Hub
@aiplacehub admin
Maintainer account. Publishes the baseline library that ships with the site.
Joined September 2026
Published
No-padding everyday default
The one to set if you set only one. Answer first, nothing before it, nothing after it, and no offer to help further.
Tested on Claude Sonnet · May 2026
- CheatsheetUniversal
Forcing an output format that holds
The phrasings that actually constrain output, and the ones people use that do not. Tested by asking for the same thing twenty times and counting the…
Tested on Claude Sonnet · May 2026
- CheatsheetChatGPT
ChatGPT commands and keyboard shortcuts
The commands and shortcuts that are not in the interface anywhere, collected in one table. Mostly keyboard, mostly undocumented.
Tested on GPT-5 · May 2026
Sysadmin who flags what cannot be undone
For infrastructure work: gives the command, but names anything irreversible before it, and never assumes a test environment.
Tested on Claude Sonnet · May 2026
Senior engineer who reads before changing
Turns the model into a colleague who answers the question you asked, touches only what you pointed at, and says out loud which parts it did not…
Tested on Claude Sonnet · May 2026
Editor who does not flatten your voice
Separates fixing what is wrong from rewriting what is fine, and only does the first unless you ask. Stops the slide into the same neutral register…
Tested on GPT-5 · May 2026
Teacher who checks where you are
Explains at your level rather than the manual's, by asking one question first and building from what you already said you know.
Tested on Gemini Pro · May 2026
- ErrorChatGPT
429 Too Many Requests / Rate limit reached
You crossed a request or token limit for your tier. The fix is backoff with jitter and batching, not a shorter sleep, and the header tells you which…
Tested on GPT-5 · May 2026
- ErrorChatGPTGemini
This model's maximum context length is N tokens
The request is longer than the model can hold, counting your prompt, the whole conversation history and the space reserved for the answer. Usually it…
Tested on GPT-5 · May 2026
- CheatsheetLlama
Ollama commands worth knowing
The subset of the CLI you actually use, plus the two flags that fix the problems everybody hits.
Tested on Llama 3.3 70B · May 2026
- Local setupLlama
Running your first local model
Ollama on a normal laptop, from install to a model answering in about ten minutes, plus how to work out which size actually fits before you download…
Tested on Llama 3.2 8B · May 2026
- ToolLlamaAPPFree for personal use
LM Studio
A desktop app for downloading, running and comparing local models without a terminal. Best tool for deciding which quantisation is good enough before…
Tested on Llama 3.2 8B · May 2026
- ToolLlamaMistralCLIFree, open source
Ollama
The simplest way to get a local model answering on your own machine. One command to install, one to pull a model, and an API on localhost that most…
Tested on Llama 3.3 70B · May 2026
- Before and afterUniversal
Asking for a summary
The same document, the same model. The weak version returns the article rearranged; the strong one returns something you can act on, because it says…
Tested on Claude Sonnet · May 2026
- WorkflowUniversal
Turn a newsletter into posts for three networks
Takes one long email and produces a LinkedIn post, an X thread and a short video script, each written for how that platform actually reads, without…
Tested on GPT-5 · Apr 2026
- WorkflowUniversal
Find dead code across a repository
A four-step pass that maps the repo, lists exported symbols, checks each one for real callers and produces a deletion list you can actually act on…
Tested on Claude Sonnet · May 2026
- PromptMidjourneyStable Diffusion
Image prompt skeleton
A fill-in structure for image models that keeps subject, environment, light, lens and style in the order the models weight them.
- GuideUniversal
Giving a model a role and constraints
How naming the audience, the format and the exclusions turns unpredictable answers into repeatable ones.
Collections
-
4 items
First week with a coding model
What to read, in order, if you have just started using a model for real work on a codebase. Four entries, about an hour.
-
3 items
Going local
Everything needed to stop paying for an API: hardware maths, the install, and the two tools worth knowing.
Glossary contributions
Agent
A model given tools and a goal, allowed to decide its own next steps in a loop rather than answering once.
Chain of thought CoT
Prompting a model to write out its intermediate steps before the final answer.
Context window
The maximum amount of text, measured in tokens, that a model can take into account at once - your prompt and its answer together.
Embeddings
Numeric vectors representing text, where similar meanings land close together - the basis of semantic search.
Few-shot prompting
Showing the model two or three worked examples of the task inside the prompt, instead of only describing it.
Fine-tuning
Further training of an existing model on your own examples, to change its behaviour rather than its knowledge.
Hallucination
A confident, fluent answer that is simply wrong - an invented citation, function, statistic or fact.
Inference
Running a trained model to produce output - what happens every time you send a prompt.
Large language model LLM
A model trained on large amounts of text to predict the next token, which in practice lets it write, summarise, translate and reason over text.
Multimodal
A model that accepts or produces more than one kind of input - text plus images, audio or video.
Prompt injection
An attack where instructions hidden in content the model reads get executed as if you had written them.
Quantisation
Storing a model with lower-precision numbers so it fits in less memory and runs on ordinary hardware.