<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thoughtbot="https://thoughtbot.com/feeds/" xmlns:feedpress="https://feed.press/xmlns" xmlns:media="http://search.yahoo.com/mrss/" xmlns:podcast="https://podcastindex.org/namespace/1.0">
  <feedpress:locale>en</feedpress:locale>
  <link rel="hub" href="https://feedpress.superfeedr.com/"/>
  <title>Giant Robots Smashing Into Other Giant Robots</title>
  <subtitle>Written by thoughtbot, your expert partner for design and development.
</subtitle>
  <id>https://robots.thoughtbot.com/</id>
  <link href="https://thoughtbot.com/blog"/>
  <link href="https://feed.thoughtbot.com/" rel="self"/>
  <updated>2026-06-03T00:00:00+00:00</updated>
  <author>
    <name>thoughtbot</name>
  </author>
  <entry>
    <title>Copy as Markdown: AI-friendly blog posts</title>
    <link rel="alternate" href="https://feed.thoughtbot.com/link/24077/17352975/copy-as-markdown-ai-friendly-blog-posts"/>
    <author>
      <name>Jared Turner</name>
    </author>
    <id>https://thoughtbot.com/blog/copy-as-markdown-ai-friendly-blog-posts</id>
    <published>2026-06-03T00:00:00+00:00</published>
    <updated>2026-06-02T14:48:08Z</updated>
    <content type="html"><![CDATA[<p>Our blog posts now have the option to <code>Copy as Markdown</code> to help our robotic friends more easily consume our content.</p>

<p>(It’s just up there, below the title)</p>

<p>Click the button and you will get this blog post copied to your clipboard in cleanly formatted <a href="https://www.markdownguide.org/getting-started/">Markdown</a>. Then paste it into any prompt to give your AI the context it needs.</p>
<h2 id="speaking-their-language">
  
    Speaking their language
  
</h2>

<p>Markdown is the lingua franca of LLMs and giving them the ability to read Markdown simplies their job (and uses fewer tokens) compared to parsing HTML directly.</p>

<p>We’ve done a few things to make their lives easier:</p>

<ul>
<li>The <code>Copy as Markdown</code> button - this is mostly for us humans, to more easily pass context to the AI</li>
<li>The Markdown version of any blog is available by appending <a href="https://thoughtbot.com/blog/copy-as-markdown-ai-friendly-blog-posts.md">.md</a> to the URL</li>
<li>A hint in the <code>&lt;head&gt;</code> of each post lets requesters know the markdown alternative is available</li>
</ul>
<div class="highlight"><pre class="highlight html"><code><span class="nt">&lt;link</span> <span class="na">rel=</span><span class="s">"alternate"</span> <span class="na">type=</span><span class="s">"text/markdown"</span> <span class="na">href=</span><span class="s">"https://thoughtbot.com/blog/copy-as-markdown-ai-friendly-blog-posts.md"</span><span class="nt">&gt;</span>
</code></pre></div>
<p>That’s it. No setup, no plugin, no incantation. Just click, paste, and happy contexting.</p>

<aside class="related-articles"><h2>If you enjoyed this post, you might also like:</h2>
<ul>
<li><a href="https://thoughtbot.com/blog/introducing-copycopter">Introducing Copycopter: let your clients do the copy writing</a></li>
<li><a href="https://thoughtbot.com/blog/copycopter-wysiwyg">Copycopter: Introducing a Simpler Way to Edit Copy</a></li>
<li><a href="https://thoughtbot.com/blog/human-centered-type">Human-Centered Typography</a></li>
</ul></aside>
<img src="https://feed.thoughtbot.com/link/24077/17352975.gif" height="1" width="1"/>]]></content>
    <summary>Our blog posts can now be copied as Markdown, so you can hand them to your favourite AI without the HTML cruft. Click, paste, and happy contexting.
</summary>
    <thoughtbot:auto_social_share>true</thoughtbot:auto_social_share>
  </entry>
  <entry>
    <title>The Bike Shed Ep 501:  What makes for good technical writing?</title>
    <link rel="alternate" href="https://feed.thoughtbot.com/link/24077/17352698/the-bike-shed-ep-501-what-makes-for-good-technical-writing"/>
    <author>
      <name>Joël Quenneville and Sally Hall</name>
    </author>
    <id>https://thoughtbot.com/blog/the-bike-shed-ep-501-what-makes-for-good-technical-writing</id>
    <published>2026-06-02T00:00:00+00:00</published>
    <updated>2026-06-02T14:21:12Z</updated>
    <content type="html"><![CDATA[Sally and Joël get technical as they lay out their thoughts on blog posts.<img src="https://feed.thoughtbot.com/link/24077/17352698.gif" height="1" width="1"/>]]></content>
    <summary>Sally and Joël get technical as they lay out their thoughts on blog posts.</summary>
    <thoughtbot:auto_social_share>false</thoughtbot:auto_social_share>
  </entry>
  <entry>
    <title>The Four Signals of AI Observability</title>
    <link rel="alternate" href="https://feed.thoughtbot.com/link/24077/17351768/the-four-signals-of-ai-observability"/>
    <author>
      <name>Matheus Sales</name>
    </author>
    <id>https://thoughtbot.com/blog/the-four-signals-of-ai-observability</id>
    <published>2026-06-01T00:00:00+00:00</published>
    <updated>2026-05-29T18:05:52Z</updated>
    <content type="html"><![CDATA[<p>A few months ago we shipped a chat experience to production. Users ask a
question, our app routes it through an LLM model, the model calls a few internal
tools, and an answer comes back from it.</p>

<p>It worked. Sort of.</p>

<p>When the model answered well, we had no idea why. When it answered badly, we had
no idea either. The model was a black box attached to our app, and our best
debugging tool was reading logs and guessing.</p>

<p>We realized our app could not answer a very normal operational question:</p>

<blockquote>
<p>Show us every chat where the user said the answer was bad, group them by which
version of the system prompt was loaded, and let us read the whole
conversation, including which tools the model called.</p>
</blockquote>

<p>It’s the AI equivalent of “show me every 500 errors on this endpoint after deploy X.”
But our app couldn’t answer it.</p>

<p>That was the trigger to stop looking for a smarter model and start looking to
add an observability layer. We ended up using <a href="https://langfuse.com/">Langfuse</a>, but the specific vendor
matters less than the capabilities. Helicone, Arize Phoenix, LangSmith, and
Braintrust all solve versions of the same problem.</p>

<p>After a couple of months of iteration, we noticed that the things we need came
in four flavors. I call them the four signals that every AI feature needs to
emit about itself.</p>

<ol>
<li>
<strong>A version on every prompt.</strong> Which exact words did the model see today?</li>
<li>
<strong>A trace shaped like the actual work.</strong> What did it call, in what order,
with what arguments?</li>
<li>
<strong>A score from the user.</strong> Did the human like the result?</li>
<li>
<strong>A score from another model.</strong> When the human is quiet, who is grading?</li>
</ol>

<p>Of course we can build an AI feature without all four. We just can’t improve it on purpose.</p>
<h2 id="a-version-on-every-prompt">
  
    A version on every prompt
  
</h2>

<p>The first thing we did was move every prompt out of the code and into a
versioned store the app fetches at runtime.</p>
<div class="highlight"><pre class="highlight ruby"><code><span class="c1"># The code never references a version. It asks for a label.</span>
<span class="n">template</span> <span class="o">=</span> <span class="no">PromptRepo</span><span class="p">.</span><span class="nf">compile</span><span class="p">(</span><span class="ss">name: </span><span class="s2">"classify_question"</span><span class="p">,</span> <span class="ss">label: </span><span class="s2">"production"</span><span class="p">)</span>

<span class="c1"># A human moves "production" between versions in the Langfuse UI.</span>
<span class="c1"># Promotion is a click. Rollback is a click. No deploy.</span>
</code></pre></div>
<p>The first time we rolled back a bad prompt by clicking a button instead of reverting a PR and waiting for CI, we knew this was the right shape.</p>

<p>Once prompts became content, the people closest to the problem became the people writing the prompts.
The feedback loop got much shorter, and the quality went up.</p>
<h2 id="a-trace-shaped-like-the-actual-work">
  
    A trace shaped like the actual work
  
</h2>

<p>A chat is not a single call. It is a small program. Classify the question, load the
right prompt, call a tool or two, then compose an answer.</p>

<p>If your trace is one row, you only know that something happened. A trace tree tells
you what actually happened. If your trace is a tree of calls, you have a database of decisions
the model made.</p>
<div class="highlight"><pre class="highlight plaintext"><code># Before: one log line, no shape
[INFO] chat_completed user_id=123 duration_ms=4200 tokens=1840

# After: a tree of decisions
trace: "chat"
  span:       load-prompt                  (version=production:v12)
  generation: classify-question            (model=haiku, category="billing")
  generation: compose-answer
    span:       tool-call.lookup_invoice   (200ms)
    span:       tool-call.lookup_customer  (180ms)
  generation: final-response               (model=sonnet, 1.2k tokens)
</code></pre></div>
<p>Each node carries the prompt name and version, the model id, token usage, and a
set of metadata fields we control. The customer it ran for, the category the
question was classified as, which tools ran, whether the conversation was new.</p>

<p>That metadata is the part that turned out to matter most.</p>

<p>The first time we filtered traces to “every chat in scope X where a
particular tool ran and the user said the answer was bad”, we had a small
realization. The trace list was not a log anymore. It was a queryable database
of decisions the model made.</p>

<p>The rule we would write on a sticky note: <strong>tag your traces with the dimensions
you will want to filter on later</strong>. It is cheap up front and impossible to add
later, once you wish you had it.</p>
<h2 id="a-score-from-the-user">
  
    A score from the user
  
</h2>

<p>Every assistant message in the UI has a thumbs up and a thumbs down. When a user
clicks one, we save a row and post it back to the observability tool as a score
on the trace.</p>

<p>A thumbs-down on its own isn’t actionable. A thumbs-down attached to a trace tells
you what the model saw, what it called, which prompt version produced it, and what category the
question fell into. Now you can ask: are downvotes concentrated in one category? On one prompt version? After one specific tool call?</p>

<p>You should review downvoted traces. It takes time, sometimes they’re noise, the user wanted something we don’t support,
or hit thumbs-down by accident. But maybe one in ten is a real signal, and that’s the one that turns into a prompt change,
a new tool, or a bug fix.</p>

<p>The point of all this plumbing is one new query.</p>

<blockquote>
<p>Show us every trace a user labeled bad.</p>
</blockquote>

<p>Once you can run that query and read the entire conversation that produced it
(prompt version, tool calls, model, latency, everything), you stop the guessing
game.</p>
<h2 id="a-score-from-another-model">
  
    A score from another model
  
</h2>

<p>Human feedback is useful but rare. Most users do not click anything.</p>

<p>So we added a second model to grade the first one. A background job pulls
finished chats, runs them through a separate “judge” prompt (versioned and
labeled in the same store as the production prompts), and writes the result
back as a score on the same trace.</p>

<p>Now the trace carries two streams of judgment. When the user and the judge
agree, our judge is in sync with real users. When they disagree, that is the
most interesting trace in the system. Either way, the judge runs on every chat,
so a regression shows up the same day we ship the prompt that caused it, not a
week later when somebody complains.</p>

<p>Our judge scores things like factuality, instruction-following, completeness,
hallucination, and whether the assistant actually used the right internal context.</p>

<p>We underestimated this one. A judge that catches a regression before it ships
is worth more than a faster or smarter model. It is the only signal that scales
when nobody is clicking thumbs.</p>

<p>The lesson we had to learn: the judge is just a prompt. It can be wrong. It
needs versioning and a Playground and a rollback button, exactly like a
user-facing prompt.</p>

<figure>
  <img src="https://images.thoughtbot.com/8exq7pktql71m95hlwd2jd0m457q_diagram.png" alt="A diagram showing the four signals of AI observability: prompt version, trace, user score, and judge score.">
  <figcaption style="text-align:center;">
    Each signal writes back to the same trace. That’s the whole trick
  </figcaption>
</figure>
<h2 id="four-signals-one-idea">
  
    Four signals, one idea
  
</h2>

<p>The four signals overlap, and that’s on purpose. The prompt version shows up on
the trace. The user score attaches to the trace. The judge score attaches to
the trace too. They are not really four separate things. They are the same idea
viewed from four different angles.</p>

<p><strong>Make the AI feature observable, then you can change it on purpose.</strong></p>

<p>For a while I treated AI features like a different category of software: less debuggable,
less testable, less under our control. An AI feature is software. It has inputs, makes decisions, produces outputs,
and can be observed like anything else.</p>

<p>The four signals overlap on purpose. They are one idea, make the system observable, viewed from four angles.
What changes once you have them isn’t that the model gets smarter. It’s that you stop hoping. You ship a prompt
change knowing the judge will tell if it regressed. You read a downvote knowing you can replay the exact conversation
that produced it. You promote a new prompt to production knowing you can roll it back in one click if it breaks.</p>

<p>The model is the engine. The observability layer is the dashboard. You can drive without one. You just can’t drive on purpose.</p>

<aside class="related-articles"><h2>If you enjoyed this post, you might also like:</h2>
<ul>
<li><a href="https://thoughtbot.com/blog/how-to-use-chatgpt-to-find-custom-software-consultants">How to Use ChatGPT to Find Custom Software Consultants</a></li>
<li><a href="https://thoughtbot.com/blog/using-machine-learning-to-answer-questions-from-internal-documentation">Using Machine Learning to Answer Questions from Internal Documentation</a></li>
<li><a href="https://thoughtbot.com/blog/priority-determines-product">Priority Determines Product</a></li>
</ul></aside>
<img src="https://feed.thoughtbot.com/link/24077/17351768.gif" height="1" width="1"/>]]></content>
    <summary>Treat your AI feature like a software you can watch, not a model you hope works.</summary>
    <thoughtbot:auto_social_share>true</thoughtbot:auto_social_share>
  </entry>
  <entry>
    <title>Can you really launch a tech business with a no-code app builder?</title>
    <link rel="alternate" href="https://feed.thoughtbot.com/link/24077/17350451/can-you-really-launch-a-tech-business-with-a-no-code-app-builder"/>
    <author>
      <name>Michelle Taute</name>
    </author>
    <id>https://thoughtbot.com/blog/can-you-really-launch-a-tech-business-with-a-no-code-app-builder</id>
    <published>2026-05-29T00:00:00+00:00</published>
    <updated>2026-05-26T17:44:15Z</updated>
    <content type="html"><![CDATA[<p>Sometimes AI really does feel like magic, and right now just about any no-code app builder provides that magical experience for entrepreneurs with big ideas but no coding skills.</p>

<p>You can spend half an hour typing a few details about your app into Lovable and create a simple, functional app with a polished user interface. Then add six new features over the weekend without ever hiring a developer or talking to a real user.</p>

<p>Besides Lovable, there’s Bolt, Base44, Bubble, Replit and others. These AI app generators allow just about anyone to build software by describing it through text-based prompts. No technical knowledge, <a href="https://thoughtbot.com/blog/using-a-design-sprint-to-find-focus-for-an-ai-solution">design sprint</a> or VC funding required. Many even allow you to export the code, so you can continue your project outside the tool.</p>

<p>It’s exciting to mockup ideas so quickly, but can you launch a real business with a no-code app builder? Are non-developers really creating high quality, production-ready code?</p>
<h2 id="making-money-with-ai-built-apps">
  
    Making money with AI-built apps
  
</h2>

<p>Startup culture loves to celebrate the outliers, the big, against-the-odds success stories. Lovable’s own ad campaign hypes ShiftNex, a healthcare staffing platform that hit $1 million annual recurring revenue (ARR) in five months, and Plinq, a background check app for dating built in 45 days that achieved $465,000 in ARR.</p>

<p>Not to be left out, Replit publicizes GEN AIPI, an AI education platform with training courses, payments, certifications and an admin system that was originally built in just three days with no dev team. The business achieved $180,000 in revenue in the first six weeks.</p>

<p>But the ad campaigns don’t include all the entrepreneurs who encountered big—or even impassable—roadblocks attempting similar business results. There’s often a point of diminishing returns with no-code app builders. At first, there’s instant gratification, but eventually, it becomes slower, harder and sometimes impossible to refine existing features or add new ones.</p>
<h2 id="are-ai-generated-apps-production-ready">
  
    Are AI-generated apps production ready?
  
</h2>

<p>Unless you’re in a highly regulated industry, you can push software created with a no-code app builder to production. But that’s just the first challenge on the road to a stable and profitable tech business. Will performance hold up when you hit 1,000 or 10,000 users? Can you easily add new features? When do you add an engineering team? </p>

<p>AI app generators allow you to bring an <a href="https://thoughtbot.com/blog/how-to-launch-a-lovable-mvp-in-2026">MVP</a> to life quickly, but scaling a successful, long-term tech business is much tougher. It’s nearly impossible for non-technical founders to evaluate potential risks in a code base or to even know what risks to look for in the first place. A big one is data security: How hard would it be for a bad actor to tap into sensitive data or user information?</p>

<p>And even when a founder does identify a bug or issue, it can be hard for an AI app builder to solve. If you already have users and things start breaking, it can easily become a hair-on-fire emergency. One that might leave traditional developers trying to get up to speed on thousands of lines of code with no context.</p>

<p>Then there’s an even bigger issue. Entrepreneurs are often so focused on what they can build that they forget to think about what they should build. With traditional development barriers gone, it’s easy to skip the strategic work of identifying a real problem to solve for real users. We’ve honed an entire <a href="https://thoughtbot.com/services/shaping-sprint">Shaping Sprint</a> process to work with founders on solidifying a product strategy and direction.</p>

<p>Despite these concerns, no-code app builders may be a fit for small businesses in industries with relatively low volume, regulation and security risk. We’re just at the beginning of AI app builders evolving and growing in capability, so it’s impossible to know exactly what the future holds. </p>
<h2 id="no-code-app-builders-20">
  
    No-code app builders 2.0
  
</h2>

<p>Right now, most software created by no-code app builders amounts to a prototype: useful for learning, but often difficult to scale into a successful long-term business. The current generation of tools is optimized for speed and instant gratification, but not necessarily for helping founders build the right product or make thoughtful product decisions along the way.</p>

<p>We think there’s an opportunity for the next generation of AI product tools to evolve beyond pure “vibe coding.”</p>

<p>Not just generating interfaces and features faster, but helping founders and teams:</p>

<ul>
<li>Think through product direction</li>
<li>Validate assumptions</li>
<li>Prioritize the right problems</li>
<li>And move from idea to real product more intentionally</li>
</ul>

<p>That’s part of why our team has been experimenting publicly with new workflows and AI-assisted product design approaches through our <a href="https://thoughtbot.com/blog/going-beyond-vibe-coding-with-readysetgo">ReadySetGo initiative</a>  and weekly <a href="https://www.youtube.com/watch?v=gZv7-hOSHD8&amp;list=PL8tzorAO7s0jaDFZYPAtR_AIHgD5J3a7d">AI in Focus livestream series.</a></p>

<p>We’re still early in exploring what this category could become, but one thing already feels clear: as AI lowers the barrier to building software, the ability to identify the <i>right</i> thing to build may become even more important.</p>

<aside class="related-articles"><h2>If you enjoyed this post, you might also like:</h2>
<ul>
<li><a href="https://thoughtbot.com/blog/how-to-use-chatgpt-to-find-custom-software-consultants">How to Use ChatGPT to Find Custom Software Consultants</a></li>
<li><a href="https://thoughtbot.com/blog/from-idea-to-impact-the-role-of-rapid-prototyping-in-agetech">From idea to impact: The role of rapid prototyping in AgeTech</a></li>
<li><a href="https://thoughtbot.com/blog/using-machine-learning-to-answer-questions-from-internal-documentation">Using Machine Learning to Answer Questions from Internal Documentation</a></li>
</ul></aside>
<img src="https://feed.thoughtbot.com/link/24077/17350451.gif" height="1" width="1"/>]]></content>
    <summary>AI app builders promise to turn anyone into a founder overnight, but is the code actually production-ready? We look at the success stories, technical risks and a path forward.</summary>
    <thoughtbot:auto_social_share>true</thoughtbot:auto_social_share>
  </entry>
  <entry>
    <title>Giant Robots Podcast Ep 612:  Do fish drink?</title>
    <link rel="alternate" href="https://feed.thoughtbot.com/link/24077/17349939/giant-robots-podcast-ep-612-do-fish-drink"/>
    <author>
      <name>Chad Pytel, Will Larry &amp;amp; Sami Birnbaum</name>
    </author>
    <id>https://thoughtbot.com/blog/giant-robots-podcast-ep-612-do-fish-drink</id>
    <published>2026-05-28T00:00:00+00:00</published>
    <updated>2026-05-28T14:12:14Z</updated>
    <content type="html"><![CDATA[The Giant Robots trio are back to discuss the development of thoughtbot’s ReadySetGo app, and whether AI might be causing developers to go backwards.<img src="https://feed.thoughtbot.com/link/24077/17349939.gif" height="1" width="1"/>]]></content>
    <summary>The Giant Robots trio are back to discuss the development of thoughtbot’s ReadySetGo app, and whether AI might be causing developers to go backwards.</summary>
    <thoughtbot:auto_social_share>false</thoughtbot:auto_social_share>
  </entry>
  <entry>
    <title>This week in #dev (May 15, 2026)</title>
    <link rel="alternate" href="https://feed.thoughtbot.com/link/24077/17349819/this-week-in-dev-may-15-2026"/>
    <author>
      <name>thoughtbot</name>
    </author>
    <id>https://thoughtbot.com/blog/this-week-in-dev-may-15-2026</id>
    <published>2026-05-28T00:00:00+00:00</published>
    <updated>2026-05-26T14:17:29Z</updated>
    <content type="html"><![CDATA[<p>Welcome to another edition of <a href="https://thoughtbot.com/blog/tags/this-week-in-dev">This Week in #dev</a>, a series of posts
where we bring some of our most interesting Slack conversations to the public.</p>
<h2 id="alternative-text-for-css-generated-content">
  
    Alternative Text for CSS-Generated Content
  
</h2>

<p><a href="https://thoughtbot.com/blog/authors/matheus-richard">Matheus Richard</a> learned that the CSS <code>content</code> property accepts
alternative text for screen readers, separated by a <code>/</code>:</p>
<div class="highlight"><pre class="highlight css"><code><span class="nc">.warning</span><span class="nd">::before</span> <span class="p">{</span>
  <span class="nl">content</span><span class="p">:</span> <span class="s1">"⚠️"</span> <span class="o">/</span> <span class="s1">"Warning"</span><span class="p">;</span>
<span class="p">}</span>
</code></pre></div>
<p>Without the alt text, assistive technology either reads out the emoji name or
skips it entirely. More details in <a href="https://www.stefanjudis.com/today-i-learned/css-content-property-accepts-alternative-text/">Stefan Judis’ article</a>.</p>
<h2 id="a-faster-ui-for-large-github-diffs">
  
    A Faster UI for Large GitHub Diffs
  
</h2>

<p><a href="https://thoughtbot.com/blog/authors/matheus-richard">Matheus Richard</a> shares <a href="https://diffshub.com">diffshub</a>, a tool that renders PR
diffs GitHub struggles with. It’s a drop-in replacement: swap <code>github.com</code> for
<code>diffshub.com</code> in any PR URL, like
<a href="https://diffshub.com/oven-sh/bun/pull/30412">https://diffshub.com/oven-sh/bun/pull/30412</a>.</p>
<h2 id="aube-a-new-javascript-package-manager">
  
    Aube, a New JavaScript Package Manager
  
</h2>

<p><a href="https://thoughtbot.com/blog/authors/jared-turner">Jared Turner</a> shares <a href="https://aube.en.dev">Aube</a>, a JavaScript package manager
from the creator of Mise. It’s pitched as fast, compatible with existing
lockfiles, and security-focused, including a 24-hour cooldown before newly
published versions can be installed.</p>
<h2 id="thanks">
  
    Thanks
  
</h2>

<p>This edition was brought to you by <a href="https://thoughtbot.com/blog/authors/jared-turner">Jared Turner</a> and <a href="https://thoughtbot.com/blog/authors/matheus-richard">Matheus
Richard</a>. Thanks to all contributors! 🎉</p>

<aside class="related-articles"><h2>If you enjoyed this post, you might also like:</h2>
<ul>
<li><a href="https://thoughtbot.com/blog/this-week-in-dev-jan-26-2024">This Week in #dev (Jan 26, 2024)</a></li>
<li><a href="https://thoughtbot.com/blog/this-week-in-open-source-6-30">This Week in Open Source (June 30, 2023)</a></li>
<li><a href="https://thoughtbot.com/blog/this-week-in-dev-feb-9-2024">This Week in #dev (Feb 9, 2024)</a></li>
</ul></aside>
<img src="https://feed.thoughtbot.com/link/24077/17349819.gif" height="1" width="1"/>]]></content>
    <summary>Highlights of what happened in our #dev channel on Slack this week.
</summary>
    <thoughtbot:auto_social_share>true</thoughtbot:auto_social_share>
  </entry>
</feed>
