<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Arthur&#39;s Blog</title>
    <link>https://clune.org/</link>
    <description>Recent content on Arthur&#39;s Blog</description>
    <image>
      <title>Arthur&#39;s Blog</title>
      <url>https://clune.org/images/header.jpg</url>
      <link>https://clune.org/images/header.jpg</link>
    </image>
    <generator>Hugo -- 0.146.6</generator>
    <language>en</language>
    <copyright>Arthur Clune</copyright>
    <lastBuildDate>Sat, 10 Jan 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://clune.org/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Claude Code - The Missing Manual</title>
      <link>https://clune.org/posts/claude-code-the-missing-manual/</link>
      <pubDate>Sat, 10 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/claude-code-the-missing-manual/</guid>
      <description>&lt;p&gt;A guide on getting productive with Claude Code, Anthropic&amp;rsquo;s agentic coding tool.
This is an update to my &lt;a href=&#34;https://clune.org/posts/claude-code-manual/&#34;&gt;original post&lt;/a&gt; from mid-2025, incorporating newer patterns around plugins, issue tracking, and skills.&lt;/p&gt;
&lt;h2 id=&#34;installation&#34;&gt;Installation&lt;/h2&gt;
&lt;p&gt;You&amp;rsquo;ll need an either an API key or a Pro/Max subscription. On first start, claude will ask you which you want -
I recommend the latter to avoid unmanaged costs. To use a subscription, be logged in to &lt;a href=&#34;https://claude.ai&#34;&gt;https://claude.ai&lt;/a&gt; in a browser and follow the instructions.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Synthetic Publics Will Fail Confidently</title>
      <link>https://clune.org/posts/synthetic-publics-will-fail-confidently/</link>
      <pubDate>Fri, 02 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/synthetic-publics-will-fail-confidently/</guid>
      <description>&lt;p&gt;By chance I read two articles at a similar time that join up nicely.&lt;/p&gt;
&lt;p&gt;First an academic paper &lt;a href=&#34;https://www.pnas.org/doi/10.1073/pnas.2518075122&#34;&gt;The potential existential threat of large language models to online survey research&lt;/a&gt;, by Sean Westwood.&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Westwood demonstrates that autonomous AI agents can complete surveys with a 99.8% pass rate on attention checks, logic puzzles, and other standard bot detection methods.
His bot maintains a consistent persona, can remembers its prior answers and calibrates its vocabulary and spelling errors to match its assigned education level. It strategically refuses superhuman tasks to avoid revealing itself.&lt;sup id=&#34;fnref:2&#34;&gt;&lt;a href=&#34;#fn:2&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;2&lt;/a&gt;&lt;/sup&gt; and only a small number of synthetic respondents can be sufficient to flip a poll&amp;rsquo;s predicted winner.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Context Engineering for Claude Code</title>
      <link>https://clune.org/posts/anthropic-context-engineering/</link>
      <pubDate>Thu, 27 Nov 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/anthropic-context-engineering/</guid>
      <description>&lt;p&gt;On Tuesday I did a talk to our internal AI group, along with talks by excellent colleagues, on Context Engineering. The very next day, Anthropic released a blog post on &lt;a href=&#34;https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents&#34;&gt;Effective harnesses for long-running agents&lt;/a&gt; and updated their &lt;a href=&#34;https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/claude-4-best-practices#multi-context-window-workflows&#34;&gt;prompting best practices guide&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Note to Anthropic: please can you release relevant material the day before I do a talk rather than afterwards!&lt;/p&gt;
&lt;p&gt;I talked about managing context size, how LLM accuracy declines as the context window fills past 50% and my mental model of LLMs as amnesiac pedants, and how this drives Claude Code features like it&amp;rsquo;s heavy use of todo lists, summarising context into markdown files etc.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating Claude Code Plugins</title>
      <link>https://clune.org/posts/creating-claude-code-plugins/</link>
      <pubDate>Sun, 12 Oct 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/creating-claude-code-plugins/</guid>
      <description>&lt;p&gt;On Friday Simon Willison &lt;a href=&#34;https://simonwillison.net/2025/Oct/10/superpowers/&#34;&gt;published a look&lt;/a&gt; at Jesse Vincent&amp;rsquo;s&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt; &lt;a href=&#34;https://simonwillison.net/2025/Oct/10/superpowers/&#34;&gt;Superpowers plugin for Claude&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You can read Simon&amp;rsquo;s and Jesse&amp;rsquo;s posts to see what this super cool plugin does, but I wanted to understand how to create a plugin and this is quick summary of my notes.&lt;/p&gt;
&lt;p&gt;First up, Jesse uses a complex structure with three repos:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/obra/superpowers-marketplace&#34;&gt;Marketplace&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/obra/superpowers&#34;&gt;Plugin&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/obra/superpowers-skills&#34;&gt;Skills&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&amp;rsquo;s setup this way to allow for contributions, but if you just want to play with creating a plugin, it&amp;rsquo;s not needed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Shorts, June 2026</title>
      <link>https://clune.org/posts/shorts-june-2026/</link>
      <pubDate>Thu, 26 Jun 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/shorts-june-2026/</guid>
      <description>&lt;p&gt;Trying out a new format this week. Instead of links, here&amp;rsquo;s some shorts. Too little for a post, too much for a link.
This week we have&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&#34;https://clune.org/posts/shorts-june-2026/#power-variation-in-ai-data-centres&#34;&gt;Power variation in AI data centres&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://clune.org/posts/shorts-june-2026/#adopting-new-cli-tools&#34;&gt;Adopting new CLI tools&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://clune.org/posts/shorts-june-2026/#historical-maps&#34;&gt;Historical maps&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;power-variation-in-ai-data-centres&#34;&gt;&lt;a href=&#34;https://semianalysis.com/2025/06/25/ai-training-load-fluctuations-at-gigawatt-scale-risk-of-power-grid-blackout/&#34;&gt;Power variation in AI data centres&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;(Link requires registration and full article isn&amp;rsquo;t free, but there&amp;rsquo;s a massive preview which is all I have access to)&lt;/p&gt;
&lt;p&gt;A new to me issue with AI workloads - training runs are very, very spiky in their power use.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Getting started with the Anthropic Cookbook and Marimo</title>
      <link>https://clune.org/posts/setting-up-marimo-and-anthropic/</link>
      <pubDate>Tue, 10 Jun 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/setting-up-marimo-and-anthropic/</guid>
      <description>&lt;p&gt;The &lt;a href=&#34;https://github.com/anthropics/anthropic-cookbook&#34;&gt;Anthropic Cookbook&lt;/a&gt; is an excellent
resource for learning how to write LLM code and it&amp;rsquo;s continually being updated, most recently
with &lt;a href=&#34;https://github.com/anthropics/anthropic-cookbook/tree/main/patterns/agents&#34;&gt;example code for agents&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The Cookbook comes as a set of &lt;a href=&#34;https://jupyter.org/&#34;&gt;Jupyter&lt;/a&gt; notebooks. I prefer &lt;a href=&#34;https://marimo.io/&#34;&gt;Marimo&lt;/a&gt;
to Jupyter, mainly because it supports reactive cell reloading i.e. if you change an earlier notebook
cell that a later cell depends on, the chain of dependencies is calculated and everything is re-run
correctly which saves a lot of mental energy and stupid mistakes when working with notebooks.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HEPI Report on AI in Higher Education</title>
      <link>https://clune.org/posts/ai-and-education/</link>
      <pubDate>Wed, 04 Jun 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/ai-and-education/</guid>
      <description>&lt;p&gt;HEPI, a UK higher ed thinktank, released the results from their 2025 survey of AI use by students. There&amp;rsquo;s a lot
in the report, so here&amp;rsquo;s a few quick highlights.&lt;/p&gt;
&lt;p&gt;The big headline is that basically all students are using genAI:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In 2025, we find that the student use of AI has surged in the last year, with almost all students (92%) now using AI in some form, up from 66% in 2024, and some 88% having used GenAI for assessments, up from 53% in 2024. The main uses of GenAI are explaining concepts, summarising articles and suggesting research ideas, but a significant number of students – 18% – have included AI-generated text directly in their work.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Links, 4th June 2025</title>
      <link>https://clune.org/posts/links-2025-06-04/</link>
      <pubDate>Wed, 04 Jun 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/links-2025-06-04/</guid>
      <description>&lt;p&gt;This week we have drones in Ukraine and SpaceX&amp;rsquo;s totally-not-a-cock rocket.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The use of drones in Ukraine is advancing the state of the art very, very rapidly. First we had
drones trailing fibre optic cables to avoid jamming, now there&amp;rsquo;s drones that navigate via camera and landmarks
and, very shortly, autonomous kill decisions:
&lt;a href=&#34;https://spectrum.ieee.org/ukraine-killer-drones&#34;&gt;IEEE Spectrum - Ukraine&amp;rsquo;s Killer Drones&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;/li&gt;
&lt;li&gt;A very hot take on Starship, SpaceX&amp;rsquo;s big &amp;ldquo;go to Mars&amp;rdquo; rocket:
&lt;a href=&#34;https://www.planetearthandbeyond.co/p/starship-was-doomed-from-the-beginning&#34;&gt;Starship was doomed from the start&lt;/a&gt;.
I&amp;rsquo;m not informed
enough to assess the post&amp;rsquo;s validity, but the thesis is that Starship is just too heavy, and that
making it lighter makes it too fragile in ways that just can&amp;rsquo;t be fixed. There&amp;rsquo;s updates as well -
&lt;a href=&#34;https://www.planetearthandbeyond.co/p/spacex-has-finally-figured-out-why-63b&#34;&gt;1&lt;/a&gt; and
&lt;a href=&#34;https://www.planetearthandbeyond.co/p/starship-dead-end&#34;&gt;2&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description>
    </item>
    <item>
      <title>Another look at per token energy costs</title>
      <link>https://clune.org/posts/per-token-energy-costs-again/</link>
      <pubDate>Thu, 29 May 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/per-token-energy-costs-again/</guid>
      <description>&lt;p&gt;Piotr Mazurek and Felix Gabriel have an amazing post up on
&lt;a href=&#34;https://www.tensoreconomics.com/p/llm-inference-economics-from-first&#34;&gt;LLM Inference Economics from First Principles&lt;/a&gt;,
which I found on Bluesky.&lt;/p&gt;
&lt;p&gt;They go into a huge amount of detail about how inference works and how that affects processing speed. But I saw the
graph above and thought &amp;ldquo;we can get energy from that&amp;rdquo;. And so I asked chatgpt-o3: &amp;ldquo;Looking at these graphs of throughput at different batch sizes on a 4xH100 80gb cluster, what ranges of power per token do they equate to?&amp;rdquo;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Claude Code - The Missing Manual</title>
      <link>https://clune.org/posts/claude-code-manual/</link>
      <pubDate>Tue, 27 May 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/claude-code-manual/</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; This post has been replaced by &lt;a href=&#34;https://clune.org/posts/claude-code-the-missing-manual/&#34;&gt;Claude Code - The Missing Manual&lt;/a&gt;, which includes updated patterns around plugins, issue tracking, and skills.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Notes that I wrote for work on how to get started with Claude Code, Anthropic’s agentic code tool. Anthropic&amp;rsquo;s
&lt;a href=&#34;https://docs.anthropic.com/en/docs/claude-code/overview&#34;&gt;own documentation&lt;/a&gt; is good, but I wanted a single page
that I could share with people to help them get rapidly up to speed.&lt;/p&gt;
&lt;p&gt;Once past this stage, their &lt;a href=&#34;https://www.anthropic.com/engineering/claude-code-best-practices&#34;&gt;Claude code best practices&lt;/a&gt;
page is excellent.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Links, 16 May 2025</title>
      <link>https://clune.org/posts/links-2025-05-16/</link>
      <pubDate>Sat, 10 May 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/links-2025-05-16/</guid>
      <description>&lt;p&gt;A very late set of weekly links! This time it&amp;rsquo;s heavy on AI and it&amp;rsquo;s impact on research and teaching. Plus cyborg cicadas.&lt;/p&gt;
&lt;p&gt;First up: A NYMag article on &lt;a href=&#34;https://nymag.com/intelligencer/article/openai-chatgpt-ai-cheating-education-college-students-school.html&#34;&gt;LLM use at Universities&lt;/a&gt; went viral (at least in my education and AI heavy feeds!) last week. So that&amp;rsquo;s not the link as you&amp;rsquo;ve
probably already read it. Instead, here&amp;rsquo;s Benjamin Breen on
&lt;a href=&#34;https://resobscura.substack.com/p/ai-makes-the-humanities-more-important&#34;&gt;how AI makes the Humanities more important and also wierder&lt;/a&gt;
and &lt;a href=&#34;https://www.newyorker.com/culture/the-weekend-essay/will-the-humanities-survive-artificial-intelligence&#34;&gt;Will the Humanities Survive Artificial Intelligence?&lt;/a&gt; from
the New Yorker.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tokens, tokens everywhere</title>
      <link>https://clune.org/posts/token-numbers/</link>
      <pubDate>Sat, 10 May 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/token-numbers/</guid>
      <description>&lt;p&gt;We have some actual numbers on tokens! In their &lt;a href=&#34;https://view.officeapps.live.com/op/view.aspx?src=https://cdn-dynmedia-1.microsoft.com/is/content/microsoftcorp/TranscriptFY25Q3&#34;&gt;commentary on the latest earnings report&lt;/a&gt;,
Microsoft report:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We processed over 100 trillion tokens this quarter, up 5X year-over-year – including a record 50 trillion tokens last month alone&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;So we&amp;rsquo;ve got a baseline, and can estimate a growth rate. Assuming exponential growth and a three month token split of 19/31/50 we get
62% month on month growth, or, if it keeps going  100 T → 424 T → 1.8 P → 7.6 P, which is lower than the 5x yoy growth MS quote.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Environmental Impact of AI</title>
      <link>https://clune.org/posts/environmental-impact-of-ai/</link>
      <pubDate>Tue, 06 May 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/environmental-impact-of-ai/</guid>
      <description>&lt;p&gt;As &lt;a href=&#34;https://andymasley.substack.com/p/a-cheat-sheet-for-conversations-about&#34;&gt;Andy Massick explains well&lt;/a&gt;,
if you are making a few requests per day to a simple non-reasoning text based AI
model the carbon impact is, to use a technical term, bugger all &lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;I probably ask ChatGPT and Claude around 8 questions a day on average. Over the course of a year of using them, this uses up the same energy as running a single space heater in my room for 2 hours in total. Not 2 hours per day, just a one-off use of a single space heater for 2 hours&lt;/em&gt;
[&amp;hellip;] &lt;em&gt;By being vegan, I have as much climate impact as not prompting ChatGPT 400,000 times each year&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Links, 30 April 2025</title>
      <link>https://clune.org/posts/links-2025-04-30/</link>
      <pubDate>Wed, 30 Apr 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/links-2025-04-30/</guid>
      <description>&lt;p&gt;Finally a week with more than two links!&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Beatrice de Graaf is a Professor at Utrecht University. Her talk at Stanford on &lt;a href=&#34;https://www.hoover.org/events/quest-third-rome-understanding-putins-apocalyptical-radicalization&#34;&gt;The Quest for a Third Rome&lt;/a&gt; describes
using text mining techniques to analyse Putin&amp;rsquo;s speeches since 1999. The paper, written with her student Neils Drost,
is open access: &lt;a href=&#34;https://dspace.library.uu.nl/handle/1874/425513&#34;&gt;Putin and the Third Rome:: Imperial-Eschatological Motives as a Usable Past&lt;/a&gt;
&lt;br&gt;&lt;br&gt;
&amp;ldquo;&lt;em&gt;In this corpus, we ask how Putin used the combination
of history and Russian Orthodox theological, biblical tropes as a usable past,
to create his powerbase, to understand how he built up to defending and legitimizing the invasion in Ukraine&lt;/em&gt;&amp;rdquo;
&lt;br&gt;&lt;br&gt;
A similar area was covered by Teitelbaum in his book &lt;a href=&#34;https://www.penguin.co.uk/books/315812/war-for-eternity-by-teitelbaum-benjamin-r/9780141992037&#34;&gt;War for Eternity&lt;/a&gt; about
the influence of Alexsandr Dugin and mysticism on both Putin and Steve Bannon in the US.
&lt;br&gt;&lt;br&gt;
Does Putin believe it? Maybe. Is he using mysticism and religion for his own ends? For sure.
&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Links, 22 April 2025</title>
      <link>https://clune.org/posts/links-2025-04-22/</link>
      <pubDate>Tue, 22 Apr 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/links-2025-04-22/</guid>
      <description>&lt;p&gt;Some AI development resources this week&amp;hellip;&lt;/p&gt;
&lt;h2 id=&#34;how-to-build-an-ai-code-agent&#34;&gt;How to Build an AI Code Agent&lt;/h2&gt;
&lt;p&gt;Thorsten Ball has published &lt;a href=&#34;https://ampcode.com/how-to-build-an-agent&#34;&gt;how to build your own AI code agent&lt;/a&gt;. He creates a toy example in Rust that&amp;rsquo;s &amp;lt;400 lines but still includes tool use. Geoffrey Huntley &lt;a href=&#34;https://ghuntley.com/specs/&#34;&gt;does the same&lt;/a&gt;. It&amp;rsquo;s worth reading both&lt;/p&gt;
&lt;h2 id=&#34;claude-code-best-practices&#34;&gt;Claude Code Best Practices&lt;/h2&gt;
&lt;p&gt;Anthropic has released a detailed guide on &lt;a href=&#34;https://www.anthropic.com/engineering/claude-code-best-practices&#34;&gt;Claude Code best practices&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Of note:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Claude can (and should!) use the architect/plan then code model that &lt;a href=&#34;https://github.com/Aider-AI&#34;&gt;Aider&lt;/a&gt; makes explicit.
Telling Claude to read code/docs, then plan, then code, then commit gives better results than just telling it to write code&lt;/li&gt;
&lt;li&gt;Ask Claude to review things (e.g. the &lt;code&gt;CLAUDE.md&lt;/code&gt; hint files) and suggest improvements. Repeat.
(As an aside, the &lt;a href=&#34;https://console.anthropic.com/workbench&#34;&gt;Anthropic workbench&lt;/a&gt; can improve general prompts)&lt;/li&gt;
&lt;li&gt;Telling Claude to &amp;rsquo;think&amp;rsquo;, &amp;rsquo;think harder&amp;rsquo; etc results in more thinking tokens being used&lt;/li&gt;
&lt;li&gt;Clear context frequently (&lt;code&gt;/clear&lt;/code&gt;) - &lt;a href=&#34;https://ghuntley.com/redlining/&#34;&gt;usable context window is smaller than the advertised max&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The model of asking Claude to review and improve its work (or human starting points) repeatedly was not obvious to me&lt;/p&gt;</description>
    </item>
    <item>
      <title>Links, 15 April 2025</title>
      <link>https://clune.org/posts/links-2025-04-15/</link>
      <pubDate>Tue, 15 Apr 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/links-2025-04-15/</guid>
      <description>&lt;p&gt;Two links this week&amp;hellip;&lt;/p&gt;
&lt;h2 id=&#34;ai-logos-are-all-buttholes&#34;&gt;AI Logos Are All Buttholes&lt;/h2&gt;
&lt;p&gt;In what might be the most important visual design analysis of 2025, Velvet Shark has compiled a gallery of &lt;a href=&#34;https://velvetshark.com/ai-company-logos-that-look-like-buttholes&#34;&gt;AI company logos that look like buttholes&lt;/a&gt;. From Claude&amp;rsquo;s spiral to Midjourney&amp;rsquo;s abstract void, it seems AI branding has converged on a rather unfortunate design pattern.&lt;/p&gt;
&lt;h2 id=&#34;if-its-crypto-its-not-money-laundering&#34;&gt;If It&amp;rsquo;s Crypto, It&amp;rsquo;s Not Money Laundering&lt;/h2&gt;
&lt;p&gt;Money laundering is legal now, as long as it&amp;rsquo;s crypto. JP Koning summaries the Trump administration&amp;rsquo;s latest legal changes: &lt;a href=&#34;https://www.moneyness.ca/2025/04/if-its-crypto-its-not-money-laundering.html&#34;&gt;If it&amp;rsquo;s crypto, it&amp;rsquo;s not money laundering&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Links, 11 April 2025</title>
      <link>https://clune.org/posts/links-2025-04-11/</link>
      <pubDate>Fri, 11 Apr 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/links-2025-04-11/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m trying not to be perfectionist about this blogging thing, and concentrate on getting stuff out so in that spirit so this week
there&amp;rsquo;s just a few links, all on AI.&lt;/p&gt;
&lt;h2 id=&#34;first-up---how-to-use-ai&#34;&gt;First up - how to use AI.&lt;/h2&gt;
&lt;p&gt;I see so many people type some random question into ChatGPT/Claude, get a mediocre answer back and move on.
But how to get good results from these systems is not at all obvious. For a complex example, see my post
on &lt;a href=&#34;https://clune.org/posts/experimenting-with-openai-deep-research/&#34;&gt;Experimenting with Deep Research&lt;/a&gt; or
an even more extensive example of &lt;a href=&#34;https://lawsen.substack.com/p/getting-the-most-from-deep-research&#34;&gt;using one model to generate a prompt for another&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Connecting Claude Desktop to Zapier</title>
      <link>https://clune.org/posts/connecting-claude-desktop-to-zapier/</link>
      <pubDate>Thu, 03 Apr 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/connecting-claude-desktop-to-zapier/</guid>
      <description>&lt;p&gt;Today&amp;rsquo;s fun is setting up the new &lt;a href=&#34;https://actions.zapier.com/settings/mcp/&#34;&gt;Zapier MCP integration&lt;/a&gt;. This creates a MCP server that
allows Claude Desktop or Cursor or anything else that supports MCP to call
any Zaps&lt;/p&gt;
&lt;h2 id=&#34;setting-up-zapier-mcp&#34;&gt;Setting Up Zapier MCP&lt;/h2&gt;
&lt;h3 id=&#34;step-1-install-mcp-remote&#34;&gt;Step 1: Install mcp-remote&lt;/h3&gt;
&lt;p&gt;First, install the &lt;code&gt;mcp-remote&lt;/code&gt; package using npm:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;npm install mcp-remote
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;step-2-configure-mcp-endpoint-in-claude-desktop&#34;&gt;Step 2: Configure MCP Endpoint in Claude Desktop&lt;/h3&gt;
&lt;p&gt;In Claude Desktop, you&amp;rsquo;ll need to add the Zapier MCP endpoint to your settings. Add the following configuration to &lt;code&gt;~/Library/Application Support/Claude/claude_desktop_config.json&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Links, 31 March 2025</title>
      <link>https://clune.org/posts/links-2025-03-31/</link>
      <pubDate>Mon, 31 Mar 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/links-2025-03-31/</guid>
      <description>&lt;p&gt;Trying something new, with a weekly-ish list of links&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1) OAPs are radicalised too&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://gnet-research.org/2025/03/31/when-grandpa-turns-extremist-digital-immigrants-radicalisation-and-the-german-reich-citizens-movement/&#34;&gt;When Grandpa Turns Extremist: Digital Immigrants,  Radicalisation and the German Reich Citizens Movement&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;the radicalisation of middle-aged and elderly people remains largely overlooked despite their active involvement in nearly
all extremist movements. This Insight advocates for a more nuanced understanding of extremism and ageing, emphasising the need
for radicalisation prevention strategies geared towards those born as Digital Immigrants, such as Baby Boomers and Generation X.
These generations did not grow up in a digitised world, and their education largely did not include critical media studies.
Among others, this factor makes them prone to misinformation consumption online. [This article looks..]
at the example of the German Reich Citizens Movement, which has a very specific
age structure and is characterised by the relatively late radicalisation of its adherents. The movement, which predates the digital
age, now primarily relies on the internet for communication, spreading its ideology, and mobilising action against the state and
governmental authorities&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Model Context Protocol 101</title>
      <link>https://clune.org/posts/explaining-model-context-protocol/</link>
      <pubDate>Tue, 04 Mar 2025 10:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/explaining-model-context-protocol/</guid>
      <description>&lt;p&gt;Model Context Protocol (MCP) is a standardized approach for structuring context information when working with Large Language Models (LLMs).
It was introduced by Anthropic but is standardised and an open protocol.&lt;/p&gt;
&lt;p&gt;Yeah, great. But what does that even mean?&lt;/p&gt;
&lt;p&gt;The problem that MCP is trying to solve is one of getting access to local/specialist information. When using Claude or ChatGPT etc, the model
has access to its built in knowledge from training, but this only contains public information and will have a cut off date
when the model was trained. To get around this, some tools have integrated web search that can add extra knowledge and/or the
ability to import documents. But what if you want to talk to a database? Or files on disk? Or a knowledge base? Or &amp;hellip;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Experimenting with OpenAI&#39;s Deep Research</title>
      <link>https://clune.org/posts/experimenting-with-openai-deep-research/</link>
      <pubDate>Thu, 27 Feb 2025 00:00:00 +0000</pubDate>
      <guid>https://clune.org/posts/experimenting-with-openai-deep-research/</guid>
      <description>&lt;p&gt;Now Deep Research is available to ChatGPT users on the £20/mth tier, I&amp;rsquo;ve had a chance to experiment. The tl;dr is that it&amp;rsquo;s really very good, and the level of progress in just 6 months is mind-blowing.&lt;/p&gt;
&lt;p&gt;I picked something I know about - financial pressures facing UK Universities. First, I asked ChatGPT to generate the prompt for Deep Research, using &lt;a href=&#34;https://x.com/buccocapital/status/1890751637532168500&#34;&gt;this template&lt;/a&gt; I found via a mailing list (and I can&amp;rsquo;t remember which one).&lt;/p&gt;</description>
    </item>
    <item>
      <title>About</title>
      <link>https://clune.org/about/</link>
      <pubDate>Mon, 26 Feb 2024 00:00:00 +0000</pubDate>
      <guid>https://clune.org/about/</guid>
      <description>&lt;p&gt;Welcome to my blog! I&amp;rsquo;m Arthur&lt;/p&gt;
&lt;p&gt;This blog was started in 2000ish when the domain was registered, but over the years it&amp;rsquo;s moved around
and been restarted many times, so there&amp;rsquo;s no back catalogue&lt;/p&gt;
&lt;p&gt;Feel free to &lt;a href=&#34;https://bsky.app/profile/clune.org&#34;&gt;contact me on Bluesky&lt;/a&gt; or &lt;a href=&#34;https://www.linkedin.com/in/arthur-clune-73ab912/&#34;&gt;LinkedIn&lt;/a&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
