frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI comments drove Paul Graham off X notifications

https://twitter.com/gostroverhov/status/2037263858390147535
1•gostroverhov•1m ago•0 comments

Show HN: Photo Triager – Cull Raw Photos on iPhone with XMP Sidecars

https://photo-triager.junle.li/
1•lijunle•2m ago•0 comments

Show HN: Breakwater

https://www.breakwaterapp.com
1•stympy•2m ago•0 comments

Show HN: Illustrative – AI pipeline that turns books into graphic novels

https://arv.in/illustrative/
1•adangit•4m ago•0 comments

Agent Reliability Engineering

https://github.com/choutos/agent-reliability-engineering
1•choutos•5m ago•0 comments

Databuddy: Privacy-First Analytics

https://www.databuddy.cc
1•monssoen•7m ago•0 comments

Probabilistic feature analysis of facial perception of emotions [pdf]

https://sites.stat.columbia.edu/gelman/research/published/faces.pdf
1•luu•7m ago•0 comments

Unlimited Prep Cooks. Are You Going to Make Something?

https://milkcrunch.com/scaling-to-infinite/
1•mrdoornbos•7m ago•1 comments

Show HN: NPM install is a security hole, so we built a guard for it

https://github.com/safedep/pmg
1•Sahil121•7m ago•0 comments

The OpenAI Safety Bug Bounty Program

https://openai.com/index/safety-bug-bounty/
1•gmays•8m ago•0 comments

From trash to climate tech: Rubber gloves find new life as carbon capturers

https://phys.org/news/2026-02-trash-climate-tech-rubber-gloves.html
1•PaulHoule•8m ago•0 comments

Using FireWire on a Raspberry Pi

https://www.jeffgeerling.com/blog/2026/firewire-on-a-raspberry-pi/
1•jandeboevrie•9m ago•0 comments

Vive La France

https://martirosyan.fr/vive-la-france
1•zniturah•9m ago•0 comments

School uses AI to remove 200 books, including Orwell's 1984 and Twilight

https://www.lbc.co.uk/article/librarian-gobsmacked-school-ai-remove-books-5HjdWsc_2/
1•toofy•9m ago•1 comments

Polymarket Says It Predicts the Truth. Its Social Feeds Are Filled w Falsehoods.

https://www.nytimes.com/2026/03/20/technology/polymarket-social-feeds-falsehoods.html
2•bookofjoe•10m ago•1 comments

Netflix raises prices across all streaming plans

https://www.cnbc.com/2026/03/26/netflix-raises-prices-across-all-streaming-plans.html
1•geox•10m ago•0 comments

What Happens When a Whale Is Born?

https://www.newyorker.com/culture/the-lede/what-happens-when-a-whale-is-born
1•petethomas•13m ago•0 comments

Dead whale washes up on Rockaway Beach

https://gothamist.com/news/dead-whale-washes-up-on-rockaway-beach
1•alazsengul•14m ago•0 comments

Mindory App

https://mindoryapp.com/
1•kseniaautihd•18m ago•1 comments

Claude Code CLI notification script

https://keyhell.org/posts/2026-03-26-claude-code-cli-notifications
2•keyhell•18m ago•1 comments

IEML, the Information Economy MetaLanguage

https://intlekt.io/
1•tomek_zemla•19m ago•0 comments

The Placek Framework: How Pentium, Febreze, and PowerBook Were Named

https://voxa.mykkym.io/blog/placek-framework-pentium-febreze-powerbook.html
1•voxaai•24m ago•0 comments

Show HN: Mokkit, a browser app to create animated device mockups

https://mokkit.co/app
1•ugo_builds•24m ago•0 comments

People Cheering Verdicts Against Meta Should Understand What Theyre Cheering For

https://www.techdirt.com/2026/03/26/everyone-cheering-the-social-media-addiction-verdicts-against...
1•WarOnPrivacy•24m ago•0 comments

Best agentic IDEs (with video demos)

https://www.paralect.com/stack/top-agentic-ides
1•igorkrasnik•25m ago•0 comments

The United States router ban, explained

https://www.theverge.com/tech/899906/fcc-router-ban-march-2026-explainer
1•stalfosknight•26m ago•0 comments

Claude Code adjusting down 5hr limits

https://twitter.com/trq212/status/2037254607001559305
4•laacz•27m ago•0 comments

Bitter Lessons from a Chinese Education Reformer (2022)

https://www.sixthtone.com/news/1010535
1•mefengl•30m ago•1 comments

Monado became the foundation for OpenXR runtimes

https://www.collabora.com/news-and-blog/news-and-events/how-monado-became-the-foundation-for-open...
4•mfilion•34m ago•0 comments

Judge Dismisses Lawsuit from X Accusing Advertisers of Boycott Conspiracy

https://www.forbes.com/sites/zacharyfolk/2026/03/26/judge-dismisses-lawsuit-from-elon-musks-x-acc...
10•lawrencejgd•34m ago•0 comments
Open in hackernews

ExWrap: Turn any application written built in any language into an executable

https://github.com/mcfriend99/exwrap
3•mcfriendsy•10mo ago

Comments

mcfriendsy•10mo ago
Hi everyone,

I started this project some months back called ExWrap with the goal of turning any application written in any programming language into an executable.

It works for MacOS, Windows, and Linux with support for cross-generation (i.e. you can generate a Windows executable on Linux).

I haven't worked on it for a while, but it's usable.

I'm looking for suggestions, ideas, corrections, and generally contributions. A reason to revisit the project.

It uses a pre-built launcher for the platform. During packaging, a config file is generated to tell the launcher how to launch the app based on the user's configuration.

For MacOS app bundles, the prebuilt launcher is the primary target of the bundle declared in the plist file while for Windows and Linux, the generated executable acts as a self-extracting archive that launches the app post extraction. On Windows and Linux, the extracted app can also be run directly if the extraction path is added to system path.

So basically on Linux and Windows, it also acts as an installer.

It's actually configurable and allows pre-installation and post-installation configuration that can run any command or script to do the installation of dependencies. You can also cleverly add the dependencies as part of the packaged data. This is very useful for packaging static libraries along with the executable.

If you were generating for OSX from Windows for example, all you need is to download the OSX libraries and point to it from your configuration. I believe there's room for more improvement.

All feedbacks and suggestions are welcomed.