<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: chwzr</title><link>https://news.ycombinator.com/user?id=chwzr</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 30 Apr 2026 17:58:45 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=chwzr" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by chwzr in "Zed 1.0"]]></title><description><![CDATA[
<p>I would really love to see an iOS remote control app for zed. I am using it on throw away microvms via ssh. Would love to have the zed server running there, control agents via phone and occasionally use my Mac to connect to the server and use the desktop app as normal for review and hand coding</p>
]]></description><pubDate>Wed, 29 Apr 2026 16:28:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47950676</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=47950676</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47950676</guid></item><item><title><![CDATA[New comment by chwzr in "Show HN: Smol machines – subsecond coldstart, portable virtual machines"]]></title><description><![CDATA[
<p>I see the alpine and python:3.12-alpine images in your cli docs. Where does these come from?is it from a docker like registry or are these built in? Can I create my own images? Or this this purely done with the smolfile? Is there a Ubuntu image available?<p>Looks really nice btw. Hot resize mem/cpu would be nice. This could become a nice tech for a one-backend-per-customer infra orchestrator then.</p>
]]></description><pubDate>Fri, 17 Apr 2026 22:25:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47811248</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=47811248</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47811248</guid></item><item><title><![CDATA[New comment by chwzr in "Launch HN: Freestyle – Sandboxes for Coding Agents"]]></title><description><![CDATA[
<p>Wonder what you are thinking of then?</p>
]]></description><pubDate>Tue, 07 Apr 2026 13:32:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=47675130</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=47675130</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47675130</guid></item><item><title><![CDATA[New comment by chwzr in "Google's 200M-parameter time-series foundation model with 16k context"]]></title><description><![CDATA[
<p>there is TabPFN [1] which also has time series capabilities.<p>[1] <a href="https://priorlabs.ai/tabpfn" rel="nofollow">https://priorlabs.ai/tabpfn</a></p>
]]></description><pubDate>Tue, 31 Mar 2026 08:46:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=47584437</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=47584437</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47584437</guid></item><item><title><![CDATA[New comment by chwzr in "Show HN: Sonar – A tiny CLI to see and kill whatever's running on localhost"]]></title><description><![CDATA[
<p>i have this in my .zshrc which provides same functionality:<p><pre><code>  lk() {
    if [ $# -eq 0 ]; then
        local output=$(sudo lsof -iTCP -sTCP:LISTEN -n -P)
    elif [ $# -eq 1 ]; then
        local output=$(sudo lsof -iTCP -sTCP:LISTEN -n -P | grep -i --color=always $1)
    else
        echo "find and kill processes listening on ports. Usage: lk [pattern]"
        return 1
    fi

    if [ -z "$output" ]; then
        echo "No listening processes found."
        return 0
    fi

    # Show header + results
    echo "$(sudo lsof -iTCP -sTCP:LISTEN -n -P | head -1)"
    echo "$output"
    echo ""

    # Extract unique PIDs (skip the header row if no grep was applied)
    local pids=($(echo "$output" | awk '{print $2}' | grep -E '^[0-9]+$' | sort -u))

    if [ ${#pids[@]} -eq 0 ]; then
        echo "No PIDs found."
        return 0
    fi

    echo "PIDs to kill: ${pids[*]}"
    echo -n "Kill these ${#pids[@]} process(es)? [y/N] "
    read -r confirm

    if [[ "$confirm" =~ ^[Yy]$ ]]; then
        for pid in "${pids[@]}"; do
            echo "Killing PID $pid..."
            sudo kill -9 $pid
        done
        echo "Done."
    else
        echo "Aborted."
    fi
  }</code></pre></p>
]]></description><pubDate>Fri, 20 Mar 2026 13:43:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47454388</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=47454388</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47454388</guid></item><item><title><![CDATA[New comment by chwzr in "Linux boxes via SSH: suspended when disconected"]]></title><description><![CDATA[
<p>Do you do something similar to the modifications codesandbox has done to firecracker, regarding mmap ram? (They have multiple blogposts about it on their blog)<p>Would love to chat about details there</p>
]]></description><pubDate>Thu, 15 Jan 2026 22:09:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=46640075</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=46640075</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46640075</guid></item><item><title><![CDATA[New comment by chwzr in "Show HN: Python SDK – forecasting with foundation time-series and tabular models"]]></title><description><![CDATA[
<p>How does it compare to tabpfn?</p>
]]></description><pubDate>Tue, 23 Dec 2025 17:14:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=46367039</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=46367039</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46367039</guid></item><item><title><![CDATA[New comment by chwzr in "Show HN: Hurry – Fast Rust build caching"]]></title><description><![CDATA[
<p>Is this compatible with the dx dioxus cli? Would love to have a cache layer for it</p>
]]></description><pubDate>Tue, 23 Dec 2025 08:29:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=46363515</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=46363515</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46363515</guid></item><item><title><![CDATA[New comment by chwzr in "JSON Schema Demystified: Dialects, Vocabularies and Metaschemas"]]></title><description><![CDATA[
<p>Sounds interesting, do you have any links to these projects? Could not find multicardz when searching</p>
]]></description><pubDate>Fri, 28 Nov 2025 18:57:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=46081616</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=46081616</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46081616</guid></item><item><title><![CDATA[New comment by chwzr in "Strudel REPL – a music live coding environment living in the browser"]]></title><description><![CDATA[
<p>Oh and there is flok[1] which combines the strudel repl with visuals from hydra. Also there are sclang and other algorave environments available.  Everything is synced (with crdts i guess) so it’s live collaborative. Which is nice to remotely jam with friends<p>[1] <a href="https://flok.cc" rel="nofollow">https://flok.cc</a></p>
]]></description><pubDate>Tue, 14 Oct 2025 00:51:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=45574997</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=45574997</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45574997</guid></item><item><title><![CDATA[New comment by chwzr in "Show HN: Bottlefire – Build single-executable microVMs from Docker images"]]></title><description><![CDATA[
<p>How is the performance of the mounted host directories? It’s some file server over vsock?</p>
]]></description><pubDate>Sat, 13 Sep 2025 19:58:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=45234860</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=45234860</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45234860</guid></item><item><title><![CDATA[New comment by chwzr in "Show HN: Bottlefire – Build single-executable microVMs from Docker images"]]></title><description><![CDATA[
<p>Would love to have the ability to spin up firecracker micro vms in proxmox as an alternative to qemu</p>
]]></description><pubDate>Sat, 13 Sep 2025 19:56:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=45234835</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=45234835</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45234835</guid></item><item><title><![CDATA[New comment by chwzr in "Launch HN: Bitrig (YC S25) – Build Swift apps on your iPhone"]]></title><description><![CDATA[
<p>Tried to create a canvas like app view, your app froze after some prompts (guess the swift interpreter?) reopening the app and selecting the project again does not help</p>
]]></description><pubDate>Wed, 27 Aug 2025 22:13:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=45045989</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=45045989</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45045989</guid></item><item><title><![CDATA[New comment by chwzr in "Show HN: Torii – a framework agnostic authentication library for Rust"]]></title><description><![CDATA[
<p>Is it possible to develop custom oauth/openid plugins?</p>
]]></description><pubDate>Sun, 02 Mar 2025 11:17:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=43229311</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=43229311</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43229311</guid></item><item><title><![CDATA[New comment by chwzr in "One-man SaaS, 9 Years In"]]></title><description><![CDATA[
<p>Would love to hear more of that azure marketplace. Does it bring leads on its own?</p>
]]></description><pubDate>Tue, 30 Jul 2024 15:37:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=41110203</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=41110203</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41110203</guid></item><item><title><![CDATA[New comment by chwzr in "Claude 3.5 Sonnet"]]></title><description><![CDATA[
<p>I currently tested the cursor IDE [1]. It’s vscode with nice ai integrations made with great ux in mind. They integrate with ChatGPT  and  Claude Sonnet/ Opus. For my experience (rust/typescript) the sonnet 3.5 model is giving me better results.<p>You can pass the current file, or multiple files or your whole project as context to the models.<p>[1] <a href="https://cursor.com" rel="nofollow">https://cursor.com</a></p>
]]></description><pubDate>Thu, 27 Jun 2024 17:58:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=40813203</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=40813203</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40813203</guid></item><item><title><![CDATA[New comment by chwzr in "Ask HN: What macOS apps/programs do you use daily and recommend?"]]></title><description><![CDATA[
<p>- Brightintosh (use the increased brightness (1000 nits) of the integrated XDR display)<p>- raycast (window management, shortcuts, etc.)<p>- tailscale (private mesh vpn)<p>- linear (issue management)</p>
]]></description><pubDate>Tue, 11 Jun 2024 09:36:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=40644267</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=40644267</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40644267</guid></item><item><title><![CDATA[New comment by chwzr in "Vercel Edge Function Outage"]]></title><description><![CDATA[
<p>same here, wondering what's going one. Do they release post mortems?</p>
]]></description><pubDate>Thu, 02 Nov 2023 18:56:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=38118344</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=38118344</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38118344</guid></item><item><title><![CDATA[New comment by chwzr in "Ask HN: Suggestions to host 10TB data with a monthly +100TB bandwidth"]]></title><description><![CDATA[
<p>You can rescale cloud servers at hetzner, but you will need to shutdown the server in the process</p>
]]></description><pubDate>Sun, 28 May 2023 21:54:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=36108176</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=36108176</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36108176</guid></item><item><title><![CDATA[New comment by chwzr in "Launch HN: Electric Air (YC W23) – Heat pump sold directly to homeowners"]]></title><description><![CDATA[
<p>> This is meant to be installed by a professional contractor, not the homeowner.<p>But I would want to install that myself. I do everything in my house myself.
Could I order a device from you and at the same time save the compensation that otherwise gets the installer?</p>
]]></description><pubDate>Tue, 14 Mar 2023 06:53:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=35148181</link><dc:creator>chwzr</dc:creator><comments>https://news.ycombinator.com/item?id=35148181</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35148181</guid></item></channel></rss>