frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SVG Based Vector Scope

https://davidhampgonsalves.com/svg-based-vector-scope/
1•nfriedly•1m ago•0 comments

California ghost-gun bill wants 3D printers to play cop, EFF says

https://www.theregister.com/2026/04/14/eff_california_3dprinted_firearms/
1•Bender•1m ago•0 comments

Simple Made Easy (2011) [video]

https://www.youtube.com/watch?v=SxdOUGdseq4
1•tosh•1m ago•0 comments

Redesigned Claude Code Desktop app is now available

https://claude.com/blog/claude-code-desktop-redesign
1•adocomplete•4m ago•0 comments

The Internet's Most Powerful Archiving Tool Is in Peril

https://www.wired.com/story/the-internets-most-powerful-archiving-tool-is-in-mortal-peril/
1•throw0101d•5m ago•1 comments

Show HN: Visualizing OpenClaw runs to debug flaws and token spikes

https://github.com/epsilla-cloud/clawtrace
1•songrenchu•7m ago•0 comments

Downgrading Claude Code and changing one global setting fixes model reasoning

https://twitter.com/sthiven_r/status/2043992488109899849
1•giancarlostoro•8m ago•0 comments

Show HN: Ztlgr – a local-first PKM and notes tool for the terminal

https://github.com/bakudas/ztlgr
1•bakudas•9m ago•0 comments

Commitgenius – CLI that reads your Git diff and writes specific commit messages

https://github.com/Noumenon-ai/commitgenius
1•Noumenon_AI•9m ago•0 comments

200 Startups Are Waiting for EU Funding That Will Never Come

https://blog.mean.ceo/200-startups-are-waiting-for-money-that-will-never-come/
1•p4bl0•11m ago•0 comments

The Two Troublemakers in the EU Are Also the Two Poorest

https://pogatsa.substack.com/p/the-two-troublemakers-in-the-eu-are
1•kocsonya•12m ago•0 comments

Lightweight, responsive web reader for Iran-related news from various RSS feeds

https://news-reader-9h9o.onrender.com
1•sLaube•12m ago•1 comments

Show HN: Rust EDR Agent for Linux with eBPF and macOS

https://github.com/secureexec/secureexec-agent
1•irqlevel•12m ago•0 comments

Has Science Become a Dangerous Religion? – Alexandre Grothendieck

2•therisingsea•13m ago•0 comments

YouTube modder complete's their own Steam Machine

https://www.pcgamer.com/hardware/gaming-pcs/one-youtuber-has-built-their-own-usd950-steam-machine...
2•jkyrlach•13m ago•0 comments

Tell HN: Fiverr left customer files public and searchable

4•morpheuskafka•13m ago•0 comments

This post is published by just typing into Obsidian

https://blog.d11r.eu/obs/
1•dominicq•16m ago•0 comments

Challenges in Decompilation and Reverse Engineering of CUDA Kernels [video]

https://www.youtube.com/watch?v=ns5jFuEdeFg
1•nicolodev•16m ago•0 comments

One question tells you your EU AI Act risk tier (10 seconds)

https://for-loops.com/assess
1•mike_mullerr•16m ago•0 comments

How to Develop Good Taste (2022)

https://dieworkwear.com/2022/08/26/how-to-develop-good-taste-pt-1/
1•throw0101d•17m ago•0 comments

Laravel raised money and now injects ads directly into your agent

https://techstackups.com/articles/laravel-raised-money-and-now-injects-ads-directly-into-your-agent/
2•sixhobbits•17m ago•2 comments

Can LLMs generate a production workflow editor? We tested it

https://www.workflowbuilder.io/blog/workflow-builder-vs-llm-generated-code
1•maciek996•18m ago•0 comments

Context Rot: How Increasing Input Tokens Impacts LLM Performance

https://www.trychroma.com/research/context-rot
1•felineflock•20m ago•0 comments

Loop.frontiersin.org/People/3468257/Overview

https://loop.frontiersin.org/people/3468257/overview
1•openrockets•22m ago•0 comments

Write It First Then Let AI Drive

https://kennethreitz.org/essays/2026-04-12-write_it_first_then_let_ai_drive
1•jorzel•23m ago•1 comments

Misconfiguring Infinity Fabric to Break AMD SEV-SNP

https://fabricked-attack.github.io/
1•spooneybarger•24m ago•0 comments

People are pretending to be AI chatbots – for fun

https://www.npr.org/2026/04/14/nx-s1-5776842/ai-chatbot-comedy-ben-palmer-chatgpt
1•rolph•24m ago•0 comments

KDE: 30 years of the Linux desktop (video media.ccc.de)

https://media.ccc.de/v/glt26-691-kde-30-years-of-the-linux-desktop
3•simon04•25m ago•0 comments

New Accounts Let Teens Trade Stocks Without a Parent's Approval

https://www.wsj.com/personal-finance/new-accounts-let-teens-trade-stocks-without-a-parents-approv...
1•booleandilemma•25m ago•0 comments

C-Suite tried to replace every coder it ever met. Now AI replaces the C-Suite?

https://dhmventures.com/blog/do-we-need-c-suite-executives.html
1•dirk94018•26m ago•0 comments
Open in hackernews

Show HN: MōBrowser, a TypeScript-first desktop app framework with typed IPC

https://teamdev.com/mobrowser/
4•Ikryanov•3h ago
Hi HN,

For the last ~15 years I've worked on embedding web browsers into Java and .NET desktop apps (JxBrowser, DotNetBrowser). Over time, I watched many teams move from embedding web views into native apps, to building full desktop apps with frameworks like Electron and Tauri.

Both are useful, but in practice I kept running into several problems.

With Electron, beyond the larger app footprint, I often ran into:

  - lack of type-safe IPC
  - no source code protection
  - weak support for the modern web stack
Tauri solves some problems (like app size), but introduces others:

  - different WebViews across platforms → inconsistent behavior
  - requires Rust + JS instead of a single stack
So we built MōBrowser, a framework for building desktop apps with TypeScript, Node.js, and Chromium.

Some of the things we focused on:

  - typed IPC using Protobuf + code generation (RPC-style communication instead of string channels)
  - consistent rendering and behavior across different platforms
  - Node.js runtime
  - built-in packaging, updates, and scaffolding
  - source code protection
  - small delta auto-updates
The goal is to let web developers ship desktop apps with a web stack they already know and fewer cross-platform surprises.

I'd especially love feedback from people who have built production apps with Electron or Tauri.

Happy to answer any questions.