<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: csummers</title><link>https://news.ycombinator.com/user?id=csummers</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 27 Apr 2026 10:07:30 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=csummers" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by csummers in "AWS Adds support for nested virtualization"]]></title><description><![CDATA[
<p>This a great news, but is there any more information about this other than an aws sdk commit?  Is this generally available?</p>
]]></description><pubDate>Fri, 13 Feb 2026 14:06:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=47002855</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=47002855</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47002855</guid></item><item><title><![CDATA[New comment by csummers in "Ask HN: What are you working on? (February 2026)"]]></title><description><![CDATA[
<p><a href="https://hot.dev" rel="nofollow">https://hot.dev</a><p>I'm building Hot Dev, a backend workflow platform.<p>- Hot: a functional, expression-based language w/ types for easy integrations and built-in parallel constructs<p>- Event Handlers drive execution `on-event: "user:created"`<p>- Scheduled Events `schedule: "every hour"`<p>- MCP: Turn any Hot function into an MCP Tool<p>- API: Real-time access to running tasks; subscribe to workflow Streams with SSE updates<p>- Observability: System-level dashboard; Call-level tracing; Alerts to email, Slack, PagerDuty, or webhook<p>- Develop locally, push to production with `hot deploy`<p>- Coming Soon: Hot Box - run any OCI container as a Hot function</p>
]]></description><pubDate>Mon, 09 Feb 2026 13:09:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=46944835</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=46944835</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46944835</guid></item><item><title><![CDATA[New comment by csummers in "I miss thinking hard"]]></title><description><![CDATA[
<p>I definitely identify with the "Thinker" described in this post, but I am routinely mulling over ideas and problems (multiple hours, days, and weeks) with the help of LLMs now.<p>One of the benefits of LLM usage is to figure out the boundaries of your own knowledge and that of humanity's existing knowledge--at least for the LLM's training data.<p>Enumerating through existing options and existing solutions to problems gets you to the knowledge boundary sooner--where the real work begins!  While faster with LLMs, I don't see this process as much different than bouncing ideas off of colleagues (and critiquing your own thoughts).<p>However, the difference is likely human's unpredictable ability to apply creativity throughout the process...such that a new solution may arise at any point and leap-frog existing solutions/explanations.  (Think Einstein taking known data from Lorentz, Michelson, Morley plus Maxwell's equations on light and coming up with special relativity.)</p>
]]></description><pubDate>Wed, 04 Feb 2026 13:47:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=46885753</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=46885753</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46885753</guid></item><item><title><![CDATA[New comment by csummers in "Agent Skills"]]></title><description><![CDATA[
<p>I'm developing a new programming language, so I <i>have to</i> provide a way for LLMs to know about and generate code for a language they have not seen (i.e., have no training data for).<p>My tooling was previously adding in AI hints with CLAUDE.md, Cursor Rules, Windsurf Rules, AGENTS.md, etc., but I recently switched to using only AGENTS.md and SKILLS.  I appreciate the standardization from this perspective.</p>
]]></description><pubDate>Tue, 03 Feb 2026 19:12:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=46875734</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=46875734</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46875734</guid></item><item><title><![CDATA[Show HN: Hot Dev – a new backend workflow language and platform]]></title><description><![CDATA[
<p>Hi, I'm Curtis, the founder of Hot Dev, a new backend workflow platform.<p>Intro Blog Post: <a href="https://hot.dev/blog/introducing-hot-dev" rel="nofollow">https://hot.dev/blog/introducing-hot-dev</a><p>Building modern backend systems often means wrestling with complex orchestration, scattered logging, poor observability, opaque AI integrations, and difficult developer/devops experiences. Hot Dev is designed to solve these problems!<p>---<p>Why am I building Hot Dev?<p>As a backend developer for 25+ years, at almost every company, the backend team ends up cobbling together background utility servers and workers to process items off of queues, handle events coming into the system, run scheduled jobs and other on-demand asynchronous processes. This is more true in recent years because companies are integrating AI services into every part of their systems and workflows.<p>The team is tasked with choosing and building up each of these services from cloud providers (AWS, Google, etc) and integrating them into applications and backend services. These tasks create a lot of development work (i.e., time and money!) spent on managing and monitoring the infrastructure instead of thinking about your problem domain and your business.<p>Hot Dev provides a managed platform for defining and monitoring workflows at the problem-domain level--allowing you to focus on your business needs.<p>In the same way that Vercel runs your web app for you without you having to think about AWS EC2 servers or Kubernetes, Hot Dev runs your backend workflows for you without you having to think about AWS SQS, Kafka, or ECS.<p>Additionally, as a software developer, I care deeply about the Developer Experience and the DevOps Experience. Hot Dev is designed for a simple, streamlined developer experience...where local development matches production, and deploys are a single command: `hot deploy`<p>Download Hot Dev today for your Mac, Linux, or Window machine at <a href="https://hot.dev" rel="nofollow">https://hot.dev</a><p>---<p>FAQ: (anticipating some HN crowd questions!)<p>Q: A new language.  Are you crazy?<p>A: Yes, and maybe!  But, I felt like bolting on the level of traceability to existing languages created lots of boilerplate code...obscuring the problem domain.  It's definitely a trade-off, but one that I was willing to take.  Hot is a simple, functional, expression-based language with immutable data and optional/gradual types. The language is inspired by Clojure with nods to Rust and Typescript.  I think most developers will find it easy to learn and use. The Hot language vm and the platform itself is written in Rust.<p>Q: How do you compare to temporal, inngest, trigger.dev?
A: 
Hot Dev supports many similar features for scheduled jobs, cancellations, failing, retries, and event-driven architecture.  The primary differences are the use of the Hot Language to defined your workflows and Hot functions wrapping other API services--either your own backend APIs or other external API services.<p>And, as mentioned at the end of the intro blog post, I'll be adding two significant features to the platform soon: 
1) Hot Box Container Execution--the ability to run an OCI container image as a Hot function
2) MCP (Model Context Protocol) support -- turn any Hot function into an MCP Tool.<p>Q: Is this Open Source?
A: Not yet, but this is the plan.  I'm holding the reigns a little tight for now with the new language, but I expect the Hot language implementation to be open source within the year.  If it helps...I'm also the author of HugSQL (<a href="https://hugsql.org" rel="nofollow">https://hugsql.org</a>).<p>---<p>If you can't tell from the video, I'm having so much fun with this! Follow Hot Dev on X <a href="https://x.com/hotdotdev" rel="nofollow">https://x.com/hotdotdev</a> for updates!</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46797907">https://news.ycombinator.com/item?id=46797907</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 28 Jan 2026 16:51:45 +0000</pubDate><link>https://hot.dev</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=46797907</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46797907</guid></item><item><title><![CDATA[New comment by csummers in "What It Feels Like to Launch a Startup With Two Weeks of Runway"]]></title><description><![CDATA[
<p>> Yet, this is our chance. This is our chance to actually build a company. We have to take it. Another chance may never present itself.<p>Bah! Two weeks or bust? This is a very short-sited viewpoint: think long term! Slow down and think about what another 3 or 6 months of runway would do for your company and product.<p>You have skills people want.  Do some consulting and give yourself a longer runway.  If you truly believe you've got a good product and business on your hands, then find a way to keep it going even if it's on the side while you do a consulting gig.  (I know split-focus for a few months is not ideal, but "two weeks or bust" seems like a poor alternative.)</p>
]]></description><pubDate>Thu, 14 Mar 2013 11:56:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=5374353</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=5374353</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=5374353</guid></item><item><title><![CDATA[New comment by csummers in "The Free Universal Construction Kit"]]></title><description><![CDATA[
<p>So, this is the kid version of The Universal Business Adapter?  <a href="http://www.youtube.com/watch?v=AIOqOxI0K_I" rel="nofollow">http://www.youtube.com/watch?v=AIOqOxI0K_I</a></p>
]]></description><pubDate>Sun, 17 Feb 2013 12:20:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=5235012</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=5235012</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=5235012</guid></item><item><title><![CDATA[New comment by csummers in "Amazon RedShift vs. local PostgreSQL"]]></title><description><![CDATA[
<p>I'd like to see some more information about the local setup, including hardware and the postgresql.conf.  Otherwise, this tells me very little in terms of comparison.</p>
]]></description><pubDate>Fri, 15 Feb 2013 21:51:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=5228887</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=5228887</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=5228887</guid></item><item><title><![CDATA[New comment by csummers in "Recovering deleted files using grep"]]></title><description><![CDATA[
<p>Been there, done that.  I rm -rf'd a bunch of important files once, and at the time grep was giving me "memory exhausted" errors.  I was able to use strings to grab all of the text of the disk, and then wade through the results with vim.<p>I guess this is a pretty common problem.  The blog post I wrote about it in 2005 continues to be the most searched-for entry point on my site:  <a href="http://csummers.com/2005/12/20/undelete-text-files-on-linux-ext3-partition/" rel="nofollow">http://csummers.com/2005/12/20/undelete-text-files-on-linux-...</a></p>
]]></description><pubDate>Fri, 20 Aug 2010 00:26:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=1619125</link><dc:creator>csummers</dc:creator><comments>https://news.ycombinator.com/item?id=1619125</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=1619125</guid></item></channel></rss>