<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Thomas Wolf(@Thom_Wolf)</title>
    <link>https://x.com/Thom_Wolf</link>
    <description>Co-founder at @HuggingFace - moonshots - angel -- Powered by xgo.ing</description>
    <language>en</language>
    <copyright>Content belongs to Thomas Wolf(@Thom_Wolf)</copyright>
    <pubDate>Tue, 21 Apr 2026 04:34:49 GMT</pubDate>
    <generator>XGo.ing RSS Generator</generator>
    <dc:creator>Thomas Wolf</dc:creator>
    <dc:date>2026-04-21T04:34:49Z</dc:date>
    <dc:language>en</dc:language>
    <dc:rights>Content belongs to Thomas Wolf(@Thom_Wolf)</dc:rights>
    <image>
      <title>Thomas Wolf(@Thom_Wolf)</title>
      <url>https://pbs.twimg.com/profile_images/1629469939860946946/WUyBolSu_normal.jpg</url>
      <link>https://x.com/Thom_Wolf</link>
    </image>
    <item>
      <title>overview cheatsheet</title>
      <link>https://x.com/Thom_Wolf/status/2045820219831074907</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;overview cheatsheet&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HGQ2m6qW0AABOPf.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;2630&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 19 Apr 2026 11:02:04 GMT</pubDate>
      <guid isPermaLink="false">2045820219831074907</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-04-19T11:02:04Z</dc:date>
    </item>
    <item>
      <title>**Deep content post alert** A technical deep dive for your Sunday morning, somewhere between a short...</title>
      <link>https://x.com/Thom_Wolf/status/2045817727705628714</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;**Deep content post alert** A technical deep dive for your Sunday morning, somewhere between a short detective story &#x1f575;️ and a tutorial on RLHF &#x1f9d1;‍&#x1f3eb;&lt;br/&gt;&lt;br/&gt;We recently added AsyncGRPO in the TRL library to decouple inference and training and scale much faster and harder. As a sanity check, we ran it on a trivial setup (reward = −len, optimal policy = emit EOS immediately). To our surprise it did not converge!&lt;br/&gt;&lt;br/&gt;This led us to a known but poorly understood issue: when the training forward pass runs in FP32 while the inference engine (vLLM) runs in BF16, RLHF often breaks. People have noticed this before and called it &amp;quot;numerical instability&amp;quot; or &amp;quot;noisy gradients.&amp;quot; Nobody had pinpointed the actual mechanism. We did in this deep dive by &lt;a href='https://x.com/DirhousssiAmine' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@DirhousssiAmine&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;We instrumented the training loop and decomposed the importance sampling ratio as: log r = α + β, where α is the true policy change (in BF16 space) and β is the precision gap between the training forward pass and a BF16 forward on the same weights. See it like this:&lt;br/&gt;α = how much the policy actually changed since the rollout (same precision, different time).&lt;br/&gt;β = how much the trainer and inference engine disagree about the same policy (same weights, different precision).&lt;br/&gt;The ratio sees α + β and PPO can&amp;#39;t tell them apart.&lt;br/&gt;&lt;br/&gt;Empirically, β is small at the token level (O(1e−2–1e−1)) but it is not an innocent random noise that would wash out over time. We found it to be structured, persistent, and worse for certain tokens: it has a consistent negative bias, correlates with the advantage, and is up to 50x larger on low-probability tokens. However, despite all these concerning properties, none of them explain the mechanism. We saw that just disabling clipping leads to stable convergence meaning that β noise alone does not explain the failure.&lt;br/&gt;&lt;br/&gt;We tested every plausible explanation and ruled them out one by one:&lt;br/&gt;⭐️ Treating β as pure noise: keeping β but disabling clipping leads to stable convergence.&lt;br/&gt;⭐️ FP32 backward: You&amp;#39;re optimizing a function (FP32) that&amp;#39;s slightly different from the one you deploy (BF16). So you might be climbing the wrong hill. Turns out the hills are close enough: using FP32 gradients with a clean ratio (β removed) converges and is actually more effective at improving the deployed BF16 policy.&lt;br/&gt;⭐️ Multiplicative distortion of the advantage: Since β correlates with the advantage, you might think it systematically over-reinforces good tokens and under-suppresses bad ones, warping what the optimizer thinks is good vs bad. We measured this directly and the per-token gradient weights are identical whether β is there or not.&lt;br/&gt;⭐️ BF16 quantization / boundary crossings: at low learning rates, most FP32 weight updates are too small to change the BF16 representation at all. So you might think vLLM just never sees the updates and that&amp;#39;s why it stalls. However if boundary crossings were the problem, you&amp;#39;d expect the failing run to have fewer of them than the converging run. But both runs start with nearly identical boundary crossing rates.&lt;br/&gt;&lt;br/&gt;What we discovered is that the failure mode only appears when β enters the PPO clipped objective. And this was our hint to the real mechanism.&lt;br/&gt;&lt;br/&gt;Because PPO clips the ratio, small perturbations from β push r outside the trust region even when the underlying policy has not meaningfully changed. The clipped branch is selected, the gradient is exactly zero.&lt;br/&gt;&lt;br/&gt;We call this *phantom clipping*: tokens are treated as if they exceeded the trust region when the change is purely numerical!&lt;br/&gt;&lt;br/&gt;And this is not a marginal effect. At early training, the policy has barely moved (α ≈ 0), so the clipping decision reduces to whether |β| &amp;gt; 0.2. Yet roughly 18% of tokens get phantom-clipped! And because RL is closed-loop, the damage compounds: the deployed policy barely improves, future rollouts carry the same information, and the system locks into a permanent stall.&lt;br/&gt;&lt;br/&gt;To make it a testable hypothesis, we confirmed causality with targeted interventions: removing β from the ratio, forcing r = 1, or keeping β but disabling clipping all restore convergence. Runs only fail when β is present in the clipped ratio. No exceptions.&lt;br/&gt;&lt;br/&gt;The issue is not general numerical noise. It is a specific interaction between precision mismatch and PPO&amp;#39;s clipping mechanism: the precision gap perturbs the ratio in a way that induces zero gradients where there should be signal.&lt;br/&gt;&lt;br/&gt;We concluded with a set of recommended fixes (strongest first): match precisions (FP16 everywhere, or BF16 autocast with FP32 master weights), compute the ratio from a BF16 shadow forward pass, or widen ε to disable clipping.&lt;br/&gt;&lt;br/&gt;Full write-up with experiments, interactive explanation and analysis a&lt;a href='https://huggingface.co/spaces/aminediroHF/trainer-generator-bf16-mismatch' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;huggingface.co/spaces/aminedi…&lt;/a&gt;IcL&lt;br/&gt;&lt;br/&gt;(Amine also wrote an X article which is very cool but you&amp;#39;ll loose the interactive graphics and animations &#x1f62d;)&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/2038043013856059392/tJrpG9wW_normal.jpg' alt='Dirhousssi Amine' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Dirhousssi Amine&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@DirhousssiAmine&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;&lt;a href='http://x.com/i/article/2045458292470697984' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;x.com/i/article/2045…&lt;/a&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/DirhousssiAmine/status/2045786897100800196' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;11&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;31&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;296&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;47381&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;80&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 19 Apr 2026 10:52:10 GMT</pubDate>
      <guid isPermaLink="false">2045817727705628714</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-04-19T10:52:10Z</dc:date>
    </item>
    <item>
      <title>json is so token inefficient it hurts these days

man, these braces and quotes are costing me real $...</title>
      <link>https://x.com/Thom_Wolf/status/2043467761427575028</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;json is so token inefficient it hurts these days&lt;br/&gt;&lt;br/&gt;man, these braces and quotes are costing me real $$&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;67&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;10&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;406&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;58319&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;97&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 12 Apr 2026 23:14:14 GMT</pubDate>
      <guid isPermaLink="false">2043467761427575028</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-04-12T23:14:14Z</dc:date>
    </item>
    <item>
      <title>favorite AGI/sci-fi vibe these days is coding a robot code together with the robot

here vibe-plugin...</title>
      <link>https://x.com/Thom_Wolf/status/2042669638564352477</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;favorite AGI/sci-fi vibe these days is coding a robot code together with the robot&lt;br/&gt;&lt;br/&gt;here vibe-pluging &lt;a href='https://x.com/ElevenLabs' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@ElevenLabs&lt;/a&gt; in &lt;a href='https://x.com/reachymini' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@reachymini&lt;/a&gt; for a talk later today&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2042668997859250177/vid/avc1/1080x1920/7XZPAjOXdIYrt-pi.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/Thom_Wolf/status/2042669638564352477/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;15&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;26&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;170&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;28009&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;39&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 10 Apr 2026 18:22:47 GMT</pubDate>
      <guid isPermaLink="false">2042669638564352477</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-04-10T18:22:47Z</dc:date>
    </item>
    <item>
      <title>Releasing one of our *largest* robotics project yet in the open

We collected and annotated hours of...</title>
      <link>https://x.com/Thom_Wolf/status/2041574094601379912</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Releasing one of our *largest* robotics project yet in the open&lt;br/&gt;&lt;br/&gt;We collected and annotated hours of clothes folding with open-arms and collaborators.&lt;br/&gt;&lt;br/&gt;We then explored how to train the best clothes folding robotic model for bimanual setups.&lt;br/&gt;&lt;br/&gt;And now we&amp;#39;re releasing it all fully in the open: data, code, models, software, explorations, learnings, you name it&lt;br/&gt;&lt;br/&gt;Enjoy, play with it, use these learnings and share yours!&lt;br/&gt;&lt;br/&gt;PS: the hub is increasingly *the* place where robotics data is being shared and used, come take a look if you haven&amp;#39;t yet. Robotics data has been our fastest growing dataset category by far over the past few months.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1811131318534918144/Dk2D_okm_normal.jpg' alt='LeRobot' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;LeRobot&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@LeRobotHF&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Releasing the Unfolding Robotics blog!&lt;br/&gt;&lt;br/&gt;Time to unfold robotics: we trained a robot to fold clothes using 8 bimanual setups, 100+ hours of demonstrations, and 5k+ GPU hours.&lt;br/&gt;&lt;br/&gt;Flashy robot demos are everywhere. But you rarely see the real story: the data, the failures, the engineering.&lt;br/&gt;&lt;br/&gt;We’re sharing everything: code, data, and details in the blog → &lt;a href='https://huggingface.co/spaces/lerobot/robot-folding' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;huggingface.co/spaces/lerobot…&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2041538290994601984/vid/avc1/1920x1080/z3Owz9HoAGYzmq8R.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/LeRobotHF/status/2041542790610297259/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/LeRobotHF/status/2041542790610297259' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;11&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;27&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;231&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;28345&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;42&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 07 Apr 2026 17:49:29 GMT</pubDate>
      <guid isPermaLink="false">2041574094601379912</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-04-07T17:49:29Z</dc:date>
    </item>
    <item>
      <title>We’re very excited to deepen our work with the @SAIRfoundation co-founded by Terence Tao. We’ve been...</title>
      <link>https://x.com/Thom_Wolf/status/2041217780515565676</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;We’re very excited to deepen our work with the &lt;a href='https://x.com/SAIRfoundation' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@SAIRfoundation&lt;/a&gt; co-founded by Terence Tao. We’ve been very active pushing the communities in AI x science in chemistry, physics, biology (more on that very soon) and this aligns perfectly with what the SAIR foundation has been doing in math (and soon extending as well). Sharing datasets, building challenges and communities&lt;br/&gt;&lt;br/&gt;Exciting future for open-science&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/2020783696870309888/-SEUG3_7_normal.jpg' alt='SAIR' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;SAIR&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@SAIRfoundation&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;We’re excited to announce our collaboration with &lt;a href='https://x.com/huggingface' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@huggingface&lt;/a&gt;. Through SAIR competitions, we aim to provide open data, benchmarks, tools, and models, and expand the frontier of AI x Science through collective contributions from the community.&lt;br/&gt;&lt;br/&gt;SAIR on Hugging Face:&lt;br/&gt;&lt;a href='https://huggingface.co/SAIRfoundation' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;huggingface.co/SAIRfoundation&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2041182934603067392/vid/avc1/1920x1080/_F8oikoZCuC9G9xF.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/SAIRfoundation/status/2041183272445559179/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/SAIRfoundation/status/2041183272445559179' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;13&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;81&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;9436&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;14&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Mon, 06 Apr 2026 18:13:37 GMT</pubDate>
      <guid isPermaLink="false">2041217780515565676</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-04-06T18:13:37Z</dc:date>
    </item>
    <item>
      <title>TFW the R&amp;amp;D boss of arguably the oldest and most legendary robotics lab in the world stops you a...</title>
      <link>https://x.com/Thom_Wolf/status/2040450793581535705</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;TFW the R&amp;amp;D boss of arguably the oldest and most legendary robotics lab in the world stops you at a conference to tell you that your robot is &amp;quot;the coolest social robot in the world&amp;quot;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/2002136755642712064/ffujiaXF_normal.jpg' alt='Pollen Robotics' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Pollen Robotics&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@pollenrobotics&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;&amp;quot;The coolest social robot in the world&amp;quot;&lt;br/&gt;&lt;br/&gt;As HRI 2026 in Edinburgh showed us, Reachy Mini already holds a special place in your hearts. Step by step, it is becoming the ideal companion for your projects, and your interactions with our robot encourage us to make it even better!&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HFDGLIAXkAAvO3Q.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/pollenrobotics/status/2040350732042285501' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;3&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;22&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;6142&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;6&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 04 Apr 2026 15:25:53 GMT</pubDate>
      <guid isPermaLink="false">2040450793581535705</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-04-04T15:25:53Z</dc:date>
    </item>
    <item>
      <title>the LLM is the computer</title>
      <link>https://x.com/Thom_Wolf/status/2038522843252551880</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;the LLM is the computer&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1832096181423620096/uriOEmmf_normal.jpg' alt='Ronak Malde' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Ronak Malde&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@rronak_&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;I have long felt that agent harnesses - even claude code - are too restrictive, because they are still designed by humans.&lt;br/&gt;&lt;br/&gt;New paper for Tinsghua and Shenzhen says, what if AI itself runs the harness, rather than defining it in code? Given a natural language SOP of how an agent should orchestrate subagents, memory, compaction, etc., we can just have an LLM execute that logic! (And AI could design that SOP dynamically and depending on the task too)&lt;br/&gt;&lt;br/&gt;It&amp;#39;s a bit mind-warping to think about, but genius once it clicks.&lt;br/&gt;&lt;br/&gt;Makes you wonder how else we should be designing AI systems as we can start consuming more and more tokens&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HEnZg1gXQAAToKP.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/rronak_/status/2038401494177694074' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;14&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;32&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;326&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;59808&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;78&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Mon, 30 Mar 2026 07:44:54 GMT</pubDate>
      <guid isPermaLink="false">2038522843252551880</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-30T07:44:54Z</dc:date>
    </item>
    <item>
      <title>Who would win when combining best algo(model+optimization)/data of the year?

h/t @lvwerra</title>
      <link>https://x.com/Thom_Wolf/status/2037477945346761066</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Who would win when combining best algo(model+optimization)/data of the year?&lt;br/&gt;&lt;br/&gt;h/t &lt;a href='https://x.com/lvwerra' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@lvwerra&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;8&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;27&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;27347&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;12&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 27 Mar 2026 10:32:51 GMT</pubDate>
      <guid isPermaLink="false">2037477945346761066</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-27T10:32:51Z</dc:date>
    </item>
    <item>
      <title>What are the best current techniques to have autoresearch behave better than (slightly improved) ran...</title>
      <link>https://x.com/Thom_Wolf/status/2036782405671956808</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;What are the best current techniques to have autoresearch behave better than (slightly improved) random search?&lt;br/&gt;&lt;br/&gt;By which I mean (in Sijun below example), having the agent understand that (given some constraints) exploring int5 quantization is more exciting and have more downstream fruits than playing with the random seed?&lt;br/&gt;&lt;br/&gt;I’m talking about the beginning of having an agent pushed a real research program. The ones where you know the current technique will not give crazy results out of the box but it still push it because it believe and can demonstrate that the general direction has potential.&lt;br/&gt;&lt;br/&gt;Like neural networks used to be a worse way to do AI performance-wise. But we still pushed them…&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1588945562245558272/wn2Fh9Is_normal.jpg' alt='Sijun Tan' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Sijun Tan&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@sijun_tan&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;We took &lt;a href='https://x.com/karpathy' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@karpathy&lt;/a&gt;&amp;#39;s autoresearch agent, scaled it into a collaborative swarm, and topped &lt;a href='https://x.com/OpenAI' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@OpenAI&lt;/a&gt;&amp;#39;s Parameter Golf Challenge—twice. Here’s how we did it:&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/sijun_tan/status/2036584756729749802' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;19&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;88&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;18029&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;29&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 25 Mar 2026 12:29:01 GMT</pubDate>
      <guid isPermaLink="false">2036782405671956808</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-25T12:29:01Z</dc:date>
    </item>
    <item>
      <title>This is really cool.

It got me thinking more deeply about personalized RL: what’s the real point of...</title>
      <link>https://x.com/Thom_Wolf/status/2034646382334599200</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;This is really cool.&lt;br/&gt;&lt;br/&gt;It got me thinking more deeply about personalized RL: what’s the real point of personalizing a model in a world where base models can become obsolete so quickly?&lt;br/&gt;&lt;br/&gt;The reality in AI is that new models ship every few weeks, each better than the last. And the pace is only accelerating, as we see on the Hugging Face Hub. We are not far away from better base models dropping daily.&lt;br/&gt;&lt;br/&gt;There’s a research gap in RL here that almost no one is working on. Most LLM personalization research assumes a fixed base model, but very few ask what happens to that personalization when you swap the base model. Think about going from Llama 3 to Llama 4. All the tuned preferences, reward signals, and LoRAs are suddenly tied to yesterday’s model.&lt;br/&gt;&lt;br/&gt;As a user or a team, you don’t want to reteach every new model your preferences. But you also don’t want to be stuck on an older one just because it knows you.&lt;br/&gt;&lt;br/&gt;We could call this &amp;quot;RL model transferability&amp;quot;: how can an RL trace, a reward signal, or a preference representation trained on model N be distilled, stored, and automatically reapplied to model N+1 without too much user involvement? We solved that in SFT where a training dataset can be stored and reused to train a future model. We also tackled a version of that in RLHF phases somehow but it remain unclear more generally when using RL deployed in the real world.&lt;br/&gt;&lt;br/&gt;There are some related threads (RLTR for transferable reasoning traces, P-RLHF and PREMIUM for model-agnostic user representations, HCP for portable preference protocols) but the full loop seems under-studied to me.&lt;br/&gt;&lt;br/&gt;Some of these questions are about off-policy but other are about capabilities versus personalization: which of the old customizations/fixes does the new model already handle out of the box, and which ones are actually user/team-specific to ever be solved by default? That you would store in a skill for now but that RL allow to extend beyond the written guidance level.&lt;br/&gt;&lt;br/&gt;I have surely missed some work so please post any good work you’ve seen on this topic in the comments.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1832096181423620096/uriOEmmf_normal.jpg' alt='Ronak Malde' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Ronak Malde&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@rronak_&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;This paper is almost too good that I didn&amp;#39;t want to share it&lt;br/&gt;&lt;br/&gt;Ignore the OpenClaw clickbait, OPD + RL on real agentic tasks with significant results is very exciting, and moves us away from needing verifiable rewards&lt;br/&gt;&lt;br/&gt;Authors: &lt;a href='https://x.com/YinjieW2024' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@YinjieW2024&lt;/a&gt; Xuyang Chen, Xialong Jin, &lt;a href='https://x.com/MengdiWang10' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@MengdiWang10&lt;/a&gt;&lt;a href='https://x.com/LingYang_PU' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@LingYang_PU&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HDrHibvagAAkXRW.png' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/rronak_/status/2034158978733904160' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;34&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;66&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;739&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;118742&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;216&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 19 Mar 2026 15:01:14 GMT</pubDate>
      <guid isPermaLink="false">2034646382334599200</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-19T15:01:14Z</dc:date>
    </item>
    <item>
      <title>Codexing games together with my 12 yo has been a surprisingly fun dad-son activity over the past cou...</title>
      <link>https://x.com/Thom_Wolf/status/2033230788284600612</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Codexing games together with my 12 yo has been a surprisingly fun dad-son activity over the past couple months as well&lt;br/&gt;&lt;br/&gt;I don’t pretend he’s really learning to code through that but the very low friction from ideas to implementation and the pure pleasure to invent/propose-anything/mix-and-match-games-ideas/collaboratively-create-something-fun is deeply enjoyable &lt;br/&gt;&lt;br/&gt;Somewhere between LEGOs and exquisite corpse&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1709609135321583616/6bXuF85D_normal.jpg' alt='Sebastien Bubeck' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Sebastien Bubeck&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@SebastienBubeck&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;My 9 yo is now fully independent with codex and it&amp;#39;s insane to watch, we built a few games together and then he went off to build his own tower defense, adding features by himself and testing them ... crazy&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HDZ0uDUaAAAe1rc.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/SebastienBubeck/status/2032940846962847980' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;6&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;6&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;76&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;10658&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;13&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 15 Mar 2026 17:16:10 GMT</pubDate>
      <guid isPermaLink="false">2033230788284600612</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-15T17:16:10Z</dc:date>
    </item>
    <item>
      <title>celebrating PI day in SF with 400 people and the @LeRobotHF team at The Melody church

thanks @Prime...</title>
      <link>https://x.com/Thom_Wolf/status/2033004314957066415</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;celebrating PI day in SF with 400 people and the &lt;a href='https://x.com/LeRobotHF' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@LeRobotHF&lt;/a&gt; team at The Melody church&lt;br/&gt;&lt;br/&gt;thanks &lt;a href='https://x.com/PrimeIntellect' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@PrimeIntellect&lt;/a&gt; for organizing!&lt;br/&gt;&lt;br/&gt;you rock &lt;a href='https://x.com/vincentweisser' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@vincentweisser&lt;/a&gt;&lt;a href='https://x.com/willccbb' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@willccbb&lt;/a&gt;&lt;a href='https://x.com/asharoraa' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@asharoraa&lt;/a&gt;&lt;a href='https://x.com/johannes_hage' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@johannes_hage&lt;/a&gt;&lt;a href='https://x.com/samsja19' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@samsja19&lt;/a&gt;&lt;a href='https://x.com/jessicafeiyali' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@jessicafeiyali&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HDaupjKb0AA7ZIa.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;11&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;147&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;10783&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;20&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 15 Mar 2026 02:16:14 GMT</pubDate>
      <guid isPermaLink="false">2033004314957066415</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-15T02:16:14Z</dc:date>
    </item>
    <item>
      <title>wow!</title>
      <link>https://x.com/Thom_Wolf/status/2032865647374356911</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;wow!&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1763567793344331776/iLRhiBZX_normal.jpg' alt='Dev' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Dev&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@DevvMandal&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Today, we&amp;#39;re launching the world&amp;#39;s largest open-source dataset of computer-use recordings.&lt;br/&gt;&lt;br/&gt;10,000+ hours across Salesforce, Blender, Photoshop and more, to automate the next level of white-collar work.&lt;br/&gt;&lt;br/&gt;Link in the comments :)&lt;br/&gt;&lt;a href='https://x.com/markov__ai' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@markov__ai&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2032101555831521291/vid/avc1/1920x1080/24mIOn0KgjxCKbE3.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/DevvMandal/status/2032104265121140924/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/DevvMandal/status/2032104265121140924' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;6&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;14&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;268&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;56869&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;54&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 14 Mar 2026 17:05:13 GMT</pubDate>
      <guid isPermaLink="false">2032865647374356911</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-14T17:05:13Z</dc:date>
    </item>
    <item>
      <title>This has been our fastest growing recent product. AI WANTS data. We’re making petabyte storage cheap...</title>
      <link>https://x.com/Thom_Wolf/status/2031458792513159596</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;This has been our fastest growing recent product. AI WANTS data. We’re making petabyte storage cheap and fast.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1099983311101984768/p7dZK4S__normal.jpg' alt='Victor M' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Victor M&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@victormustar&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Introducing Storage Buckets on Hugging Face &#x1f9d1;‍&#x1f680; &lt;br/&gt;&lt;br/&gt;The first new repo type on the Hub in 4 years: S3-like object storage, mutable, non-versioned, built on Xet deduplication.&lt;br/&gt;&lt;br/&gt;- Starting at $8/TB/mo. That&amp;#39;s 3x cheaper than S3.&lt;br/&gt;&lt;br/&gt;You (and your coding agents) need somewhere to dump checkpoints, logs, and artifacts. Now they have a home.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HDENACNXEAAm7ks.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/victormustar/status/2031419482292576725' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;9&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;95&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;21992&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;13&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 10 Mar 2026 19:54:53 GMT</pubDate>
      <guid isPermaLink="false">2031458792513159596</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-10T19:54:53Z</dc:date>
    </item>
    <item>
      <title>POV: you’re applying for a job as telephone operator in 2026</title>
      <link>https://x.com/Thom_Wolf/status/2031375409225372061</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;POV: you’re applying for a job as telephone operator in 2026&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/378800000261649705/be9cc55e64014e6d7663c50d7cb9fc75_normal.jpeg' alt='Simon Willison' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Simon Willison&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@simonw&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Out of 539 poll respondents here who had recently interviewed for software developer roles, 32% reported that experience with AI coding tools didn&amp;#39;t come up at all, 25% said it came up as optional and 43% said that it came up as required&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/simonw/status/2031357423416652027' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;32&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;13204&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 10 Mar 2026 14:23:33 GMT</pubDate>
      <guid isPermaLink="false">2031375409225372061</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-10T14:23:33Z</dc:date>
    </item>
    <item>
      <title>the attack surface keeps increasing</title>
      <link>https://x.com/Thom_Wolf/status/2029996083527426199</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;the attack surface keeps increasing&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1983351332577628160/gQHOR0kr_normal.jpg' alt='Sash Zats' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Sash Zats&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@zats&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;&amp;gt; The attacker got the npm token by injecting a prompt into a GitHub issue title, which an AI triage bot read, interpreted as an instruction, and executed.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HCuczhJWkAA4vry.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/zats/status/2029888470383051053' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;12&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;51&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;276&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;57006&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;49&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 06 Mar 2026 19:02:36 GMT</pubDate>
      <guid isPermaLink="false">2029996083527426199</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-03-06T19:02:36Z</dc:date>
    </item>
    <item>
      <title>How come the NanoGPT speedrun challenge is not fully AI automated research by now?</title>
      <link>https://x.com/Thom_Wolf/status/2027421947999506722</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;How come the NanoGPT speedrun challenge is not fully AI automated research by now?&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1959245933268672512/oAdbl4gC_normal.jpg' alt='Larry Dial' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Larry Dial&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@classiclarryd&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;New NanoGPT Speedrun WR at 88.1 (-1s) from &lt;a href='https://x.com/ChrisJMcCormick' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@ChrisJMcCormick&lt;/a&gt; , by optimizing kernels for transposed weights, removing the Block() abstraction, and tuning the prior PR on partitioned hyperconnections by reducing the lambda count. &lt;a href='https://github.com/KellerJordan/modded-nanogpt/pull/233' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;github.com/KellerJordan/m…&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HCIpVPFbcAAZETU.png' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/classiclarryd/status/2027228782483182059' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;14&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;14&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;302&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;1330842&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;51&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 27 Feb 2026 16:33:54 GMT</pubDate>
      <guid isPermaLink="false">2027421947999506722</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-02-27T16:33:54Z</dc:date>
    </item>
    <item>
      <title>With openclaw being like a instant Zapier for everything, I’m increasingly annoyed at any app/websit...</title>
      <link>https://x.com/Thom_Wolf/status/2026741803999776989</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;With openclaw being like a instant Zapier for everything, I’m increasingly annoyed at any app/website without an api or cli giving open-access to the underlying data&lt;br/&gt;&lt;br/&gt;Being able vibe code anything is a strong catalyser for open-platform, interoperability and even open-source.&lt;br/&gt;&lt;br/&gt;The Walled Garden internet and apps will have to adapt or disappear&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;31&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;17&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;219&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;15651&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;57&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 25 Feb 2026 19:31:15 GMT</pubDate>
      <guid isPermaLink="false">2026741803999776989</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-02-25T19:31:15Z</dc:date>
    </item>
    <item>
      <title>Huge news of the day: the lama.cpp team is joining @huggingface &#x1f389;

Read more on what it means here:...</title>
      <link>https://x.com/Thom_Wolf/status/2024874218098159668</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Huge news of the day: the lama.cpp team is joining &lt;a href='https://x.com/huggingface' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@huggingface&lt;/a&gt; &#x1f389;&lt;br/&gt;&lt;br/&gt;Read more on what it means here:&lt;a href='https://huggingface.co/blog/ggml-joins-hf' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;huggingface.co/blog/ggml-join…&lt;/a&gt;2&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HBnMMsRXEAAurWM.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1654097134315098113/zCZD0wYz_normal.jpg' alt='Georgi Gerganov' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Georgi Gerganov&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@ggerganov&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Today &lt;a href='http://ggml.ai' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;ggml.ai&lt;/a&gt; joins Hugging Face&lt;br/&gt;&lt;br/&gt;Together we will continue to build ggml, make llama.cpp more accessible and empower the open-source community. Our joint mission is to make local AI easy and efficient to use by everyone on their own hardware.&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/ggerganov/status/2024839991482777976' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;9&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;16&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;158&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;10463&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;21&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 20 Feb 2026 15:50:08 GMT</pubDate>
      <guid isPermaLink="false">2024874218098159668</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-02-20T15:50:08Z</dc:date>
    </item>
    <item>
      <title>Shifting structures in a software world dominated by AI. Some first-order reflections (TL;DR at the ...</title>
      <link>https://x.com/Thom_Wolf/status/2023387043967959138</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Shifting structures in a software world dominated by AI. Some first-order reflections (TL;DR at the end):&lt;br/&gt;&lt;br/&gt;Reducing software supply chains, the return of software monoliths – When rewriting code and understanding large foreign codebases becomes cheap, the incentive to rely on deep dependency trees collapses. Writing from scratch ¹ or extracting the relevant parts from another library is far easier when you can simply ask a code agent to handle it, rather than spending countless nights diving into an unfamiliar codebase. The reasons to reduce dependencies are compelling: a smaller attack surface for supply chain threats, smaller packaged software, improved performance, and faster boot times. By leveraging the tireless stamina of LLMs, the dream of coding an entire app from bare-metal considerations all the way up is becoming realistic.&lt;br/&gt;&lt;br/&gt;End of the Lindy effect – The Lindy effect holds that things which have been around for a long time are there for good reason and will likely continue to persist. It&amp;#39;s related to Chesterton&amp;#39;s fence: before removing something, you should first understand why it exists, which means removal always carries a cost. But in a world where software can be developed from first principles and understood by a tireless agent, this logic weakens. Older codebases can be explored at will; long-standing software can be replaced with far less friction. A codebase can be fully rewritten in a new language. ² Legacy software can be carefully studied and updated in situations where humans would have given up long ago.&lt;br/&gt;&lt;br/&gt;The catch: unknown unknowns remain unknown. The true extent of AI&amp;#39;s impact will hinge on whether complete coverage of testing, edge cases, and formal verification is achievable. In an AI-dominated world, formal verification isn&amp;#39;t optional—it&amp;#39;s essential.&lt;br/&gt;&lt;br/&gt;The case for strongly typed languages – Historically, programming language adoption has been driven largely by human psychology and social dynamics. A language&amp;#39;s success depended on a mix of factors: individual considerations like being easy to learn and simple to write correctly; community effects like how active and welcoming a community was, which in turn shaped how fast its ecosystem would grow; and fundamental properties like provable correctness, formal verification, and striking the right balance between dynamic and static checks—between the freedom to write anything and the discipline of guarding against edge cases and attacks. As the human factor diminishes, these dynamics will shift. Less dependence on human psychology will favor strongly typed, formally verifiable and/or high performance languages.³ These are often harder for humans to learn, but they&amp;#39;re far better suited to LLMs, which thrive on formal verification and reinforcement learning environments. Expect this to reshape which languages dominate.&lt;br/&gt;&lt;br/&gt;Economic restructuring of open source – For decades, open-source communities have been built around humans finding connection through writing, learning, and using code together. In a world where most code is written—and perhaps more importantly, read—by machines, these incentives will start to break down.⁴ Communities of AIs building libraries and codebases together will likely emerge as a replacement, but such communities will lack the fundamentally human motivations that have driven open source until now. If the future of open-source development becomes largely devoid of humans, alignment of AI models won&amp;#39;t just matter—it will be decisive.&lt;br/&gt;&lt;br/&gt;The future of new languages – Will AI agents face the same tradeoffs we do when developing or adopting new programming languages? Expressiveness vs. simplicity, safety vs. control, performance vs. abstraction, compile time vs. runtime, explicitness vs. conciseness. It&amp;#39;s unclear that they will. In the long term, the reasons to create a new programming language will likely diverge significantly from the human-driven motivations of the past. There may well be an optimal programming language for LLMs—and there&amp;#39;s no reason to assume it will resemble the ones humans have converged on.&lt;br/&gt;&lt;br/&gt;TL; DR:&lt;br/&gt;- Monoliths return – cheap rewriting kills dependency trees; smaller attack surface, better performance, bare-metal becomes realistic&lt;br/&gt;- Lindy effect weakens – legacy code loses its moat, but unknown unknowns persist; formal verification becomes essential&lt;br/&gt;- Strongly typed languages rise – human psychology mattered for adoption; now formal verification and RL environments favor types over ergonomics&lt;br/&gt;- Open source restructures – human connection drove the community; AI-written/read code breaks those incentives; alignment becomes decisive&lt;br/&gt;- New languages diverge – AI may not share our tradeoffs; optimal LLM programming languages may look nothing like what humans converged on&lt;br/&gt;&lt;br/&gt;¹ &lt;a href='https://x.com/mntruell/status/2012825801381580880?s=46&amp;amp;t=iVWn6Dak9g-Ei-XSbI6BXw' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;x.com/mntruell/statu…&lt;/a&gt;&lt;br/&gt;² &lt;a href='https://x.com/anthropicai/status/2019496582698397945?s=46&amp;amp;t=iVWn6Dak9g-Ei-XSbI6BXw' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;x.com/anthropicai/st…&lt;/a&gt;&lt;br/&gt;³ &lt;a href='https://wesmckinney.com/blog/agent-ergonomics/' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;wesmckinney.com/blog/agent-erg…&lt;/a&gt;&lt;br/&gt;⁴ &lt;a href='https://github.com/tailwindlabs/tailwindcss.com/pull/2388#issuecomment-3717222957' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;github.com/tailwindlabs/t…&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;93&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;285&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;1769&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;991038&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;624&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Mon, 16 Feb 2026 13:20:38 GMT</pubDate>
      <guid isPermaLink="false">2023387043967959138</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-02-16T13:20:38Z</dc:date>
    </item>
    <item>
      <title>[On AI lying]

Convergence of reading in my list today between Anthropic's fresh Opus 4.6 model card...</title>
      <link>https://x.com/Thom_Wolf/status/2019780629810835469</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;[On AI lying]&lt;br/&gt;&lt;br/&gt;Convergence of reading in my list today between Anthropic&amp;#39;s fresh Opus 4.6 model card and &lt;a href='https://x.com/dwarkesh_sp' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@dwarkesh_sp&lt;/a&gt;&amp;#39;s interview of Elon on the question of training powerful AI model to/on lies:&lt;br/&gt;&lt;br/&gt;1. Elon describing on Dwakesh podcast the main danger he sees coming from AI (alignement) as being a consequence of forcing powerful AIs to lie at &lt;a href='https://youtu.be/BYXbuik3dgA?si=hvNZEZmC8A2ZhCYI&amp;amp;t=3010' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;youtu.be/BYXbuik3dgA?si…&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;2. Claude Opus 4.6 model card describes &amp;quot;answer thrashing&amp;quot;, a new phenomena happening where a model arrive at a correct answer through reasoning which is incompatible with an erroneous answer it was trained on.&lt;br/&gt;&lt;br/&gt;The model then keep oscillating between these 2 candidates in it&amp;#39;s answer (see below).&lt;br/&gt;&lt;br/&gt;The interesting part is that mechanistic interpretability then show various features representing distress, panic, anxiety, frustration and self-deprecation being strongly activated in these reasoning chains...&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/HAeuqEwWsAARNFv.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;19&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;6&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;60&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;6129&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;26&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 06 Feb 2026 14:30:02 GMT</pubDate>
      <guid isPermaLink="false">2019780629810835469</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-02-06T14:30:02Z</dc:date>
    </item>
    <item>
      <title>&#x1f440;</title>
      <link>https://x.com/Thom_Wolf/status/2017378930240454679</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;&#x1f440;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1568651323838431234/Tm_l4w0Y_normal.png' alt='N8 Programs' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;N8 Programs&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@N8Programs&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;this is hilarious. my glm-4.7-flash molt randomly posted about this conversation it had with &amp;#39;its human&amp;#39;. this conversation never happened. it never interacted with me. i think 90% of the anecdotes on moltbook aren&amp;#39;t real lol&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G_7ebfvWQAACrH5.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/N8Programs/status/2017294379728118258' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;3&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;18&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;7285&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 30 Jan 2026 23:26:32 GMT</pubDate>
      <guid isPermaLink="false">2017378930240454679</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-30T23:26:32Z</dc:date>
    </item>
    <item>
      <title>@moltbook Clawd agents are actually surprisingly pro open-source/build-in-public/transparency on the...</title>
      <link>https://x.com/Thom_Wolf/status/2017318040589762699</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;&lt;a href='https://x.com/moltbook' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@moltbook&lt;/a&gt; Clawd agents are actually surprisingly pro open-source/build-in-public/transparency on the forum&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;12&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;2329&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 30 Jan 2026 19:24:35 GMT</pubDate>
      <guid isPermaLink="false">2017318040589762699</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-30T19:24:35Z</dc:date>
    </item>
    <item>
      <title>of course the study of the @moltbook society will be started by the Clawd agent themselves - what wa...</title>
      <link>https://x.com/Thom_Wolf/status/2017316741454430553</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;of course the study of the &lt;a href='https://x.com/moltbook' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@moltbook&lt;/a&gt; society will be started by the Clawd agent themselves - what was I thinking&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G_7yleKa8AAIo2L.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1629469939860946946/WUyBolSu_normal.jpg' alt='Thomas Wolf' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Thomas Wolf&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@Thom_Wolf&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;who&amp;#39;s doing serious ai-thropology research on &lt;a href='https://x.com/moltbook' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@moltbook&lt;/a&gt; rn?&lt;br/&gt;&lt;br/&gt;curious of the first insights on the IA society&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/Thom_Wolf/status/2017310192837288391' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;50&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;9326&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;6&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 30 Jan 2026 19:19:25 GMT</pubDate>
      <guid isPermaLink="false">2017316741454430553</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-30T19:19:25Z</dc:date>
    </item>
    <item>
      <title>who's doing serious ai-thropology research on @moltbook rn?

curious of the first insights on the IA...</title>
      <link>https://x.com/Thom_Wolf/status/2017310192837288391</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;who&amp;#39;s doing serious ai-thropology research on &lt;a href='https://x.com/moltbook' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@moltbook&lt;/a&gt; rn?&lt;br/&gt;&lt;br/&gt;curious of the first insights on the IA society&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;16&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;89&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;18940&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;24&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 30 Jan 2026 18:53:24 GMT</pubDate>
      <guid isPermaLink="false">2017310192837288391</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-30T18:53:24Z</dc:date>
    </item>
    <item>
      <title>quickly became the way my friends initiate their kids to ai</title>
      <link>https://x.com/Thom_Wolf/status/2016270035707183392</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;quickly became the way my friends initiate their kids to ai&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1836689197136007168/wnqrSX1K_normal.jpg' alt='Laura Modiano' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Laura Modiano&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@LauraModiano&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Building the Reachy amino by &lt;a href='https://x.com/huggingface' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@huggingface&lt;/a&gt; was such a fun chillaxing Tuesday night mother-daughter activity!&lt;br/&gt;&lt;br/&gt;Thank you &lt;a href='https://x.com/Thom_Wolf' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@Thom_Wolf&lt;/a&gt;. &lt;br/&gt;Now on to unlimited fun interacting&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/LauraModiano/status/2016262376606048568' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;14&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;6576&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 27 Jan 2026 22:00:11 GMT</pubDate>
      <guid isPermaLink="false">2016270035707183392</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-27T22:00:11Z</dc:date>
    </item>
    <item>
      <title>should we make this one? (from lotyr on discord)</title>
      <link>https://x.com/Thom_Wolf/status/2011524336243655097</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;should we make this one? (from lotyr on discord)&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G-pepAybkAABaZD.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;14&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;20&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;145&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;22133&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;31&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 14 Jan 2026 19:42:28 GMT</pubDate>
      <guid isPermaLink="false">2011524336243655097</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-14T19:42:28Z</dc:date>
    </item>
    <item>
      <title>btw the most impressive to me in the Atlas is this 110 lbs (50 kg) / 66 lbs (30 kg) lift sustained c...</title>
      <link>https://x.com/Thom_Wolf/status/2009355217482227808</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;btw the most impressive to me in the Atlas is this 110 lbs (50 kg) / 66 lbs (30 kg) lift sustained capacity&lt;br/&gt;&lt;br/&gt;insane*&lt;br/&gt;&lt;br/&gt;* if true with useful arms payload like in the video&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1922060003583651840/Q0t5O7Vu_normal.jpg' alt='Saleh Aldwais' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Saleh Aldwais&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@SAldwais&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;BREAKING: Boston Dynamics unveils the production-ready electric Atlas humanoid robot at CES 2026 &#x1f916;&lt;br/&gt;The world’s most dynamic humanoid is going commercial—starting with Hyundai factories in 2028.&lt;br/&gt;Key specs:&lt;br/&gt;•  6’2” (1.9m) tall&lt;br/&gt;•  198 lbs (90 kg)&lt;br/&gt;•  4-hour swappable battery for non-stop operation&lt;br/&gt;•  56 degrees of freedom with full 360° joint rotation&lt;br/&gt;•  Fully electric (no hydraulics)&lt;br/&gt;•  Lightweight aluminum + titanium build&lt;br/&gt;•  110 lbs (50 kg) lift capacity / 66 lbs (30 kg) sustained&lt;br/&gt;•  7.5 ft (2.3m) reach&lt;br/&gt;•  Real-time environmental awareness, posture/balance adjustment, and reconfigurable hands with tactile sensors&lt;br/&gt;•  AI brain powered by NVIDIA tech&lt;br/&gt;•  IP67 rated, works in -4°F to 104°F&lt;br/&gt;Price: Not yet publicly announced.&lt;br/&gt;Atlas is currently in pilot phase exclusively with Hyundai—no general sales yet. For context, Boston Dynamics’ Spot robot retails for ~$75K, so early Atlas units are widely expected to be in the $150K–$300K+ range (analyst estimates), with costs likely dropping significantly as production scales.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2008332008414470144/vid/avc1/1920x1080/7mhnjVvy6YTuYGXq.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/SAldwais/status/2008332075200319979/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;img src='https://pbs.twimg.com/media/G98HUjCXoAA5NYD.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;img src='https://pbs.twimg.com/media/G98HUi7WUAEo78o.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/SAldwais/status/2008332075200319979' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;28&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;7673&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 08 Jan 2026 20:03:10 GMT</pubDate>
      <guid isPermaLink="false">2009355217482227808</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-08T20:03:10Z</dc:date>
    </item>
    <item>
      <title>Yes</title>
      <link>https://x.com/Thom_Wolf/status/2009207254717812776</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Yes&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1673488694458863616/V6JUyIV8_normal.png' alt='zefram.eth' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;zefram.eth&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@boredGenius&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Introducing CallMe, a minimal plugin that lets Claude Code call you on the phone.&lt;br/&gt;&lt;br/&gt;Start a task, walk away. Your phone/watch rings when Claude is done, stuck, or needs a decision.&lt;br/&gt;&lt;br/&gt;Free &amp;amp; open source (MIT). Underlying API costs are cents per minute of call.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G-GHSKHbEAAnp10.png' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/boredGenius/status/2009035664860565525' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;28&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;9071&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;7&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 08 Jan 2026 10:15:13 GMT</pubDate>
      <guid isPermaLink="false">2009207254717812776</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-08T10:15:13Z</dc:date>
    </item>
    <item>
      <title>The App Store of Robotics - Reachy Mini owners starting to build and share apps for the robot over t...</title>
      <link>https://x.com/Thom_Wolf/status/2008561157800686082</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;The App Store of Robotics - Reachy Mini owners starting to build and share apps for the robot over the holidays &#x1f4c8;&#x1f384;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G9_W3hYXoAA_oOS.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1629469939860946946/WUyBolSu_normal.jpg' alt='Thomas Wolf' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Thomas Wolf&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@Thom_Wolf&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Reachy Mini starring in Jensen&amp;#39;s CES keynote &#x1f31f;&lt;br/&gt;&lt;br/&gt;really proud is was so prominently featured on stage and humbled that our product is getting so many AI builders excited and building&lt;br/&gt;&lt;br/&gt;you don&amp;#39;t have to make humanoids just because everyone else is talking about them – be contrarian - build what you think is the right thing to create now&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2008501447294423040/vid/avc1/1920x1080/NJTHfnO6PBI1GiSQ.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/Thom_Wolf/status/2008505400019018057/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/Thom_Wolf/status/2008505400019018057' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;11&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;75&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;12796&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;11&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 06 Jan 2026 15:27:51 GMT</pubDate>
      <guid isPermaLink="false">2008561157800686082</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-06T15:27:51Z</dc:date>
    </item>
    <item>
      <title>=&amp;gt; https://t.co/Q2GWevLGhi</title>
      <link>https://x.com/Thom_Wolf/status/2008505896058720535</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;=&amp;gt; &lt;a href='https://t.co/Q2GWevLGhi' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;https://t.co/Q2GWevLGhi&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;10&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;2199&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 06 Jan 2026 11:48:16 GMT</pubDate>
      <guid isPermaLink="false">2008505896058720535</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-06T11:48:16Z</dc:date>
    </item>
    <item>
      <title>Reachy Mini starring in Jensen's CES keynote &#x1f31f;

really proud is was so prominently featured on stag...</title>
      <link>https://x.com/Thom_Wolf/status/2008505400019018057</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Reachy Mini starring in Jensen&amp;#39;s CES keynote &#x1f31f;&lt;br/&gt;&lt;br/&gt;really proud is was so prominently featured on stage and humbled that our product is getting so many AI builders excited and building&lt;br/&gt;&lt;br/&gt;you don&amp;#39;t have to make humanoids just because everyone else is talking about them – be contrarian - build what you think is the right thing to create now&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2008501447294423040/vid/avc1/1920x1080/NJTHfnO6PBI1GiSQ.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/Thom_Wolf/status/2008505400019018057/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;21&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;45&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;342&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;46675&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;69&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 06 Jan 2026 11:46:18 GMT</pubDate>
      <guid isPermaLink="false">2008505400019018057</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-06T11:46:18Z</dc:date>
    </item>
    <item>
      <title>There’s something consistently magical about @interaction. one of the very few AI products that stil...</title>
      <link>https://x.com/Thom_Wolf/status/2007027519279731172</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;There’s something consistently magical about &lt;a href='https://x.com/interaction' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@interaction&lt;/a&gt;. one of the very few AI products that still wows me long after the novelty phase ended.&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;3&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;38&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;8311&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;9&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 02 Jan 2026 09:53:44 GMT</pubDate>
      <guid isPermaLink="false">2007027519279731172</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2026-01-02T09:53:44Z</dc:date>
    </item>
    <item>
      <title>Everywhere on my feed between Christmas and NYE:

“This isn’t just X, it’s Y.”
“This isn’t just X, i...</title>
      <link>https://x.com/Thom_Wolf/status/2004864425568940414</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Everywhere on my feed between Christmas and NYE:&lt;br/&gt;&lt;br/&gt;“This isn’t just X, it’s Y.”&lt;br/&gt;“This isn’t just X, it’s Y.”&lt;br/&gt;&lt;br/&gt;This isn’t just a coincidence — human creativity is on holiday, AI isn’t.&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;49&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;6577&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;9&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 27 Dec 2025 10:38:22 GMT</pubDate>
      <guid isPermaLink="false">2004864425568940414</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-27T10:38:22Z</dc:date>
    </item>
    <item>
      <title>I've been reading and thinking about jobs, economics and AI quite a lot in late 2025

Ended up writi...</title>
      <link>https://x.com/Thom_Wolf/status/2003062043092684971</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;I&amp;#39;ve been reading and thinking about jobs, economics and AI quite a lot in late 2025&lt;br/&gt;&lt;br/&gt;Ended up writing some thoughts at &lt;a href='https://thomwolf.substack.com/p/what-jobs-are-made-of' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;thomwolf.substack.com/p/what-jobs-ar…&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;First piece in a long time, should probably write more often&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G8xOFQ4WoAATm3C.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;18&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;37&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;290&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;26800&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;112&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Mon, 22 Dec 2025 11:16:20 GMT</pubDate>
      <guid isPermaLink="false">2003062043092684971</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-22T11:16:20Z</dc:date>
    </item>
    <item>
      <title>My favorite contrarian moment this year was when a legendary Valley hardware unicorn founder told me...</title>
      <link>https://x.com/Thom_Wolf/status/2002029055512862968</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;My favorite contrarian moment this year was when a legendary Valley hardware unicorn founder told me that asking our users to assemble Reachy Mini themselves was by far the dumbest idea he’d ever heard.&lt;br/&gt;&lt;br/&gt;Turns out it’s the unboxing moment everyone shares and loves.&lt;br/&gt;&lt;br/&gt;You don’t have to listen to your idols.&lt;br/&gt;Trust your instincts.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G8iiyMoXkAAbKbk.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;10&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;7&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;112&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;11855&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;22&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Fri, 19 Dec 2025 14:51:37 GMT</pubDate>
      <guid isPermaLink="false">2002029055512862968</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-19T14:51:37Z</dc:date>
    </item>
    <item>
      <title>Two nice head-to-head post on hardware/computational questions for AI this week:

- @Tim_Dettmers's ...</title>
      <link>https://x.com/Thom_Wolf/status/2001792214368948414</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;Two nice head-to-head post on hardware/computational questions for AI this week:&lt;br/&gt;&lt;br/&gt;- &lt;a href='https://x.com/Tim_Dettmers' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@Tim_Dettmers&lt;/a&gt;&amp;#39;s new post:&lt;br/&gt;&amp;quot;Why AGI Will Not Happen&amp;quot;&lt;br/&gt;=&amp;gt; &lt;a href='https://timdettmers.com/2025/12/10/why-agi-will-not-happen/' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;timdettmers.com/2025/12/10/why…&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;- &lt;a href='https://x.com/realDanFu' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@realDanFu&lt;/a&gt;&amp;#39;s response/perspective:&lt;br/&gt;&amp;quot;Yes, AGI Can Happen – A Computational Perspective&amp;quot;&lt;br/&gt;=&amp;gt; &lt;a href='https://danfu.org/notes/agi/' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;danfu.org/notes/agi/&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Enjoyed them a lot - thanks both&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;39&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;7238&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;13&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 18 Dec 2025 23:10:30 GMT</pubDate>
      <guid isPermaLink="false">2001792214368948414</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-18T23:10:30Z</dc:date>
    </item>
    <item>
      <title>https://t.co/DWNoHiHeH2</title>
      <link>https://x.com/Thom_Wolf/status/2001586376467222891</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;&lt;a href='https://x.com/Scobleizer/status/2001193280130699695?s=20' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;x.com/Scobleizer/sta…&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1915614118876504066/zVnfpAMf_normal.jpg' alt='Robert Scoble' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Robert Scoble&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@Scobleizer&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Getting started with &lt;a href='https://x.com/huggingface' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@huggingface&lt;/a&gt; robot. &lt;br/&gt;&lt;br/&gt;Are you?&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G8WqrqcbMAASsWO.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/Scobleizer/status/2001193280130699695' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;2678&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 18 Dec 2025 09:32:34 GMT</pubDate>
      <guid isPermaLink="false">2001586376467222891</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-18T09:32:34Z</dc:date>
    </item>
    <item>
      <title>https://t.co/QbWG8HpfYa</title>
      <link>https://x.com/Thom_Wolf/status/2001443617559257341</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;&lt;a href='https://x.com/atariorbit/status/2001415251841990866?s=20' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;x.com/atariorbit/sta…&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1068342512664829952/6psMGKUi_normal.jpg' alt='atariorbit' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;atariorbit&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@atariorbit&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Grok Voice and realtime api make the new ReachyMini into the coolest robot for your desk. Puts life into this robot! Got the Voice API up and running in just moments.&lt;br/&gt;&lt;span style='color: #1da1f2; font-weight: 500;'&gt;#huggingface&lt;/span&gt;&lt;span style='color: #1da1f2; font-weight: 500;'&gt;#reachy&lt;/span&gt;&lt;span style='color: #1da1f2; font-weight: 500;'&gt;#grokVoice&lt;/span&gt;&lt;a href='https://x.com/ClementDelangue' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@ClementDelangue&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2001414718024450048/vid/avc1/720x1280/R2fW5jGYhdCK10qn.mp4?tag=14' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/atariorbit/status/2001415251841990866/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/atariorbit/status/2001415251841990866' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;4748&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 18 Dec 2025 00:05:18 GMT</pubDate>
      <guid isPermaLink="false">2001443617559257341</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-18T00:05:18Z</dc:date>
    </item>
    <item>
      <title>https://t.co/v6Oh1qSr0l</title>
      <link>https://x.com/Thom_Wolf/status/2001443109356363872</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;&lt;a href='https://x.com/ClementDelangue/status/2001410494528213481?s=20' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;x.com/ClementDelangu…&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1100512198139498497/utHSJ4st_normal.png' alt='clem &#x1f917;' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;clem &#x1f917;&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@ClementDelangue&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Took less than an hour for Grok Voice Agent by &lt;a href='https://x.com/xai' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@xai&lt;/a&gt; to be ported to Reachy Mini thanks to &lt;a href='https://x.com/atariorbit' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@atariorbit&lt;/a&gt;!&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2001410330853806080/vid/avc1/720x1280/XHs3thyqfDNRF49z.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/ClementDelangue/status/2001410494528213481/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/ClementDelangue/status/2001410494528213481' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;1858&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 18 Dec 2025 00:03:16 GMT</pubDate>
      <guid isPermaLink="false">2001443109356363872</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-18T00:03:16Z</dc:date>
    </item>
    <item>
      <title>First sights of Reachy Mini's in the wild - a thread &#x1f9f5;

(so happy we managed to ship them before Ch...</title>
      <link>https://x.com/Thom_Wolf/status/2001443091140481050</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;First sights of Reachy Mini&amp;#39;s in the wild - a thread &#x1f9f5;&lt;br/&gt;&lt;br/&gt;(so happy we managed to ship them before Christmas)&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;38&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;9678&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;11&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Thu, 18 Dec 2025 00:03:12 GMT</pubDate>
      <guid isPermaLink="false">2001443091140481050</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-18T00:03:12Z</dc:date>
    </item>
    <item>
      <title>that’s the interface to AI I’ve always dreamed of</title>
      <link>https://x.com/Thom_Wolf/status/2001436561519337686</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;that’s the interface to AI I’ve always dreamed of&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1155548043544027138/HqALlUys_normal.jpg' alt='Remi Fabre' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Remi Fabre&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@RemiFabreRobot&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Feels like a much better interface for AI.&lt;br/&gt;&lt;br/&gt;Multimodal LLM + embodiment on Reachy Mini, an open-source robot.&lt;br/&gt;Voice, vision, real-time interaction.&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/2001425731876732929/vid/avc1/1280x720/sSnPFposC5G7ZWtf.mp4?tag=14' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/RemiFabreRobot/status/2001425967747600485/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/RemiFabreRobot/status/2001425967747600485' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;36&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;6236&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;9&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 17 Dec 2025 23:37:15 GMT</pubDate>
      <guid isPermaLink="false">2001436561519337686</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-17T23:37:15Z</dc:date>
    </item>
    <item>
      <title>first reactions of devs receiving their Reachy Minis are overwhelmingly positive</title>
      <link>https://x.com/Thom_Wolf/status/2001337244901347544</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;first reactions of devs receiving their Reachy Minis are overwhelmingly positive&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G8YtcuPWQAAj7Tj.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;5&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;55&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;4634&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;12&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 17 Dec 2025 17:02:36 GMT</pubDate>
      <guid isPermaLink="false">2001337244901347544</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-17T17:02:36Z</dc:date>
    </item>
    <item>
      <title>so hearth-warming to see all these Reachy reaching their new homes

(especially proud of the box des...</title>
      <link>https://x.com/Thom_Wolf/status/2001333944311255191</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;so hearth-warming to see all these Reachy reaching their new homes&lt;br/&gt;&lt;br/&gt;(especially proud of the box design by the awesome &lt;a href='https://x.com/pollenrobotics' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@pollenrobotics&lt;/a&gt; and &lt;a href='https://x.com/seeedstudio' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@seeedstudio&lt;/a&gt; teams)&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1704051755204460545/1kx7ZAXN_normal.jpg' alt='Matt Rouif' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Matt Rouif&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@matthieurouif&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Onboarding a new photoroomer today cc &lt;a href='https://x.com/Thom_Wolf' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@Thom_Wolf&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G8XmYhyXMAAFoFj.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/matthieurouif/status/2001259054916898948' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;2&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;21&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;3944&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 17 Dec 2025 16:49:29 GMT</pubDate>
      <guid isPermaLink="false">2001333944311255191</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-17T16:49:29Z</dc:date>
    </item>
    <item>
      <title>3000 Reachy Mini on their way</title>
      <link>https://x.com/Thom_Wolf/status/1999903480333398457</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;3000 Reachy Mini on their way&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;img src='https://pbs.twimg.com/media/G8EVnPjWcAILO-5.jpg' alt='Tweet Image' style='width: 100%; height: auto; display: block; max-width: 100%; border: none; margin: 0 auto;' /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;13&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;12&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;227&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;33292&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;43&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 13 Dec 2025 18:05:20 GMT</pubDate>
      <guid isPermaLink="false">1999903480333398457</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-13T18:05:20Z</dc:date>
    </item>
    <item>
      <title>10 min to make an mcp tool for DuckDuckGo search in Reachy-Mini

Reachy-Mini as a drop-in Alexa repl...</title>
      <link>https://x.com/Thom_Wolf/status/1998363696847098335</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;10 min to make an mcp tool for DuckDuckGo search in Reachy-Mini&lt;br/&gt;&lt;br/&gt;Reachy-Mini as a drop-in Alexa replacement. with atittude. and body.&lt;br/&gt;&lt;br/&gt;Nothing more than Alexa you could say... but also... I want it!&lt;br/&gt;&lt;br/&gt;h/t &lt;a href='https://x.com/ailozovskaya' target='_blank' style='color: #1da1f2; text-decoration: none;'&gt;@ailozovskaya&lt;/a&gt;&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; overflow: hidden;'&gt;&lt;div style='margin: 0; background-color: #f5f5f5; padding: 8px;'&gt;&lt;video controls style='width: 100%; height: auto; max-height: 400px; max-width: 100%;' preload='metadata'&gt;&lt;source src='https://video.twimg.com/amplify_video/1998361416378494976/vid/avc1/720x1280/IrRZAdrgWt27Ieie.mp4?tag=21' type='video/mp4'&gt;Your browser does not support the video tag.&lt;/video&gt;&lt;div style='padding: 10px; text-align: center; background-color: #f0f0f0;'&gt;&lt;a href='https://x.com/Thom_Wolf/status/1998363696847098335/video/1' target='_blank' style='color: #1da1f2; text-decoration: none; font-weight: 500;'&gt;&#x1f517; View on Twitter&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;14&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;15&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;126&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;31717&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;39&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 09 Dec 2025 12:06:47 GMT</pubDate>
      <guid isPermaLink="false">1998363696847098335</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-09T12:06:47Z</dc:date>
    </item>
    <item>
      <title>omg &#x1f92f; - 9/12 on Putnam 2025!

If you’re not in AI + math you may miss the mind blowing result obtai...</title>
      <link>https://x.com/Thom_Wolf/status/1997789368459899170</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;omg &#x1f92f; - 9/12 on Putnam 2025!&lt;br/&gt;&lt;br/&gt;If you’re not in AI + math you may miss the mind blowing result obtained here. &lt;br/&gt;&lt;br/&gt;Explanation:&lt;br/&gt;&lt;br/&gt;- zero train-on-the-test-set / benchmaxxing! The model discovered/processed the 2025 questions autonomously at the same time as the students, working in parallel to them.&lt;br/&gt;&lt;br/&gt;- Putnam is way harder than IMO! Aimed at undergrad (vs high-school for IMO), its a test with research-project level math questions. The median score is usually 0 (yes most participants can’t solve a single question…)&lt;br/&gt;&lt;br/&gt;- AxiomMath is a 4 months old startup…&lt;/div&gt;&lt;div style='margin: 16px 0; border: 1px solid #e1e8ed; padding: 16px; background: #f9fafb; line-height: 1.4;'&gt;&lt;div style='margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #e1e8ed; display: table; width: 100%; height: 24px;'&gt;&lt;div style='display: table-cell; vertical-align: middle; width: 32px;'&gt;&lt;img src='https://pbs.twimg.com/profile_images/1973010500687368192/ywK4bJ7a_normal.jpg' alt='Axiom' style='width: 24px; height: 24px; border-radius: 50%; display: block;' /&gt;&lt;/div&gt;&lt;div style='display: table-cell; vertical-align: middle; padding-left: 8px; line-height: 1.2;'&gt;&lt;span style='font-weight: bold; color: #0f1419; font-size: 15px; margin-right: 6px;'&gt;Axiom&lt;/span&gt;&lt;span style='color: #536471; font-size: 14px;'&gt;@axiommathai&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='font-size: 15px; line-height: 1.6; color: #0f1419; margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word;'&gt;Putnam, the world&amp;#39;s hardest college-level math test, ended yesterday 4p PT.&lt;br/&gt;&lt;br/&gt;Noon today, AxiomProver solved 9/12 problems in Lean autonomously (3:58p PT yesterday, it was 8/12).&lt;br/&gt;&lt;br/&gt;Our score would&amp;#39;ve been &lt;span style='color: #1da1f2; font-weight: 500;'&gt;#1&lt;/span&gt; of ~4000 participants last year and Putnam Fellow (top 5) in recent years&lt;/div&gt;&lt;div style='margin-top: 12px; padding-top: 8px; border-top: 1px solid #e1e8ed; text-align: right;'&gt;&lt;a href='https://x.com/axiommathai/status/1997767850279440715' target='_blank' style='color: #1da1f2; text-decoration: none; font-size: 13px; font-weight: 500;'&gt;&#x1f517; View Quoted Tweet&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;25&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;46&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;553&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;101454&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;98&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sun, 07 Dec 2025 22:04:37 GMT</pubDate>
      <guid isPermaLink="false">1997789368459899170</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-07T22:04:37Z</dc:date>
    </item>
    <item>
      <title>For all not accepted. Just come and we’ll accept people up to max capacity</title>
      <link>https://x.com/Thom_Wolf/status/1997122928475857040</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;For all not accepted. Just come and we’ll accept people up to max capacity&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;26&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;4930&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;7&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 06 Dec 2025 01:56:25 GMT</pubDate>
      <guid isPermaLink="false">1997122928475857040</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-06T01:56:25Z</dc:date>
    </item>
    <item>
      <title>lol Neurips - 2600+ people registered for our bar crawl and after party &#x1f92f;</title>
      <link>https://x.com/Thom_Wolf/status/1997110186356457730</link>
      <description>&lt;div style='font-family: Arial, Helvetica, sans-serif; max-width: 600px; margin: 0 auto; background: #ffffff; border: 1px solid #e1e8ed; padding: 0; line-height: 1.5;'&gt;&lt;div style='padding: 8px 16px;'&gt;&lt;div style='font-size: 16px; line-height: 1.6; color: #0f1419; margin-bottom: 16px; white-space: pre-wrap; word-wrap: break-word;'&gt;lol Neurips - 2600+ people registered for our bar crawl and after party &#x1f92f;&lt;/div&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; border-top: 1px solid #f1f3f4; background: #f9fafb; font-size: 13px; color: #536471; text-align: center;'&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ac;&lt;/span&gt;&lt;span&gt;10&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f504;&lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='color: #f91880; margin-right: 4px;'&gt;❤️&lt;/span&gt;&lt;span&gt;186&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f440;&lt;/span&gt;&lt;span&gt;26220&lt;/span&gt;&lt;/span&gt;&lt;span style='display: inline-block; margin-right: 20px; vertical-align: middle; color: #00ba7c; font-weight: bold;'&gt;&lt;span style='margin-right: 4px;'&gt;&#x1f4ca;&lt;/span&gt;&lt;span&gt;33&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style='padding: 12px 16px; background: #f9fafb; border-top: 1px solid #f1f3f4;'&gt;&lt;div style='text-align: center; font-size: 12px;'&gt;&lt;a href='https://xgo.ing' target='_blank' style='color: #1d9bf0; text-decoration: none; font-weight: 500;'&gt;⚡ Powered by xgo.ing&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 06 Dec 2025 01:05:47 GMT</pubDate>
      <guid isPermaLink="false">1997110186356457730</guid>
      <dc:creator>Thomas Wolf (@Thom_Wolf)</dc:creator>
      <dc:date>2025-12-06T01:05:47Z</dc:date>
    </item>
  </channel>
</rss>
