Learning desk

MultiAgent EDU StackGather good sources. Teach what matters.
T5TauricResearch/TradingAgentsT5A Man Who Invented Modern AI (Before Everyone Else) – Jürgen Schmidhuber [video]T5GPT-4 finished training four years ago todayT5AI Settles a 25 Year-Old Problem We Left BehindT5What it was like working on LLMs and security at Meta (2022-2026)T5Ask HN: How do you go from writing code to deploying with agents?T5What Happened: OpenAI and HuggingFaceT5Apple says Mac users in China can connect to Alibaba's Qwen AI serviceT5Show HN: Try Benzi – A coding harness/agent beating Claude Code itself on SonnetT5The AI Apocalypse Is HereT3Auto mode is now the default in Claude Code for Pro, Max, and Team plansT5Show HN: Tura – Build agent that uses 80% less token and delivers better resultsT5TauricResearch/TradingAgentsT5A Man Who Invented Modern AI (Before Everyone Else) – Jürgen Schmidhuber [video]T5GPT-4 finished training four years ago todayT5AI Settles a 25 Year-Old Problem We Left BehindT5What it was like working on LLMs and security at Meta (2022-2026)T5Ask HN: How do you go from writing code to deploying with agents?T5What Happened: OpenAI and HuggingFaceT5Apple says Mac users in China can connect to Alibaba's Qwen AI serviceT5Show HN: Try Benzi – A coding harness/agent beating Claude Code itself on SonnetT5The AI Apocalypse Is HereT3Auto mode is now the default in Claude Code for Pro, Max, and Team plansT5Show HN: Tura – Build agent that uses 80% less token and delivers better results
← Dispatches

condense-json 1.0

Named practitioner synthesis

#1243

T3new2 mentions merged
Topic
unassigned (set during synthesis)
First seen
2026-08-03 07:15:56
Last seen
2026-08-05 07:16:32

Source raw items (2)

  • Blog / Newsletter2026-08-05 07:16:28
    condense-json 1.1

    <p><strong>Release:</strong> <a href="https://github.com/simonw/condense-json/releases/tag/1.1">condense-json 1.1</a></p> <p>After shipping <a href="https://simonwillison.net/2026/Aug/2/condense-json/">condense-json 1.0</a> I started integrating it into LLM, and found there were some desirable new features already:</p> <blockquote> <ul> <li>Replacements object can now include values other than strings. These will be identified and used as structural replacements by <code>condense_json()</code> and <code>uncondense_json()</code>. <a href="https://github.com/simonw/condense-json/pull/8">#8</a></li> <li>Objects can be used as the basis for merge operations. <code>condense_json()</code> will identify if there are objects that are a close match and will store instructions for keys to update or delete. <code>uncondense_json()</code> can then apply these merges.</li> </ul> </blockquote> <p>I also added <a href="https://github.com/simonw/condense-json/blob/1.1/tests/test_properties.py"

  • Blog / Newsletter2026-08-03 07:15:52
    condense-json 1.0

    <p><strong>Release:</strong> <a href="https://github.com/simonw/condense-json/releases/tag/1.0">condense-json 1.0</a></p> <p>I'm trying to get braver at releasing 1.0 versions. This little library is a year and a half old now - I've applied some sensible and non-disruptive fixes and shipped the big 1.0 for it.</p> <p>Here's an example of what it can do, lifted from the README:</p> <div class="highlight highlight-source-json"><pre>{ <span class="pl-ent">"foo"</span>: { <span class="pl-ent">"bar"</span>: { <span class="pl-ent">"string"</span>: <span class="pl-s"><span class="pl-pds">"</span>This is a string with foxes in it<span class="pl-pds">"</span></span>, <span class="pl-ent">"nested"</span>: { <span class="pl-ent">"more"</span>: [<span class="pl-s"><span class="pl-pds">"</span>Here is a string<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>another with foxes in it too<span class="pl-pds">"</span></span>]