frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

My Tests Were Green. My Verification Tool Wasn't

https://igel-data.com/blog/verification-found-two-bugs/
1•yito88•1m ago•0 comments

A functional hypothesis for the Roman dodecahedron, with measured aperture data

https://zenodo.org/records/21744442
1•DoDecaHeJon•3m ago•0 comments

Show HN: Open OneNote Viewer in Rust

https://github.com/emsi/OneNoteViewer
2•emsi•6m ago•0 comments

Top amputation surgeon had own legs removed due to fetish. Were patients safe?

https://www.theguardian.com/uk-news/2026/aug/01/neil-hopper-surgeon-amputated-legs-fetish-extreme...
6•bookofjoe•8m ago•0 comments

Restoring your suspended Instagram account (by emailing your Congressman) (2024)

https://diamondsinthelibrary.com/instagram-permanently-suspended/
2•fursgonemild•8m ago•1 comments

Dear Alpha School: I Hope You're Right

https://www.aei.org/commentary/dear-alpha-school-i-hope-youre-right/
2•paulpauper•10m ago•0 comments

All in Your Head Excerpt: Psychiatry and the Isolated Demand for Rigor

https://freddiedeboer.substack.com/p/all-in-your-head-excerpt-psychiatry
2•paulpauper•10m ago•0 comments

CannonSmash-web

https://jgbrwn.itch.io/cannonsmash-web
2•indigodaddy•18m ago•0 comments

But can your calculator run Linux?

https://raymii.org/s/articles/But_can_your_calculator_run_Linux.html
2•jandeboevrie•19m ago•0 comments

Reclaim – Resume tailoring that flags adjacent skills instead of keywordstuffing

https://www.reclaim.careers/
2•Adoomah•20m ago•0 comments

Take More Screenshots (2022)

https://alexwlchan.net/2022/screenshots/
2•downbad_•23m ago•0 comments

Google News is just Forrest Gump's shrimp boat now

https://elgan.com/google-news-is-just-forrest-gumps-shrimp-boat-now
9•mikelgan•24m ago•6 comments

Which web browser has no AI?

5•lilerjee•25m ago•6 comments

EU accuses Temu of hindering raid in Ireland

https://www.rte.ie/news/business/2026/0731/1585977-temu-dublin/
3•austinallegro•29m ago•0 comments

The Index – a hand-checked catalog of AI tools

https://theindex.agnissanisaac.com/
2•Code_A-Z•30m ago•0 comments

AI #179 Part 2: Hearing the Fire Alarm

https://thezvi.substack.com/p/ai-179-part-2-hearing-the-fire-alarm
3•paulpauper•31m ago•0 comments

Moiré Pattern

https://en.wikipedia.org/wiki/Moir%C3%A9_pattern
2•petethomas•36m ago•0 comments

Jacques Vallée Spent 70 Years Investigating UFOs. Mystery Is Bigger Than Aliens

https://rmmclaren.substack.com/p/jacques-vallee-spent-70-years-investigating
4•handfuloflight•36m ago•2 comments

Show HN: Unified API for wearable and health data at 1/25th of Terra's price

https://stridee.fit/developer
2•alvaromolina0•38m ago•0 comments

Linux 7.3 to Allow Tuning AMD P-State Dynamic EPP with per CPU Core Granularity

https://www.phoronix.com/news/Linux-7.3-AMD-Per-Core-Dynamic
2•Bender•40m ago•0 comments

Show HN: Posecode inspectable human movement as text

https://www.posecode.org/play
2•brnbrn•42m ago•0 comments

Show HN AI Data Center Alert

https://aidatacenterimpact.com/
3•studsnchayns•45m ago•0 comments

Get ready to flee, Americans in ten countries warned

https://www.dailymail.com/news/article-16021741/flee-Americans-nine-countries-US-embassies-Iran-w...
3•Bender•45m ago•4 comments

Charities remain locked out of CAF Bank online accounts

https://www.theregister.com/security/2026/07/31/charities-remain-locked-out-of-caf-bank-online-ac...
2•Bender•49m ago•0 comments

Kun's Pi Agent Config

https://blog.kunchenguid.com/p/kuns-pi-agent-config
2•handfuloflight•52m ago•0 comments

Fermi Paradox

https://en.wikipedia.org/wiki/Fermi_paradox
5•simonebrunozzi•54m ago•1 comments

I made Squirrel game with Flutter and Flame

https://danvilela.com/squirrel-up
2•dmvvilela•54m ago•0 comments

Show HN: Cockpit for you Claude Code agents in Rust

https://episko.dev/
2•evolabs•54m ago•1 comments

GenAI Added to Google Earth

https://www.theatlantic.com/technology/2026/07/google-earth-ai-images/688145/
4•alwa•55m ago•1 comments

People Are Crossing Oceans for a Fayetteville Roller Coaster

https://www.axios.com/local/atlanta/2026/07/24/arieforce-one-closing-fayetteville-fun-spot-americ...
3•Xcelerate•56m 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•1y ago

Comments

mcfriendsy•1y 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.