Tags with descriptions

Owned by simonw, visibility: Public

SQL query
WITH tag_counts AS (
  SELECT 
    tag, 
    description,
    (SELECT count(DISTINCT entry_id) 
     FROM blog_entry_tags 
     WHERE blog_entry_tags.tag_id = blog_tag.id) AS entry_count,
    (SELECT count(DISTINCT blogmark_id) 
     FROM blog_blogmark_tags 
     WHERE blog_blogmark_tags.tag_id = blog_tag.id) AS blogmark_count,
    (SELECT count(DISTINCT quotation_id) 
     FROM blog_quotation_tags 
     WHERE blog_quotation_tags.tag_id = blog_tag.id) AS quotation_count
  FROM blog_tag
  WHERE description IS NOT NULL AND description != ''
)
SELECT 
  tag,
  'https://simonwillison.net/tags/' || tag || '/' as url,
  description,
  (entry_count + blogmark_count + quotation_count) AS post_count,
  entry_count,
  blogmark_count,
  quotation_count
FROM tag_counts

64 rows

tag url description post_count entry_count blogmark_count quotation_count
clip https://simonwillison.net/tags/clip/ [CLIP](https://github.com/openai/CLIP) is an embedding model by OpenAI that supports comparisons between images and text. 8 2 6 0
claude-artifacts https://simonwillison.net/tags/claude-artifacts/ A feature of [Claude](https://claude.ai/) where it can create shareable, executable HTML and JavaScript pages. 16 6 9 1
annotated-release-notes https://simonwillison.net/tags/annotated-release-notes/ I sometimes publish extended annotated versions of the release notes for my projects. 24 22 2 0
evals https://simonwillison.net/tags/evals/ Evaluations and benchmarks of AI systems, for example to compare different models and prompting strategies. 5 1 4 0
marimo https://simonwillison.net/tags/marimo/ [Marimo](https://marimo.io/) is an open-source reactive notebook for Python. 4 0 4 0
weeknotes https://simonwillison.net/tags/weeknotes/ I publish weeknotes once every two or three weeks documenting what I've been working on recently. 188 188 0 0
datasette-cloud https://simonwillison.net/tags/datasette-cloud/ The SaaS hosted version of Datasette, at [datasette.cloud](https://www.datasette.cloud/) 43 32 11 0
s3-credentials https://simonwillison.net/tags/s3-credentials/ [s3-credentials](https://s3-credentials.readthedocs.io/) is a CLI tool for creating and managing credentials for S3 buckets. 9 7 2 0
llm-tool-use https://simonwillison.net/tags/llm-tool-use/ Tool use is when an LLM is instructed to occasionally request that an external tool be run on its behalf, with the result passed back to the model for further processing. Sometimes also known as function calling, and one of several ideas that might be referred to as "agents". 6 0 6 0
ham-radio https://simonwillison.net/tags/ham-radio/ The [amateur radio](https://en.wikipedia.org/wiki/Amateur_radio) hobby. 3 0 3 0
llm https://simonwillison.net/tags/llm/ [LLM](https://llm.datasette.io/) is my command-line tool for running prompts against Large Language Models. 82 37 44 1
recall https://simonwillison.net/tags/recall/ Microsoft Recall is a feature planned for Windows 11 that allows users to search through automated screenshots taken of their previous activity on their PC. 4 0 3 1
rag https://simonwillison.net/tags/rag/ RAG stands for **Retrieval Augmented Generation**. It's a trick where you find additional context relevant to the user's request using other means (such as full-text or vector search) and populate that context as part of the prompt to a Large Language Model. 24 8 13 3
projects https://simonwillison.net/tags/projects/ Posts about projects I have worked on. 428 241 187 0
datasette https://simonwillison.net/tags/datasette/ [Datasette](https://datasette.io/) is an open source tool for exploring and publishing data. 415 232 181 2
claude https://simonwillison.net/tags/claude/ [Claude](https://www.anthropic.com/claude) is Anthropic's family of Large Language Models. 91 20 59 12
anthropic https://simonwillison.net/tags/anthropic/ [Anthropic](https://www.anthropic.com/) are the AI research company behind [Claude](https://claude.ai/). 86 19 52 15
llms https://simonwillison.net/tags/llms/ Large Language Models (LLMs) are the class of technology behind generative text AI systems like OpenAI's [ChatGPT](https://simonwillison.net/tags/chatgpt/), Google's [Gemini](https://simonwillison.net/tags/gemini/) and Anthropic's [Claude](https://simonwillison.net/tags/claude/). 718 116 431 171
openai https://simonwillison.net/tags/openai/ [OpenAI](https://openai.com/) build [ChatGPT](https://chatgpt.com/) and the GPT series of Large Language Models. 201 51 115 35
mistral https://simonwillison.net/tags/mistral/ [Mistral AI](https://mistral.ai/) release both openly licensed and API-hosted Language Models. 18 3 14 1
boring-technology https://simonwillison.net/tags/boring-technology/ [boringtechnology.club](https://boringtechnology.club/) 6 3 3 0
homebrew-llms https://simonwillison.net/tags/homebrew-llms/ LLMs you can run on your own devices. 53 14 37 2
datasette-lite https://simonwillison.net/tags/datasette-lite/ Datasette running entirely in the browser using Pyodide and WebAssembly, at [lite.datasette.io](https://lite.datasette.io/) 15 12 3 0
sqlite-utils https://simonwillison.net/tags/sqlite-utils/ [sqlite-utils](https://sqlite-utils.datasette.io/) is a Python library and command-line utility for creating and manipulating SQLite databases. 85 59 26 0
shot-scraper https://simonwillison.net/tags/shot-scraper/ [shot-scraper](https://shot-scraper.datasette.io/) is a command-line utility for taking screenshots of websites and scraping content from them using JavaScript. 25 13 12 0
training-data https://simonwillison.net/tags/training-data/ Data used to train LLMs and other machine learning models. 38 8 20 10
sqlite https://simonwillison.net/tags/sqlite/ [SQLite](https://www.sqlite.org/) is the world's [most widely deployed database engine](https://www.sqlite.org/mostdeployed.html). 279 73 191 15
embeddings https://simonwillison.net/tags/embeddings/ See [Embeddings: What they are and why they matter](https://simonwillison.net/2023/Oct/23/embeddings/). 40 6 34 0
nomic https://simonwillison.net/tags/nomic/ [Nomic AI](https://www.nomic.ai) develop various interesting AI projects, including [GPT4All](https://gpt4all.io/) and powerful [embedding models](https://gpt4all.io/). 5 0 5 0
python https://simonwillison.net/tags/python/ The [Python](https://www.python.org/) programming language. 1053 188 838 27
o1 https://simonwillison.net/tags/o1/ OpenAI’s [o1 family](https://openai.com/o1/) of models. 8 1 3 4
psf https://simonwillison.net/tags/psf/ The [Python Software Foundation](https://www.python.org/psf-landing/) is the non-profit organization devoted to advancing open source technology related to the Python programming language. 11 4 7 0
dsf https://simonwillison.net/tags/dsf/ The [Django Software Foundation](https://www.djangoproject.com/foundation/). 10 1 8 1
ladybird https://simonwillison.net/tags/ladybird/ [Ladybird](https://ladybird.org/) is "a truly independent web browser". 5 0 4 1
beeware https://simonwillison.net/tags/beeware/ [BeeWare](https://beeware.org/) "allows you to write your app in Python and release it on multiple platforms". 3 0 3 0
vs-code https://simonwillison.net/tags/vs-code/ Microsoft's partially open source text editor [Visual Studio Code](https://code.visualstudio.com/). 4 0 4 0
markdown-exfiltration https://simonwillison.net/tags/markdown-exfiltration/ **Markdown Exfiltration** is a [prompt injection](https://simonwillison.net/tags/promptinjection/) attack against chatbots that have access to private information and can render Markdown images. An attacker can trick the bot into rendering an image that leaks data encoded in the URL to an external server. 12 2 10 0
val-town https://simonwillison.net/tags/val-town/ [Val Town](https://www.val.town/) provides a web interface for building, running and deploying server-side JavaScript apps. 5 1 4 0
prompt-injection https://simonwillison.net/tags/prompt-injection/ **Prompt Injection** is a security attack against applications built on top of Large Language Models, [introduced here](https://simonwillison.net/2022/Sep/12/prompt-injection/) and further described in [this series of posts](https://simonwillison.net/series/prompt-injection/). 73 21 43 9
overture https://simonwillison.net/tags/overture/ [Overture](https://overturemaps.org/) provides interoperable open map data. 6 1 5 0
code-interpreter https://simonwillison.net/tags/code-interpreter/ ChatGPT Code Interpreter is a mode of [ChatGPT](https://chatgpt.com/) that allows it to write and then execute Python code in a sandboxed environment. OpenAI sometimes call this feature [data analysis](https://help.openai.com/en/articles/8437071-data-analysis-with-chatgpt). 17 12 5 0
chrome https://simonwillison.net/tags/chrome/ Google's [Chrome](https://www.google.com/chrome/) browser. 30 3 20 7
slop https://simonwillison.net/tags/slop/ **Slop** describes AI-generated content that is both *unrequested* and *unreviewed*. See [Slop is the new name for unwanted AI-generated content](https://simonwillison.net/2024/May/8/slop/). 12 2 8 2
llamafile https://simonwillison.net/tags/llamafile/ [llamafile](https://github.com/Mozilla-Ocho/llamafile) provides a mechanism to distribute and run LLMs as a single file. 6 4 2 0
django https://simonwillison.net/tags/django/ The [Django](https://www.djangoproject.com/) web framework. 564 100 451 13
go https://simonwillison.net/tags/go/ The [Go](https://go.dev/) programming language. 35 4 28 3
ai-assisted-programming https://simonwillison.net/tags/ai-assisted-programming/ Using AI tools such as Large Language Models to help write code. 71 25 38 8
command-r https://simonwillison.net/tags/command-r/ The [Command R](https://cohere.com/command) family of language models from Cohere. 2 0 2 0
github-codespaces https://simonwillison.net/tags/github-codespaces/ [GitHub Codespaces](https://github.com/features/codespaces) provides cloud development environments accessible through a browser. 10 3 7 0
annotated-talks https://simonwillison.net/tags/annotated-talks/ Annotated versions of talks I have given, with extensive notes and additional links. Here's [how I make these](https://simonwillison.net/2023/Aug/6/annotated-presentations/). 23 23 0 0
datasette-desktop https://simonwillison.net/tags/datasette-desktop/ Datasette as an Electron desktop application, at [datasette.io/desktop](https://datasette.io/desktop) 6 5 1 0
vision-llms https://simonwillison.net/tags/vision-llms/ LLMs that can also be used to interpret images and video, such as GPT-4o, Claude 3 and Gemini Pro. 22 4 17 1
prompt-engineering https://simonwillison.net/tags/prompt-engineering/ The subtle art and craft of effectively prompting and building software on top of LLMs. 97 26 52 19
github-copilot https://simonwillison.net/tags/github-copilot/ [GitHub Copilot](https://github.com/features/copilot) is GitHub's extension for VS Code that uses LLMs to provide context-driven code completion suggestions. 11 4 6 1
github-actions https://simonwillison.net/tags/github-actions/ GitHub's [Actions](https://github.com/features/actions) tool for repository automation. 45 25 20 0
git-history https://simonwillison.net/tags/git-history/ [git-history](https://github.com/simonw/git-history) is a tool for analyzing data scraped to a GitHub repository using SQLite. 6 5 1 0
djp https://simonwillison.net/tags/djp/ [DJP](https://djp.readthedocs.io/) is a plugin system for Django. 4 2 2 0
git-scraping https://simonwillison.net/tags/git-scraping/ [Git scraping](https://simonwillison.net/2020/Oct/9/git-scraping/) is a technique where data is scraped from an external source into a Git repository in order to record changes to that data over time. 29 22 7 0
django-sql-dashboard https://simonwillison.net/tags/django-sql-dashboard/ [Django SQL Dashboard](https://django-sql-dashboard.datasette.io) adds a read-only PostgreSQL SQL dashboard interface to a Django project. 13 8 5 0
mlx https://simonwillison.net/tags/mlx/ The [MLX framework](https://github.com/ml-explore/mlx) for running machine learning models on Apple Silicon. 3 0 3 0
notebooklm https://simonwillison.net/tags/notebooklm/ Google's [NotebookLM](https://notebooklm.google/) "personalized research assistant". 4 1 2 1
observable-plot https://simonwillison.net/tags/observable-plot/ The <a href="https://observablehq.com/plot/">Observable Plot</a> JavaScript visualization library. 9 1 8 0
gpus https://simonwillison.net/tags/gpus/ GPUs aren't just for graphics anymore. 12 0 9 3
ai-agents https://simonwillison.net/tags/ai-agents/ I don't think the term "agents" has a useful, widely shared definition. 10 2 5 3
Copy and export data

Duration: 8.48ms