frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Halmos – Hacker News for math, where the server checks the proofs

https://halmos.science/
1•nadermx•38s ago•0 comments

Why does the U.S. military seem stymied in the war with Iran?

https://www.npr.org/2026/08/19/nx-s1-5937516/why-does-the-u-s-military-seem-stymied-in-the-war-wi...
1•colinprince•1m ago•0 comments

UK cinemas are now restricting Meta smart glasses over film piracy concerns

https://www.neowin.net/news/uk-cinemas-are-now-restricting-meta-smart-glasses-over-film-piracy-co...
1•bundie•1m ago•0 comments

Show HN: Process your solar eclipse data

https://github.com/dmead/solar-eclipse-timelapse
1•dmead•5m ago•0 comments

Project Cybersyn

https://bactra.org/notebooks/cybersyn.html
2•cassepipe•5m ago•0 comments

Hyperscalers' Off-Grid Power Push Comes with Risks

https://www.wsj.com/business/energy-oil/hyperscalers-off-grid-power-push-comes-with-risks-b1dca338
1•bcaulfield•5m ago•0 comments

Foreign Students Applying to US Colleges Fell 10% This Year

https://www.bloomberg.com/news/articles/2026-08-20/foreign-students-seeking-spots-at-us-colleges-...
3•garbawarb•8m ago•0 comments

What datacenters look like in neighborhoods

https://www.usatoday.com/picture-gallery/tech/2026/08/19/data-center-communities-controversy-phot...
3•ripe•8m ago•1 comments

Kiro Crew

https://kiro.dev/blog/introducing-kiro-crew/
2•gmays•9m ago•0 comments

Promising Results for mRNA Cancer Vaccine from Moderna and Merck

https://time.com/article/2026/08/19/mrna-cancer-vaccine-moderna-merck/
2•paulpauper•11m ago•0 comments

I reverse-engineering the closed GoodNotes format using LLMs

https://github.com/Kaih1825/parser-for-goodnotes
2•Kaih1825•12m ago•1 comments

Mjolnir: Automated Cross-Vendor Adversarial Review

https://blog.brokk.ai/mjolnir-automated-cross-vendor-adversarial-review/
2•jbellis•12m ago•0 comments

Show HN: We chased a weather balloon across Montana and never found it

https://radi8.dev/blog/uplink/
4•radeeyate•12m ago•0 comments

Dark Factory Engineering and Programming as Theory Building

https://chris-parmer.com/dark-factory-and-programming-as-theory-building/
2•chriddyp•13m ago•0 comments

Show HN: See what's behind any website: DNS, hosting, security, tech stack

https://heckzar.app/
2•nimsarajay•13m ago•0 comments

Why Odin?

https://nathany.com/why-odin/
2•ksec•19m ago•0 comments

Show HN: SystemG – An agent-friendly general process composer

https://sysg.dev
2•ra0x3•19m ago•0 comments

'Darth Vader' Wants Flock in San Diego

https://www.404media.co/darth-vader-spoke-in-support-of-flock-at-san-diego-city-council-meeting/
2•cdrnsf•20m ago•0 comments

Show HN: JavaScript library that makes any list a smooth picker of any shape

2•tahazsh•21m ago•0 comments

China lands its Zhuque-3 rocket, rivaling Blue Origin and SpaceX

https://www.scientificamerican.com/article/china-successfully-lands-its-zhuque-3-rocket-rivaling-...
3•beardyw•22m ago•0 comments

URL shortener links stored in your ATProto PDS

https://atpr.to/
4•jcbhmr•22m ago•0 comments

Judge orders Kalshi cease Washington operations (starting August 20)

https://www.atg.wa.gov/news/news-releases/judge-orders-kalshi-cease-numerous-washington-operations
3•travisd•23m ago•1 comments

Windows silently stops delivering WH_KEYBOARD_LL hooks when Chromium has focus

https://github.com/wudaming00/wh-keyboard-ll-chromium
3•wudmaing00•23m ago•0 comments

By all means, keep moving

https://www.sciencedirect.com/science/article/abs/pii/S1053810017302143
2•mabios•24m ago•1 comments

The Milky Way's fastest star could expose our black hole's spin

https://www.scientificamerican.com/article/the-milky-ways-fastest-star-could-expose-our-black-hol...
3•beardyw•25m ago•1 comments

Epic Unhappy with New EU App Store Fee Structure

https://twitter.com/EpicNewsroom/status/2089787577062559951
3•smugma•26m ago•1 comments

Email Infrastructure for ATProto

https://comail.at/
2•jcbhmr•26m ago•0 comments

We're trying to make Kimi K3 cheaper

https://packs.relace.ai/
3•pfunctional•27m ago•1 comments

Textlog Is Now an Open Collective, Part of Open Source Europe

https://opencollective.com/textlog
3•stagas•28m ago•1 comments

Building certgrep.sh: a free CT search engine

https://haveibeensquatted.com/blog/building-certgrep
3•juxhindb•28m ago•1 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.