<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://barza.y2k.town/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=BobbyGeneric</id>
	<title>Barza - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://barza.y2k.town/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=BobbyGeneric"/>
	<link rel="alternate" type="text/html" href="https://barza.y2k.town/view/Special:Contributions/BobbyGeneric"/>
	<updated>2026-07-24T23:22:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=47</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=47"/>
		<updated>2026-02-28T02:48:54Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== News ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;On Tuesday, researchers at Stanford and Yale revealed something that AI companies would prefer to keep hidden. Four popular large language models—OpenAI’s GPT, Anthropic’s Claude, Google’s Gemini, and xAI’s Grok—have stored large portions of some of the books they’ve been trained on, and can reproduce long excerpts from those books.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;In fact, when prompted strategically by researchers, Claude delivered the near-complete text of &#039;&#039;Harry Potter and the Sorcerer’s Stone&#039;&#039;, &#039;&#039;The Great Gatsby&#039;&#039;, &#039;&#039;1984&#039;&#039;, and &#039;&#039;Frankenstein&#039;&#039;, in addition to thousands of words from books including &#039;&#039;The Hunger Games&#039;&#039; and &#039;&#039;The Catcher in the Rye&#039;&#039;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[https://www.theatlantic.com/technology/2026/01/ai-memorization-research/685552/?gift=oovWF8LV3gr7UxAU_wR7KCByWoXJuL6nibyWmch1C38 AI’s Memorization Crisis] — The Atlantic in 2026-01-09&lt;br /&gt;
&lt;br /&gt;
== AI Hype to Human ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You code you write should X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=46</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=46"/>
		<updated>2026-02-28T02:47:04Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== News ==&lt;br /&gt;
On Tuesday, researchers at Stanford and Yale revealed something that AI companies would prefer to keep hidden. Four popular large language models—OpenAI’s GPT, Anthropic’s Claude, Google’s Gemini, and xAI’s Grok—have stored large portions of some of the books they’ve been trained on, and can reproduce long excerpts from those books.&lt;br /&gt;
&lt;br /&gt;
In fact, when prompted strategically by researchers, Claude delivered the near-complete text of &#039;&#039;Harry Potter and the Sorcerer’s Stone&#039;&#039;, &#039;&#039;The Great Gatsby&#039;&#039;, &#039;&#039;1984&#039;&#039;, and &#039;&#039;Frankenstein&#039;&#039;, in addition to thousands of words from books including &#039;&#039;The Hunger Games&#039;&#039; and &#039;&#039;The Catcher in the Rye&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[https://www.theatlantic.com/technology/2026/01/ai-memorization-research/685552/?gift=oovWF8LV3gr7UxAU_wR7KCByWoXJuL6nibyWmch1C38 AI’s Memorization Crisis] — The Atlantic in 2026-01-09&lt;br /&gt;
&lt;br /&gt;
== AI Hype to Human ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You code you write should X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=45</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=45"/>
		<updated>2026-02-28T02:43:22Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== News ==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;On Tuesday, researchers at Stanford and Yale revealed something that AI companies would prefer to keep hidden. Four popular large language models—OpenAI’s GPT, Anthropic’s Claude, Google’s Gemini, and xAI’s Grok—have stored large portions of some of the books they’ve been trained on, and can reproduce long excerpts from those books.&lt;br /&gt;
&lt;br /&gt;
In fact, when prompted strategically by researchers, Claude delivered the near-complete text of &#039;&#039;Harry Potter and the Sorcerer’s Stone&#039;&#039;, &#039;&#039;The Great Gatsby&#039;&#039;, &#039;&#039;1984&#039;&#039;, and &#039;&#039;Frankenstein&#039;&#039;, in addition to thousands of words from books including &#039;&#039;The Hunger Games&#039;&#039; and &#039;&#039;The Catcher in the Rye&#039;&#039;.&amp;lt;/blockquote&amp;gt;[https://www.theatlantic.com/technology/2026/01/ai-memorization-research/685552/?gift=oovWF8LV3gr7UxAU_wR7KCByWoXJuL6nibyWmch1C38 AI’s Memorization Crisis] — The Atlantic in 2026-01-09&lt;br /&gt;
&lt;br /&gt;
== AI Hype to Human ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You code you write should X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=44</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=44"/>
		<updated>2026-02-28T02:43:14Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== News ==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;On Tuesday, researchers at Stanford and Yale revealed something that AI companies would prefer to keep hidden. Four popular large language models—OpenAI’s GPT, Anthropic’s Claude, Google’s Gemini, and xAI’s Grok—have stored large portions of some of the books they’ve been trained on, and can reproduce long excerpts from those books.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In fact, when prompted strategically by researchers, Claude delivered the near-complete text of &#039;&#039;Harry Potter and the Sorcerer’s Stone&#039;&#039;, &#039;&#039;The Great Gatsby&#039;&#039;, &#039;&#039;1984&#039;&#039;, and &#039;&#039;Frankenstein&#039;&#039;, in addition to thousands of words from books including &#039;&#039;The Hunger Games&#039;&#039; and &#039;&#039;The Catcher in the Rye&#039;&#039;.&amp;lt;/blockquote&amp;gt;[https://www.theatlantic.com/technology/2026/01/ai-memorization-research/685552/?gift=oovWF8LV3gr7UxAU_wR7KCByWoXJuL6nibyWmch1C38 AI’s Memorization Crisis] — The Atlantic in 2026-01-09&lt;br /&gt;
&lt;br /&gt;
== AI Hype to Human ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You code you write should X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=43</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=43"/>
		<updated>2026-02-28T02:43:06Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== News ==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;On Tuesday, researchers at Stanford and Yale revealed something that AI companies would prefer to keep hidden. Four popular large language models—OpenAI’s GPT, Anthropic’s Claude, Google’s Gemini, and xAI’s Grok—have stored large portions of some of the books they’ve been trained on, and can reproduce long excerpts from those books.&lt;br /&gt;
&lt;br /&gt;
In fact, when prompted strategically by researchers, Claude delivered the near-complete text of &#039;&#039;Harry Potter and the Sorcerer’s Stone&#039;&#039;, &#039;&#039;The Great Gatsby&#039;&#039;, &#039;&#039;1984&#039;&#039;, and &#039;&#039;Frankenstein&#039;&#039;, in addition to thousands of words from books including &#039;&#039;The Hunger Games&#039;&#039; and &#039;&#039;The Catcher in the Rye&#039;&#039;.&amp;lt;/blockquote&amp;gt;[https://www.theatlantic.com/technology/2026/01/ai-memorization-research/685552/?gift=oovWF8LV3gr7UxAU_wR7KCByWoXJuL6nibyWmch1C38 AI’s Memorization Crisis] — The Atlantic in 2026-01-09&lt;br /&gt;
&lt;br /&gt;
== AI Hype to Human ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You code you write should X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=42</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=42"/>
		<updated>2026-02-28T02:42:52Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== News ==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;On Tuesday, researchers at Stanford and Yale revealed something that AI companies would prefer to keep hidden. Four popular large language models—OpenAI’s GPT, Anthropic’s Claude, Google’s Gemini, and xAI’s Grok—have stored large portions of some of the books they’ve been trained on, and can reproduce long excerpts from those books.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In fact, when prompted strategically by researchers, Claude delivered the near-complete text of &#039;&#039;Harry Potter and the Sorcerer’s Stone&#039;&#039;, &#039;&#039;The Great Gatsby&#039;&#039;, &#039;&#039;1984&#039;&#039;, and &#039;&#039;Frankenstein&#039;&#039;, in addition to thousands of words from books including &#039;&#039;The Hunger Games&#039;&#039; and &#039;&#039;The Catcher in the Rye&#039;&#039;.&amp;lt;/blockquote&amp;gt;[https://www.theatlantic.com/technology/2026/01/ai-memorization-research/685552/?gift=oovWF8LV3gr7UxAU_wR7KCByWoXJuL6nibyWmch1C38 AI’s Memorization Crisis] — The Atlantic in 2026-01-09&lt;br /&gt;
&lt;br /&gt;
== AI Hype to Human ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You code you write should X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=41</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=41"/>
		<updated>2026-02-28T02:42:03Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== News ==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;On Tuesday, researchers at Stanford and Yale revealed something that AI companies would prefer to keep hidden. Four popular large language models—OpenAI’s GPT, Anthropic’s Claude, Google’s Gemini, and xAI’s Grok—have stored large portions of some of the books they’ve been trained on, and can reproduce long excerpts from those books.&lt;br /&gt;
&lt;br /&gt;
In fact, when prompted strategically by researchers, Claude delivered the near-complete text of &#039;&#039;Harry Potter and the Sorcerer’s Stone&#039;&#039;, &#039;&#039;The Great Gatsby&#039;&#039;, &#039;&#039;1984&#039;&#039;, and &#039;&#039;Frankenstein&#039;&#039;, in addition to thousands of words from books including &#039;&#039;The Hunger Games&#039;&#039; and &#039;&#039;The Catcher in the Rye&#039;&#039;.&amp;lt;/blockquote&amp;gt;[https://www.theatlantic.com/technology/2026/01/ai-memorization-research/685552/?gift=oovWF8LV3gr7UxAU_wR7KCByWoXJuL6nibyWmch1C38 AI’s Memorization Crisis] — The Atlantic in 2026-01-09&lt;br /&gt;
&lt;br /&gt;
== AI Hype to Human ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You code you write should X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=40</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=40"/>
		<updated>2026-02-25T14:11:46Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt; ==&lt;br /&gt;
Here you&#039;ll find a bit of everything. My interests and current obsessions. It&#039;s basically a scrapbook of random stuff that crosses my mind. A mix of facts and opinion written by myself to myself, but it may be useful for someone else, who knows? At least it&#039;s information written by a real person using &#039;&#039;natural intelligence&#039;&#039;™ (barely), not some fancy magic box pretending to be one. &lt;br /&gt;
&lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dpl&amp;gt;&lt;br /&gt;
  # https://dpl4.wikitide.org/wiki/General_usage_and_invocation_syntax&lt;br /&gt;
  namespace = 0&lt;br /&gt;
  mode = ordered&lt;br /&gt;
  ordermethod = lastedit&lt;br /&gt;
  order = descending&lt;br /&gt;
  count = 30&lt;br /&gt;
  addeditdate = true&lt;br /&gt;
  # userdateformat = Y-m-d&lt;br /&gt;
  format = ,* [[%PAGE%]] &amp;lt;small&amp;gt;— %DATE%&amp;lt;/small&amp;gt;\n,,&lt;br /&gt;
&amp;lt;/dpl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|days=365|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Dpl-tag-tracking-category&amp;diff=39</id>
		<title>MediaWiki:Dpl-tag-tracking-category</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Dpl-tag-tracking-category&amp;diff=39"/>
		<updated>2026-02-25T14:03:48Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: Created page with &amp;quot;-&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;-&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Dpl-tracking-category&amp;diff=38</id>
		<title>MediaWiki:Dpl-tracking-category</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Dpl-tracking-category&amp;diff=38"/>
		<updated>2026-02-25T14:03:40Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: Created page with &amp;quot;-&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;-&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Interesting_Wikipedia_Articles&amp;diff=37</id>
		<title>Interesting Wikipedia Articles</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Interesting_Wikipedia_Articles&amp;diff=37"/>
		<updated>2026-02-19T18:38:31Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: BobbyGeneric moved page Interesting Wikipedia Pages to Interesting Wikipedia Articles without leaving a redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;blockquote&amp;gt;&#039;&#039;&#039;[[wikipedia:Nekonomics|Nekonomics]]&#039;&#039;&#039; (ネコノミクス), a term blending &#039;&#039;neko&#039;&#039;, the Japanese word for &#039;&#039;cat&#039;&#039;, and &#039;&#039;economics&#039;&#039;, describes the phenomenon of cat-related economic consumption in Japan. This includes the sale of products marketed towards cat owners, the use of cat imagery to sell products, and the use of living cats to attract customers and tourists. While cats have always enjoyed popularity in Japanese culture, being seen as &#039;&#039;kawaii&#039;&#039; (cute) and associated with good health, their popularity and economic impact increased significantly in the early 21st century. The term &#039;&#039;nekonomics&#039;&#039; was created around 2015, a pun on Japan&#039;s Abenomics economic policy.&amp;lt;ref&amp;gt;https://en.wikipedia.org/wiki/Nekonomics&amp;lt;/ref&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=36</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=36"/>
		<updated>2026-02-19T18:37:27Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: /* What&amp;#039;s new? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt; ==&lt;br /&gt;
Here you&#039;ll find a bit of everything. My interests and current obsessions. It&#039;s basically a scrapbook of random stuff that crosses my mind. A mix of facts and opinion written by myself to myself, but it may be useful for someone else, who knows? At least it&#039;s information written by a real person using &#039;&#039;natural intelligence&#039;&#039;™ (barely), not some fancy magic box pretending to be one. &lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dpl&amp;gt;&lt;br /&gt;
  # https://dpl4.wikitide.org/wiki/General_usage_and_invocation_syntax&lt;br /&gt;
  namespace = 0&lt;br /&gt;
  mode = ordered&lt;br /&gt;
  ordermethod = lastedit&lt;br /&gt;
  order = descending&lt;br /&gt;
  count = 30&lt;br /&gt;
  addeditdate = true&lt;br /&gt;
  # userdateformat = Y-m-d&lt;br /&gt;
  format = ,* [[%PAGE%]] &amp;lt;small&amp;gt;— %DATE%&amp;lt;/small&amp;gt;\n,,&lt;br /&gt;
&amp;lt;/dpl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|days=365|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=35</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=35"/>
		<updated>2026-02-19T18:34:03Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: /* What&amp;#039;s new? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt; ==&lt;br /&gt;
Here you&#039;ll find a bit of everything. My interests and current obsessions. It&#039;s basically a scrapbook of random stuff that crosses my mind. A mix of facts and opinion written by myself to myself, but it may be useful for someone else, who knows? At least it&#039;s information written by a real person using &#039;&#039;natural intelligence&#039;&#039;™ (barely), not some fancy magic box pretending to be one. &lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dpl&amp;gt;&lt;br /&gt;
  # https://dpl4.wikitide.org/wiki/General_usage_and_invocation_syntax&lt;br /&gt;
  namespace = 0&lt;br /&gt;
  mode = ordered&lt;br /&gt;
  ordermethod = lastedit&lt;br /&gt;
  order = descending&lt;br /&gt;
  count = 30&lt;br /&gt;
  addeditdate = true&lt;br /&gt;
  # userdateformat = Y-m-d&lt;br /&gt;
  format = ,* [[%PAGE%]] &amp;lt;small&amp;gt;%DATE%&amp;lt;/small&amp;gt;\n,,&lt;br /&gt;
&amp;lt;/dpl&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|days=365|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=34</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=34"/>
		<updated>2026-02-19T18:32:09Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: /* What&amp;#039;s new? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt; ==&lt;br /&gt;
Here you&#039;ll find a bit of everything. My interests and current obsessions. It&#039;s basically a scrapbook of random stuff that crosses my mind. A mix of facts and opinion written by myself to myself, but it may be useful for someone else, who knows? At least it&#039;s information written by a real person using &#039;&#039;natural intelligence&#039;&#039;™ (barely), not some fancy magic box pretending to be one. &lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dpl&amp;gt;&lt;br /&gt;
  namespace = 0&lt;br /&gt;
  mode = ordered&lt;br /&gt;
  ordermethod = lastedit&lt;br /&gt;
  order = descending&lt;br /&gt;
  count = 30&lt;br /&gt;
  addeditdate = true&lt;br /&gt;
  userdateformat = Y-m-d&lt;br /&gt;
  format = ,* [[%PAGE%]] &amp;lt;small&amp;gt;%DATE%&amp;lt;/small&amp;gt;\n,,&lt;br /&gt;
&amp;lt;/dpl&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|days=365|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=33</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=33"/>
		<updated>2026-02-19T18:26:18Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: /* What&amp;#039;s new? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt; ==&lt;br /&gt;
Here you&#039;ll find a bit of everything. My interests and current obsessions. It&#039;s basically a scrapbook of random stuff that crosses my mind. A mix of facts and opinion written by myself to myself, but it may be useful for someone else, who knows? At least it&#039;s information written by a real person using &#039;&#039;natural intelligence&#039;&#039;™ (barely), not some fancy magic box pretending to be one. &lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dpl&amp;gt;&lt;br /&gt;
  namespace = 0&lt;br /&gt;
  ordermethod = lastedit&lt;br /&gt;
  order = descending&lt;br /&gt;
  count = 30&lt;br /&gt;
  mode = ordered&lt;br /&gt;
  addeditdate=true&lt;br /&gt;
  # Optional: formatted output&lt;br /&gt;
  format = ,* [[%PAGE%]] - %DATE%\n,,&lt;br /&gt;
&amp;lt;/dpl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|days=365|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Interesting_Wikipedia_Articles&amp;diff=32</id>
		<title>Interesting Wikipedia Articles</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Interesting_Wikipedia_Articles&amp;diff=32"/>
		<updated>2026-02-18T11:38:00Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;blockquote&amp;gt;&#039;&#039;&#039;[[wikipedia:Nekonomics|Nekonomics]]&#039;&#039;&#039; (ネコノミクス), a term blending &#039;&#039;neko&#039;&#039;, the Japanese word for &#039;&#039;cat&#039;&#039;, and &#039;&#039;economics&#039;&#039;, describes the phenomenon of cat-related economic consumption in Japan. This includes the sale of products marketed towards cat owners, the use of cat imagery to sell products, and the use of living cats to attract customers and tourists. While cats have always enjoyed popularity in Japanese culture, being seen as &#039;&#039;kawaii&#039;&#039; (cute) and associated with good health, their popularity and economic impact increased significantly in the early 21st century. The term &#039;&#039;nekonomics&#039;&#039; was created around 2015, a pun on Japan&#039;s Abenomics economic policy.&amp;lt;ref&amp;gt;https://en.wikipedia.org/wiki/Nekonomics&amp;lt;/ref&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Interesting_Wikipedia_Articles&amp;diff=31</id>
		<title>Interesting Wikipedia Articles</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Interesting_Wikipedia_Articles&amp;diff=31"/>
		<updated>2026-02-18T02:44:28Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: Created page with &amp;quot;&amp;lt;blockquote&amp;gt;&amp;#039;&amp;#039;&amp;#039;Nekonomics&amp;#039;&amp;#039;&amp;#039; (ネコノミクス), a term blending &amp;#039;&amp;#039;neko&amp;#039;&amp;#039;, the Japanese word for &amp;#039;&amp;#039;cat&amp;#039;&amp;#039;, and &amp;#039;&amp;#039;economics&amp;#039;&amp;#039;, describes the phenomenon of cat-related economic consumption in Japan. This includes the sale of products marketed towards cat owners, the use of cat imagery to sell products, and the use of living cats to attract customers and tourists. While cats have always enjoyed popularity in Japanese culture, being seen as &amp;#039;&amp;#039;kawaii...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;blockquote&amp;gt;&#039;&#039;&#039;[[wikipedia:Nekonomics|Nekonomics]]&#039;&#039;&#039; (ネコノミクス), a term blending &#039;&#039;neko&#039;&#039;, the Japanese word for &#039;&#039;cat&#039;&#039;, and &#039;&#039;economics&#039;&#039;, describes the phenomenon of cat-related economic consumption in Japan. This includes the sale of products marketed towards cat owners, the use of cat imagery to sell products, and the use of living cats to attract customers and tourists. While cats have always enjoyed popularity in Japanese culture, being seen as &#039;&#039;kawaii&#039;&#039; (cute) and associated with good health, their popularity and economic impact increased significantly in the early 21st century. The term &#039;&#039;nekonomics&#039;&#039; was created around 2015, a pun on Japan&#039;s Abenomics economic policy.&amp;lt;ref&amp;gt;https://en.wikipedia.org/wiki/Nekonomics&amp;lt;/ref&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=30</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=30"/>
		<updated>2026-02-10T20:26:16Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You code you write should X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=29</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=29"/>
		<updated>2026-02-10T20:25:15Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You should do X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=28</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=28"/>
		<updated>2026-02-10T20:24:41Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You should do X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=27</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=27"/>
		<updated>2026-02-10T20:24:03Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching.&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You should do X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=26</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=26"/>
		<updated>2026-02-10T20:22:51Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching. For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You should do X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use (on [https://claude.com/plugins Claude Code]).&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=25</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=25"/>
		<updated>2026-02-10T20:22:31Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching. For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You should do X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use on Claude Code.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=24</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=24"/>
		<updated>2026-02-10T20:10:00Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical stage where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|Chatbot&lt;br /&gt;
|An interface where you can type messages to be processed by the LLM and get its responses.&lt;br /&gt;
|-&lt;br /&gt;
|Agentic AI&lt;br /&gt;
|Different from Chatbots, Agentic AI makes multiple calls to the LLM to get progressively more complex answers before replying to the user. It can also call tools, such as web-searching. For example:&lt;br /&gt;
&lt;br /&gt;
# The user asks &amp;quot;I&#039;m going to Tokyo for a week, help me plan the trip&amp;quot;&lt;br /&gt;
# Instead of sending that to the LLM, the system sends &amp;quot;Build a plan to better answer the following: I&#039;m going to Tokyo for...&amp;quot;&lt;br /&gt;
# LLM replies with a list of tasks like &amp;quot;1 - Research top Tokyo attractions, 2 - Define must-eats, 3 - etc etc&amp;quot;&lt;br /&gt;
# The system then sends back the list and adds &amp;quot;Now, perform task 1&amp;quot;, then 2, then 3, etc&lt;br /&gt;
# Only when everything is done, it replies back to the user with the plan.&lt;br /&gt;
&lt;br /&gt;
This produces even more impressive results, despite still being just a text prediction machine.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model providers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, (Global) Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills, Commands&lt;br /&gt;
|Markdown files with generic instructions that can be reused.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|-&lt;br /&gt;
|Agent&lt;br /&gt;
|Markdown files defining a &amp;quot;persona&amp;quot; that an Agentic tool can use while performing a task.&lt;br /&gt;
&#039;&#039;For example: You&#039;re a Senior Developer implementing a new feature. You should do X, Y, Z.&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Claude Code Plugins&lt;br /&gt;
|A combination of Markdown files containing Commands, Agents, Skills and Hooks someone has bundled together for others to use.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=AI&amp;diff=23</id>
		<title>AI</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=AI&amp;diff=23"/>
		<updated>2026-02-10T18:29:12Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: Created page with &amp;quot;{| class=&amp;quot;wikitable&amp;quot; |+Oversimplified translation from AI Hype to Human language !Hype !Human |- |AI |Usually means LLMs. |- |LLM (Large Language Model) |A statistical model that can &amp;#039;&amp;#039;predict&amp;#039;&amp;#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to. |- |AGI (Artificial General Intelligence) |...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Oversimplified translation from AI Hype to Human language&lt;br /&gt;
!Hype&lt;br /&gt;
!Human&lt;br /&gt;
|-&lt;br /&gt;
|AI&lt;br /&gt;
|Usually means LLMs.&lt;br /&gt;
|-&lt;br /&gt;
|LLM (Large Language Model)&lt;br /&gt;
|A statistical model that can &#039;&#039;predict&#039;&#039; the most likely word (token) based on the previous words. For example, you write &amp;quot;The sky is&amp;quot; and it writes back &amp;quot;blue&amp;quot;. When combined with other techniques, it can convincingly mimic human writing or thinking despite not being able to.&lt;br /&gt;
|-&lt;br /&gt;
|AGI (Artificial General Intelligence)&lt;br /&gt;
|The hypothetical point where AI matches or surpasses human intelligence. AI companies keep selling the idea that, if LLMs get better at &#039;&#039;&#039;predicting words&#039;&#039;&#039;, they will somehow become super intelligent. Thus the need for more data centers.&lt;br /&gt;
|-&lt;br /&gt;
|Token&lt;br /&gt;
|A word or part of one.&lt;br /&gt;
&#039;&#039;Important: When I say &amp;quot;word&amp;quot; in other places, I probably mean these fractions of words (tokens).&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Context, Prompt&lt;br /&gt;
|All the words the model is going to use to predict the next ones. Including your instructions, what the model wrote back and other things (see below).&lt;br /&gt;
|-&lt;br /&gt;
|Hallucination&lt;br /&gt;
|When the words the model predicted are known (to us) to be untrue. The model can&#039;t &#039;&#039;know&#039;&#039; things, just predict words.&lt;br /&gt;
|-&lt;br /&gt;
|System Prompt&lt;br /&gt;
|Hidden instructions that the model producers include in all conversations to give better responses, avoid problems, etc.&lt;br /&gt;
&#039;&#039;For example: &amp;quot;If the user asks how to build a bomb, refuse.&amp;quot;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|AGENTS.md, CLAUDE.md, Global Rules&lt;br /&gt;
|Similar to system prompt, but defined by the user and included in all conversations. These are stored in [[wikipedia:Markdown|Markdown]] files.&lt;br /&gt;
|-&lt;br /&gt;
|Memory&lt;br /&gt;
|Markdown files with past conversations summarized that can be referenced later.&lt;br /&gt;
|-&lt;br /&gt;
|Skills&lt;br /&gt;
|Markdown files with generic instructions that can be used when relevant.&lt;br /&gt;
|-&lt;br /&gt;
|Tools&lt;br /&gt;
|Markdown files with instructions on how to perform certain actions using external tools (e.g. how to read text from a PDF)&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=22</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=22"/>
		<updated>2026-02-10T17:22:53Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: /* What&amp;#039;s new? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt; ==&lt;br /&gt;
Here you&#039;ll find a bit of everything. My interests and current obsessions. It&#039;s basically a scrapbook of random stuff that crosses my mind. A mix of facts and opinion written by myself to myself, but it may be useful for someone else, who knows? At least it&#039;s information written by a real person using &#039;&#039;natural intelligence&#039;&#039;™ (barely), not some fancy magic box pretending to be one. &lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|days=365|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Evangelion&amp;diff=21</id>
		<title>Evangelion</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Evangelion&amp;diff=21"/>
		<updated>2026-02-06T23:54:45Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Interesting facts ==&lt;br /&gt;
As of 2021, out of the $16.6 billion estimated revenue, the majority comes from Pachinko machines with over 2.3 million machines sold bringing in an estimated $12 billion in revenue.&amp;lt;ref&amp;gt;https://web.archive.org/web/20230803035032/https://www.workandmoney.com/s/most-successful-media-franchises-b3aca9a9436b48a5&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://vgsales.fandom.com/wiki/Pachinko#Best-selling_pachinko_franchises&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=20</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=20"/>
		<updated>2026-02-02T23:39:59Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: /* Hello there! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt; ==&lt;br /&gt;
Here you&#039;ll find a bit of everything. My interests and current obsessions. It&#039;s basically a scrapbook of random stuff that crosses my mind. A mix of facts and opinion written by myself to myself, but it may be useful for someone else, who knows? At least it&#039;s information written by a real person using &#039;&#039;natural intelligence&#039;&#039;™ (barely), not some fancy magic box pretending to be one. &lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=19</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=19"/>
		<updated>2026-02-02T23:39:03Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt; ==&lt;br /&gt;
Here you&#039;ll find a bit of everything. My interests and current obsessions. It&#039;s basically a scrapbook of random stuff that crosses my mind. A mix of facts and opinion written by myself to myself, but it may be useful for someone else, who knows? At least it&#039;s information written by a real person&#039;s &#039;&#039;natural intelligence&#039;&#039;™ (barely), not some fancy magic box pretending to be one. &lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=18</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=18"/>
		<updated>2026-02-02T22:50:34Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Clean Recent Changes Embed */&lt;br /&gt;
.clean-recent-changes {&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.clean-recent-changes .mw-changeslist-links,           /* Hides (diff | hist) */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-separator,       /* Hides separators . . */&lt;br /&gt;
.clean-recent-changes .mw-userlink,                    /* Hides username */&lt;br /&gt;
.clean-recent-changes .mw-usertoollinks,               /* Hides user talk/contribs */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-pos,               /* Hides (+123) green bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-neg,               /* Hides (-123) red bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-null,              /* Hides (0) gray bytes */&lt;br /&gt;
.clean-recent-changes .mw-tag-markers,                 /* Hide tags */&lt;br /&gt;
.clean-recent-changes .comment,                        /* Hides edit summary */&lt;br /&gt;
.clean-recent-changes .changedby,                      /* Hides thingy showing multiple edits */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-legend {         /* Hides abbreviations side panel */&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.clean-recent-changes .mw-enhancedchanges-arrow {      /* Hides arrow to expand multiple edits */&lt;br /&gt;
	visibility: hidden !important;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=17</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=17"/>
		<updated>2026-02-02T22:49:59Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Clean Recent Changes Embed */&lt;br /&gt;
.clean-recent-changes {&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.clean-recent-changes .mw-changeslist-links,           /* Hides (diff | hist) */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-separator,       /* Hides separators . . */&lt;br /&gt;
.clean-recent-changes .mw-userlink,                    /* Hides username */&lt;br /&gt;
.clean-recent-changes .mw-usertoollinks,               /* Hides user talk/contribs */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-pos,               /* Hides (+123) green bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-neg,               /* Hides (-123) red bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-null,              /* Hides (0) gray bytes */&lt;br /&gt;
.clean-recent-changes .mw-tag-markers,                 /* Hide tags */&lt;br /&gt;
.clean-recent-changes .comment,                        /* Hides edit summary */&lt;br /&gt;
.clean-recent-changes .changedby,                      /* Hides thingy showing multiple edits */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-legend {         /* Hides abbreviations side panel */&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.clean-recent-changes .newpage,                        /* New page badge */&lt;br /&gt;
.clean-recent-changes .mw-enhancedchanges-arrow {      /* Hides arrow to expand multiple edits */&lt;br /&gt;
	visibility: hidden !important;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Evangelion&amp;diff=16</id>
		<title>Evangelion</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Evangelion&amp;diff=16"/>
		<updated>2026-02-02T22:47:28Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: Created page with &amp;quot;== Interesting facts == As of 2021, out of the $16.6 billion estimated revenue, the majority comes from Pachinko machines with over 2.3 million machines sold bringing in an estimated $12 billion in revenue.&amp;lt;ref&amp;gt;https://web.archive.org/web/20230803035032/https://www.workandmoney.com/s/most-successful-media-franchises-b3aca9a9436b48a5&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://vgsales.fandom.com/wiki/Pachinko#Best-selling_pachinko_franchises&amp;lt;/ref&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Interesting facts ==&lt;br /&gt;
As of 2021, out of the $16.6 billion estimated revenue, the majority comes from Pachinko machines with over 2.3 million machines sold bringing in an estimated $12 billion in revenue.&amp;lt;ref&amp;gt;https://web.archive.org/web/20230803035032/https://www.workandmoney.com/s/most-successful-media-franchises-b3aca9a9436b48a5&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://vgsales.fandom.com/wiki/Pachinko#Best-selling_pachinko_franchises&amp;lt;/ref&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=15</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=15"/>
		<updated>2026-02-02T21:38:39Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Clean Recent Changes Embed */&lt;br /&gt;
.clean-recent-changes {&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.clean-recent-changes .mw-changeslist-links,           /* Hides (diff | hist) */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-separator,       /* Hides separators . . */&lt;br /&gt;
.clean-recent-changes .mw-userlink,                    /* Hides username */&lt;br /&gt;
.clean-recent-changes .mw-usertoollinks,               /* Hides user talk/contribs */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-pos,               /* Hides (+123) green bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-neg,               /* Hides (-123) red bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-null,              /* Hides (0) gray bytes */&lt;br /&gt;
.clean-recent-changes .mw-tag-markers,                 /* Hide tags */&lt;br /&gt;
.clean-recent-changes .comment,                        /* Hides edit summary */&lt;br /&gt;
.clean-recent-changes .changedby,                      /* Hides thingy showing multiple edits */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-legend {         /* Hides abbreviations side panel */&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.clean-recent-changes .mw-enhancedchanges-arrow {&lt;br /&gt;
	visibility: hidden !important;                     /* Hides arrow to expand multiple edits */&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=14</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=14"/>
		<updated>2026-01-31T20:44:47Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Clean Recent Changes Embed */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-links,           /* Hides (diff | hist) */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-separator,       /* Hides separators . . */&lt;br /&gt;
.clean-recent-changes .mw-userlink,                    /* Hides username */&lt;br /&gt;
.clean-recent-changes .mw-usertoollinks,               /* Hides user talk/contribs */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-pos,               /* Hides (+123) green bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-neg,               /* Hides (-123) red bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-null,              /* Hides (0) gray bytes */&lt;br /&gt;
.clean-recent-changes .mw-tag-markers,                 /* Hide tags */&lt;br /&gt;
.clean-recent-changes .comment,                        /* Hides edit summary */&lt;br /&gt;
.clean-recent-changes .changedby,                      /* Hides thingy showing multiple edits */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-legend {         /* Hides abbreviations side panel */&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.clean-recent-changes .mw-enhancedchanges-arrow {&lt;br /&gt;
	visibility: hidden !important;                     /* Hides arrow to expand multiple edits */&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=File:Stay_Hungry._Stay_Foolish..jpg&amp;diff=13</id>
		<title>File:Stay Hungry. Stay Foolish..jpg</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=File:Stay_Hungry._Stay_Foolish..jpg&amp;diff=13"/>
		<updated>2026-01-31T14:03:28Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=12</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=12"/>
		<updated>2026-01-31T14:02:52Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt;&lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|&amp;quot;Stay Hungry. Stay Foolish.&amp;quot; from the back cover of the Whole Earth Catalog, published in October 1974.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=11</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=11"/>
		<updated>2026-01-31T14:01:09Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt;&lt;br /&gt;
[[File:Stay Hungry. Stay Foolish..jpg|thumb|Stay Hungry. Stay Foolish.]]&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=File:Stay_Hungry._Stay_Foolish..jpg&amp;diff=10</id>
		<title>File:Stay Hungry. Stay Foolish..jpg</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=File:Stay_Hungry._Stay_Foolish..jpg&amp;diff=10"/>
		<updated>2026-01-31T14:00:33Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The back cover of the Whole Earth Catalog published in October 1974.&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=9</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=9"/>
		<updated>2026-01-30T10:03:08Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Clean Recent Changes Embed */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-links,           /* Hides (diff | hist) */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-separator,       /* Hides separators . . */&lt;br /&gt;
.clean-recent-changes .mw-userlink,                    /* Hides username */&lt;br /&gt;
.clean-recent-changes .mw-usertoollinks,               /* Hides user talk/contribs */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-pos,               /* Hides (+123) green bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-neg,               /* Hides (-123) red bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-null,              /* Hides (0) gray bytes */&lt;br /&gt;
.clean-recent-changes .mw-tag-markers,                 /* Hide tags */&lt;br /&gt;
.clean-recent-changes .comment,                        /* Hides edit summary */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-legend {         /* Hides abbreviations side panel */&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=8</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=8"/>
		<updated>2026-01-30T10:00:47Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Clean Recent Changes Embed */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-links,           /* Hides (diff | hist) */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-separator,       /* Hides separators . . */&lt;br /&gt;
.clean-recent-changes .mw-userlink,                    /* Hides username */&lt;br /&gt;
.clean-recent-changes .mw-usertoollinks,               /* Hides user talk/contribs */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-pos,               /* Hides (+123) green bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-neg,               /* Hides (-123) red bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-null,              /* Hides (0) gray bytes */&lt;br /&gt;
.clean-recent-changes .mw-tag-markers,                 /* Hide tags */&lt;br /&gt;
.clean-recent-changes .comment {                       /* Hides edit summary */&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=7</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=7"/>
		<updated>2026-01-30T09:57:46Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Clean Recent Changes Embed */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-links,           /* Hides (diff | hist) */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-separator,       /* Hides separators . . */&lt;br /&gt;
.clean-recent-changes .mw-userlink,                    /* Hides username */&lt;br /&gt;
.clean-recent-changes .mw-usertoollinks,               /* Hides user talk/contribs */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-pos,               /* Hides (+123) green bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-neg,               /* Hides (-123) red bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-null,              /* Hides (0) gray bytes */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-line-inner-tags, /* Hide tags */&lt;br /&gt;
.clean-recent-changes .comment {                       /* Hides edit summary */&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=6</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=MediaWiki:Common.css&amp;diff=6"/>
		<updated>2026-01-30T09:56:20Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: Created page with &amp;quot;/* CSS placed here will be applied to all skins */  /* Clean Recent Changes Embed */ .clean-recent-changes .mw-changeslist-links,          /* Hides (diff | hist) */ .clean-recent-changes .mw-changeslist-separator,      /* Hides separators . . */ .clean-recent-changes .mw-userlink,                   /* Hides username */ .clean-recent-changes .mw-usertoollinks,              /* Hides user talk/contribs */ .clean-recent-changes .mw-plusminus-pos,              /* Hides (+123)...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Clean Recent Changes Embed */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-links,          /* Hides (diff | hist) */&lt;br /&gt;
.clean-recent-changes .mw-changeslist-separator,      /* Hides separators . . */&lt;br /&gt;
.clean-recent-changes .mw-userlink,                   /* Hides username */&lt;br /&gt;
.clean-recent-changes .mw-usertoollinks,              /* Hides user talk/contribs */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-pos,              /* Hides (+123) green bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-neg,              /* Hides (-123) red bytes */&lt;br /&gt;
.clean-recent-changes .mw-plusminus-null,             /* Hides (0) gray bytes */&lt;br /&gt;
.clean-recent-changes .comment {                      /* Hides edit summary */&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=5</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=5"/>
		<updated>2026-01-30T09:55:14Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: /* What&amp;#039;s new? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;clean-recent-changes&amp;quot;&amp;gt;&lt;br /&gt;
{{Special:RecentChanges|limit=10|namespace=0|hideminor=1}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Genius&amp;diff=4</id>
		<title>Genius</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Genius&amp;diff=4"/>
		<updated>2026-01-30T09:26:04Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &amp;quot;Genius&amp;quot; is a mythological creature from the folklore of the United States. This creature is more often represented as a white human male that posses superhuman powers that gives them the ability of extraordinary achievements no regular human is capable of. This folklore is commonly used to hide the reality that said achievements were only possible through the collaboration and hard work of a larger group, not a single individual, or that they had access to resources (e.g. inheritance) that other people rarely have.&lt;br /&gt;
&lt;br /&gt;
== Famous Examples ==&lt;br /&gt;
&lt;br /&gt;
* x&lt;br /&gt;
* y&lt;br /&gt;
* z&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Genius&amp;diff=3</id>
		<title>Genius</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Genius&amp;diff=3"/>
		<updated>2026-01-30T09:10:47Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: Created page with &amp;quot;A &amp;quot;Genius&amp;quot; is a mythological creature from the folklore of the United States. This creature is more often represented as a white human male that posses superhuman powers that gives them the ability of extraordinary achievements no regular human is capable of. This folklore is commonly used to hide the reality that said achievements were only possible through the collaboration and hard work of a larger group, not a single individual, or that they had access to resources (...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &amp;quot;Genius&amp;quot; is a mythological creature from the folklore of the United States. This creature is more often represented as a white human male that posses superhuman powers that gives them the ability of extraordinary achievements no regular human is capable of. This folklore is commonly used to hide the reality that said achievements were only possible through the collaboration and hard work of a larger group, not a single individual, or that they had access to resources (e.g. inheritance) that other people rarely have.&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
	<entry>
		<id>https://barza.y2k.town/index.php?title=Main_Page&amp;diff=2</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://barza.y2k.town/index.php?title=Main_Page&amp;diff=2"/>
		<updated>2026-01-30T09:00:32Z</updated>

		<summary type="html">&lt;p&gt;BobbyGeneric: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Hello there!&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== What&#039;s new? ==&lt;br /&gt;
&lt;br /&gt;
{{Special:RecentChanges|limit=10|hidelog=1}}&lt;/div&gt;</summary>
		<author><name>BobbyGeneric</name></author>
	</entry>
</feed>