<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: dsissitka</title><link>https://news.ycombinator.com/user?id=dsissitka</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Apr 2026 07:35:39 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=dsissitka" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by dsissitka in "We replaced Node.js with Bun for 5x throughput"]]></title><description><![CDATA[
<p>D'oh, it wasn't the doc site. I was lazy:<p><pre><code>  $ bun build --help | grep Implies
      --compile                             Generate a standalone Bun executable containing your bundled code. Implies --production
  $
</code></pre>
I actually did double check it though because it used to be wrong. For good measure:<p><pre><code>  $ grep bun build
  bun build --bytecode --compile --outfile bun-darwin-arm64         --production --target bun-darwin-arm64         app.ts
  bun build --bytecode --compile --outfile bun-darwin-x64           --production --target bun-darwin-x64           app.ts
  bun build --bytecode --compile --outfile bun-darwin-x64-baseline  --production --target bun-darwin-x64-baseline  app.ts
  bun build --bytecode --compile --outfile bun-linux-arm64          --production --target bun-linux-arm64          app.ts
  bun build --bytecode --compile --outfile bun-linux-arm64-musl     --production --target bun-linux-arm64-musl     app.ts
  bun build --bytecode --compile --outfile bun-linux-x64            --production --target bun-linux-x64            app.ts
  bun build --bytecode --compile --outfile bun-linux-x64-baseline   --production --target bun-linux-x64-baseline   app.ts
  bun build --bytecode --compile --outfile bun-linux-x64-modern     --production --target bun-linux-x64-modern     app.ts
  bun build --bytecode --compile --outfile bun-linux-x64-musl       --production --target bun-linux-x64-musl       app.ts
  bun build --bytecode --compile --outfile bun-windows-arm64        --production --target bun-windows-arm64        app.ts
  bun build --bytecode --compile --outfile bun-windows-x64          --production --target bun-windows-x64          app.ts
  bun build --bytecode --compile --outfile bun-windows-x64-baseline --production --target bun-windows-x64-baseline app.ts
  bun build --bytecode --compile --outfile bun-windows-x64-modern   --production --target bun-windows-x64-modern   app.ts
  $ ls -1hs bun*
   59M bun-darwin-arm64
   64M bun-darwin-x64
   64M bun-darwin-x64-baseline
   95M bun-linux-arm64
   89M bun-linux-arm64-musl
   95M bun-linux-x64
   94M bun-linux-x64-baseline
   95M bun-linux-x64-modern
   90M bun-linux-x64-musl
  107M bun-windows-arm64.exe
  110M bun-windows-x64-baseline.exe
  111M bun-windows-x64.exe
  111M bun-windows-x64-modern.exe
  $</code></pre></p>
]]></description><pubDate>Mon, 06 Apr 2026 07:45:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=47658027</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=47658027</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47658027</guid></item><item><title><![CDATA[New comment by dsissitka in "We replaced Node.js with Bun for 5x throughput"]]></title><description><![CDATA[
<p>I was curious:<p><pre><code>  $ cat app.ts
  console.log("Hello, world!");
  $ cat build
  #!/usr/bin/env bash
  
  bun build --compile --outfile bun-darwin-arm64         --target bun-darwin-arm64         app.ts
  bun build --compile --outfile bun-darwin-x64           --target bun-darwin-x64           app.ts
  bun build --compile --outfile bun-darwin-x64-baseline  --target bun-darwin-x64-baseline  app.ts
  bun build --compile --outfile bun-linux-arm64          --target bun-linux-arm64          app.ts
  bun build --compile --outfile bun-linux-arm64-musl     --target bun-linux-arm64-musl     app.ts
  bun build --compile --outfile bun-linux-x64            --target bun-linux-x64            app.ts
  bun build --compile --outfile bun-linux-x64-baseline   --target bun-linux-x64-baseline   app.ts
  bun build --compile --outfile bun-linux-x64-modern     --target bun-linux-x64-modern     app.ts
  bun build --compile --outfile bun-linux-x64-musl       --target bun-linux-x64-musl       app.ts
  bun build --compile --outfile bun-windows-arm64        --target bun-windows-arm64        app.ts
  bun build --compile --outfile bun-windows-x64          --target bun-windows-x64          app.ts
  bun build --compile --outfile bun-windows-x64-baseline --target bun-windows-x64-baseline app.ts
  bun build --compile --outfile bun-windows-x64-modern   --target bun-windows-x64-modern   app.ts
  
  deno compile --output deno-x86_64-pc-windows-msvc    --target x86_64-pc-windows-msvc    app.ts
  deno compile --output deno-x86_64-apple-darwin       --target x86_64-apple-darwin       app.ts
  deno compile --output deno-aarch64-apple-darwin      --target aarch64-apple-darwin      app.ts
  deno compile --output deno-x86_64-unknown-linux-gnu  --target x86_64-unknown-linux-gnu  app.ts
  deno compile --output deno-aarch64-unknown-linux-gnu --target aarch64-unknown-linux-gnu app.ts
  $ ls -1hs
  total 1.6G
  4.0K app.ts
  4.0K build
   59M bun-darwin-arm64
   64M bun-darwin-x64
   64M bun-darwin-x64-baseline
   95M bun-linux-arm64
   89M bun-linux-arm64-musl
   95M bun-linux-x64
   94M bun-linux-x64-baseline
   95M bun-linux-x64-modern
   90M bun-linux-x64-musl
  107M bun-windows-arm64.exe
  110M bun-windows-x64-baseline.exe
  111M bun-windows-x64.exe
  111M bun-windows-x64-modern.exe
   77M deno-aarch64-apple-darwin
   87M deno-aarch64-unknown-linux-gnu
   84M deno-x86_64-apple-darwin
   92M deno-x86_64-pc-windows-msvc.exe
   93M deno-x86_64-unknown-linux-gnu
  $
</code></pre>
Maybe I'm missing some flags? Bun's docs say --compile implies --production. I don't see anything in Deno's docs.</p>
]]></description><pubDate>Mon, 06 Apr 2026 06:21:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47657556</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=47657556</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47657556</guid></item><item><title><![CDATA[New comment by dsissitka in "Jonathan Blow has spent the past decade designing 1,400 puzzles"]]></title><description><![CDATA[
<p>> Guess how many Blow has shipped? 0 so far, but it sounds close now.<p>One, but it was something like three years late:<p><a href="https://store.steampowered.com/app/499180/Braid_Anniversary_Edition/" rel="nofollow">https://store.steampowered.com/app/499180/Braid_Anniversary_...</a></p>
]]></description><pubDate>Thu, 18 Dec 2025 16:05:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=46314431</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=46314431</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46314431</guid></item><item><title><![CDATA[New comment by dsissitka in "Migrating the main Zig repository from GitHub to Codeberg"]]></title><description><![CDATA[
<p>Maybe the incident:<p><a href="https://news.ycombinator.com/item?id=41837782">https://news.ycombinator.com/item?id=41837782</a><p><a href="https://dmpwn.info/" rel="nofollow">https://dmpwn.info/</a></p>
]]></description><pubDate>Thu, 27 Nov 2025 02:52:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=46065021</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=46065021</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46065021</guid></item><item><title><![CDATA[New comment by dsissitka in "PSF has withdrawn $1.5M proposal to US Government grant program"]]></title><description><![CDATA[
<p>I wonder if they're mobile. Here the URL is truncated and over on openssf.org/blog they don't show the date unless you switch over to desktop view.</p>
]]></description><pubDate>Mon, 27 Oct 2025 16:18:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=45722772</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=45722772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45722772</guid></item><item><title><![CDATA[New comment by dsissitka in "Be Careful with Obsidian"]]></title><description><![CDATA[
<p>If you're a Linux user you might like Firejail for this.<p><pre><code>  firejail --appimage --net=none --private=~/path/to/jail ~/path/to/Obsidian.AppImage
</code></pre>
<i>--private=~/path/to/jail</i> limits access to your home directory to ~/path/to/jail and when you don't want Obsidian to have internet access you can take it away with <i>--net=none</i>.</p>
]]></description><pubDate>Thu, 23 Oct 2025 08:02:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=45679394</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=45679394</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45679394</guid></item><item><title><![CDATA[New comment by dsissitka in "Zed is now available on Windows"]]></title><description><![CDATA[
<p>I ran it on VS Code and kitty recently:<p><a href="https://news.ycombinator.com/item?id=45253927">https://news.ycombinator.com/item?id=45253927</a><p><a href="https://news.ycombinator.com/item?id=45254054">https://news.ycombinator.com/item?id=45254054</a></p>
]]></description><pubDate>Thu, 16 Oct 2025 06:22:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=45602044</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=45602044</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45602044</guid></item><item><title><![CDATA[New comment by dsissitka in "Fastmail desktop app"]]></title><description><![CDATA[
<p>I was just hoping for this a couple hours ago. :)<p>Any idea how far out the Linux version is?</p>
]]></description><pubDate>Mon, 13 Oct 2025 07:37:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=45565756</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=45565756</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45565756</guid></item><item><title><![CDATA[New comment by dsissitka in "Less is safer: Reducing the risk of supply chain attacks"]]></title><description><![CDATA[
<p>Coincidentally I did that yesterday. Mermaid pulls in 137 dependencies. I love Obsidian and the Obsidian folks seem like good people but I did end up sandboxing it.</p>
]]></description><pubDate>Fri, 19 Sep 2025 23:51:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=45308206</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=45308206</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45308206</guid></item><item><title><![CDATA[New comment by dsissitka in "Ghostty 1.2.0"]]></title><description><![CDATA[
<p>Bonus VS Code:<p><pre><code>  # Title      Min     Max     Avg     SD
  1 VS Code    10.8    19.7    13.0    1.2</code></pre></p>
]]></description><pubDate>Mon, 15 Sep 2025 19:41:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=45254054</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=45254054</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45254054</guid></item><item><title><![CDATA[New comment by dsissitka in "Ghostty 1.2.0"]]></title><description><![CDATA[
<p>Some Typometer measurements on i3 here:<p><pre><code>  # Title                   Min     Max     Avg     SD
  1 xterm 397               3.1     4.0     3.5     0.2
  2 Alacritty 0.15.1        3.6     4.8     4.2     0.2
  3 xfce4-terminal 1.1.4    2.9     6.8     4.4     0.3
  4 Ghostty 1.2.0           11.3    15.5    13.0    0.7
  5 kitty 0.42.2            11.7    21.3    15.8    3.3
</code></pre>
<a href="https://imgur.com/a/RobYTWY" rel="nofollow">https://imgur.com/a/RobYTWY</a></p>
]]></description><pubDate>Mon, 15 Sep 2025 19:29:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=45253927</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=45253927</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45253927</guid></item><item><title><![CDATA[New comment by dsissitka in "Behind the scenes of Bun Install"]]></title><description><![CDATA[
<p>I really want to like Bun and Deno. I've tried using both several times and so far I've never made it more than a few thousand lines of code before hitting a deal breaker.<p>Last big issue I had with Bun was streams closing early:<p><a href="https://github.com/oven-sh/bun/issues/16037" rel="nofollow">https://github.com/oven-sh/bun/issues/16037</a><p>Last big issue I had with Deno was a memory leak:<p><a href="https://github.com/denoland/deno/issues/24674" rel="nofollow">https://github.com/denoland/deno/issues/24674</a><p>At this point I feel like the Node ecosystem will probably adopt the good parts of Bun/Deno before Bun/Deno really take off.</p>
]]></description><pubDate>Thu, 11 Sep 2025 15:34:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=45212846</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=45212846</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45212846</guid></item><item><title><![CDATA[New comment by dsissitka in "Leaving Gmail for Mailbox.org"]]></title><description><![CDATA[
<p>Something to be aware of if you're considering mailbox.org:<p><a href="https://userforum-en.mailbox.org/topic/anti-spoofing-for-custom-domains-spf-dkim-dmarc#comment-1450" rel="nofollow">https://userforum-en.mailbox.org/topic/anti-spoofing-for-cus...</a></p>
]]></description><pubDate>Fri, 22 Aug 2025 18:03:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=44987651</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=44987651</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44987651</guid></item><item><title><![CDATA[New comment by dsissitka in "FFmpeg moves to Forgejo"]]></title><description><![CDATA[
<p>It sounds like they're still testing but there's this from <a href="https://ffmpeg.org/pipermail/ffmpeg-devel/2025-July/346938.html" rel="nofollow">https://ffmpeg.org/pipermail/ffmpeg-devel/2025-July/346938.h...</a>:<p><pre><code>  ### July 22nd, 2025, Modernization of contributions
  
  The project is modernizing its contribution methods and switching to a software
  forge.
  
  We have setup a platform on [code.ffmpeg.org](https://code.ffmpeg.org/). The new
  process features continuous integration on all commits and merge requests,
  labelling for categorization, conflict resolution, and logging in via OpenID or
  Github.
  
  The main repository will become
  [code.ffmpeg.org/FFmpeg/FFmpeg](https://code.ffmpeg.org/FFmpeg/FFmpeg), with all
  others being mirrored to it. Users are encouraged to begin using it, effective
  now.
  
  Mailing lists have supported our development for nearly 25 years, but as more
  and more contributors started to become involved, the ratio of merged patches to
  total mails begun falling. Mailing lists became a source of friction, with
  discussions frequently stalling and uncategorized noise drowning out patches by
  bumping them down in inboxes.
  
  Although [patchwork.ffmpeg.org](https://patch.ffmpeg.org/) was set up to track
  submissions, it was less than reliable, with many patches and mails slipping
  though. Since its activation exactly 9 years ago, it recorded 54,476 patches,
  with 53,650 patches having the state of not archived. In comparison, the mailing
  list has had a total of 150,736 emails during the same time period.
  
  Additionally, new users have frequently encountered difficulties with mailing
  list development. From finding out the correct SMTP login details, configuring
  git send-email, new email security mechanisms interfering with mailing list
  operations, and finally not having a comfortable workflow to review patches.
  
  After years of discussions, and a vote, we officially announce the new platform,
  [code.ffmpeg.org](https://code.ffmpeg.org/), running
  [Forgejo](https://forgejo.org/). Documentation will be updated to reflect the
  change.
  
  Mailing lists will continue to be monitored, and used for project discussions
  and other topics better discussed elsewhere, but traffic and noise should become
  significantly reduced over time.
  
  Bugs/issues will be accepted on [code.ffmpeg.org](https://code.ffmpeg.org/),
  alongside with [trac.ffmpeg.org](https://trac.ffmpeg.org/) for the time being.
  
  We are also hoping that this will significantly reduce the amount of unmerged
  patches. If you submitted a patch which received no replies or conclusion, we
  apologize, and you are encouraged to resubmit it on the new platform.</code></pre></p>
]]></description><pubDate>Sun, 17 Aug 2025 02:13:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=44928364</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=44928364</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44928364</guid></item><item><title><![CDATA[New comment by dsissitka in "U.S. senators introduce new pirate site blocking bill, "Block BEARD""]]></title><description><![CDATA[
<p>In my circles the modern alternative seems to be using Yandex to search for "$show stream".<p>I don't know about BitTorrent but Usenet is way up:<p><a href="https://www.newsdemon.com/usenet-newsgroup-feed-size" rel="nofollow">https://www.newsdemon.com/usenet-newsgroup-feed-size</a></p>
]]></description><pubDate>Thu, 31 Jul 2025 17:09:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=44747716</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=44747716</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44747716</guid></item><item><title><![CDATA[New comment by dsissitka in "Have I Been Pwned 2.0"]]></title><description><![CDATA[
<p>> But now it's on a timeline you can scroll through in reverse chronological order, with each breach summarising what happened.<p>Maybe I'm reading it wrong but it looks like it might be a little off. I get:<p>- October 2013<p>- June 2008<p>- ...a bunch more...<p>- November 2021<p>- December 2020</p>
]]></description><pubDate>Mon, 19 May 2025 22:29:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=44035641</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=44035641</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44035641</guid></item><item><title><![CDATA[New comment by dsissitka in "VSCode’s SSH agent is bananas"]]></title><description><![CDATA[
<p>And toolchains without asking:<p><a href="https://github.com/zed-industries/zed/issues/12589">https://github.com/zed-industries/zed/issues/12589</a></p>
]]></description><pubDate>Sat, 08 Feb 2025 02:43:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=42979885</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=42979885</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42979885</guid></item><item><title><![CDATA[New comment by dsissitka in "Purelymail: Cheap, no-nonsense email"]]></title><description><![CDATA[
<p>It looks like standalone Proton Mail might still be available:<p><a href="https://proton.me/mail/pricing" rel="nofollow">https://proton.me/mail/pricing</a></p>
]]></description><pubDate>Mon, 27 Jan 2025 06:20:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=42837989</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=42837989</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42837989</guid></item><item><title><![CDATA[New comment by dsissitka in "Hard numbers in the Wayland vs. X11 input latency discussion"]]></title><description><![CDATA[
<p>You might like Typometer. I believe it was created by a JetBrains developer to improve input latency in IDEA.<p>> Typometer works by generating OS input events and using screen capture to measure the delay between a keystroke and a corresponding screen update. Hence, the measurement encompasses all the constituents of processing latency (i. e. OS queue, VM, editor, GPU pipeline, buffering, window manager and possible V-Sync).<p><a href="https://pavelfatin.com/typing-with-pleasure/" rel="nofollow">https://pavelfatin.com/typing-with-pleasure/</a></p>
]]></description><pubDate>Mon, 27 Jan 2025 02:13:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=42836638</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=42836638</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42836638</guid></item><item><title><![CDATA[New comment by dsissitka in "Snyk security researcher deploys malicious NPM packages targeting cursor.com"]]></title><description><![CDATA[
<p>I don't know about VS Code's dev containers extension but the SSH extension's README says:<p>> Using Remote-SSH opens a connection between your local machine and the remote. Only use Remote-SSH to connect to secure remote machines that you trust and that are owned by a party whom you trust. A compromised remote could use the VS Code Remote connection to execute code on your local machine.<p><a href="https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh" rel="nofollow">https://marketplace.visualstudio.com/items?itemName=ms-vscod...</a><p>If you're worried about extensions there's also:<p>> When a user installs an extension, VS Code automatically installs it to the correct location based on its kind. If an extension can run as either kind, VS Code will attempt to choose the optimal one for the situation;<p><a href="https://code.visualstudio.com/api/advanced-topics/remote-extensions#architecture-and-extension-kinds" rel="nofollow">https://code.visualstudio.com/api/advanced-topics/remote-ext...</a></p>
]]></description><pubDate>Tue, 14 Jan 2025 13:42:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=42697085</link><dc:creator>dsissitka</dc:creator><comments>https://news.ycombinator.com/item?id=42697085</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42697085</guid></item></channel></rss>