frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

NASA Ad Astra Initiative

https://science.nasa.gov/astrophysics/programs/physics-of-the-cosmos/community/ad-astra/
1•xqcgrek2•1m ago•0 comments

Sum types in Go, or how to model events the compiler can check

https://viviersoft.com/blog/ddd-go-1-sum-types/
1•lanath•3m ago•0 comments

Farmed Salmon May Not Be as Nutritious as It Once Was, New Research Suggests

https://insideclimatenews.org/news/04092026/farmed-salmon-losing-healthy-fatty-acids/
1•Alephinitesimal•4m ago•0 comments

Customer Support Is Broken. VoraDesk Is Building a Better Way

https://substack.com/profile/206275102-akanmu-akinkunmi/note/c-331801194
1•PetrJoe•7m ago•0 comments

Customizing my Compaq MX-11800 keyboard

https://blog.webb.page/WM-102
3•NetOpWibby•8m ago•0 comments

Gmail/Google Docs Down?

2•kappi•9m ago•0 comments

Tesla touts European supervised self-driving safety data ahead of EU vote

https://www.reuters.com/business/autos-transportation/tesla-touts-european-supervised-self-drivin...
1•tosh•9m ago•0 comments

CampRoo – Free Camping Spots

https://camproo.com
1•aziz10101•9m ago•0 comments

FSD Supervised now approved in Slovenia

https://twitter.com/teslaeurope/status/2097007168939593780
1•tosh•10m ago•0 comments

San Francisco institution 'heartbroken and furious' after erasure of public art

https://www.sfgate.com/local/article/clarion-alley-murals-erased-22420365.php
2•mikhael•11m ago•0 comments

The auto-formalization of mathematics versus law

https://lexifina.com/blog/auto-formalisation-of-law
2•alansaber•13m ago•0 comments

SnapFire FSR: Write TypeScript. Run Rust. Ditch Node.js

https://snapfirers.com/
1•excsn•15m ago•1 comments

A fast client only protein viewer

https://github.com/buyukakyuz/protein-foldspace
2•replaski16•15m ago•0 comments

The Aviation Herald was sued – July 31st 2026

https://avherald.com/h?article=53c8958a
2•embedding-shape•16m ago•0 comments

Ancient cave art suggests first known humans in Ireland walked over from Wales

https://www.bbc.com/news/articles/c5y75dl0jpko
1•bookofjoe•17m ago•1 comments

Humpback whales are interrupting orca hunts to rescue different species

https://spacedaily.com/k-humpback-whales-are-interrupting-orca-hunts-to-rescue-completely-differe...
2•cobbzilla•18m ago•0 comments

VDN Vai Dar Namoro

https://vaidarnamoroonline.netlify.app
1•gabrielantonio•20m ago•0 comments

Bun rewrite and FLT formalization had nearly identical resource usage

2•Zsfe510asG•22m ago•1 comments

Show HN: Raw Screen Recordings into Cinematic Apple-Style Product Demos

https://isolate.video/
5•vignesh_warar•22m ago•0 comments

YC Demo Day This Thursday

https://www.neweconomies.co/p/y-combinator-summer-26-batch
1•ollieforsyth•24m ago•0 comments

Russia opens first road bridge with North Korea

https://www.dw.com/en/russia-opens-first-road-bridge-with-north-korea/a-79142595
3•everybodyknows•25m ago•0 comments

Can the U.S. afford a major war? Not with this deficit

https://www.washingtonpost.com/opinions/interactive/2026/09/07/deficit-is-biggest-threat-us-natio...
2•moat•26m ago•1 comments

Show HN: Isle – managed application environments for computer-use agents

https://www.tryisle.com
4•sxhivs•27m ago•1 comments

Show HN: Security and JSON tools that run in the browser

https://sentrint.com/tools
3•xEcho•28m ago•0 comments

The Download: the hunt for underground hydrogen and more rogue OpenAI agents

https://www.technologyreview.com/2026/09/07/1143592/the-download-underground-hydrogen-search-rogu...
3•joozio•28m ago•0 comments

Root cause analysis of the Liquid network split and 3,998.67 BTC peg-out theft

https://gist.github.com/1440000bytes/211ac92dd4433bb1a2e674bf0ff7db2e
2•binyu•30m ago•0 comments

Can AI Replace a Nevada Brothel Sex Worker?

https://brothelnevada.com/2026/09/05/ai-replace-sex-workers/
1•Teever•30m ago•0 comments

PostgreSQL 19 Interactive Tour

https://victoriametrics.com/blog/postgres-19/index.html
3•valyala•31m ago•0 comments

Bitcoin sidechain Liquid hacked for ~4k BTC

https://nehanarula.org/2026/09/07/liquid-hack.html
4•nehan•32m ago•1 comments

$70 Open Source Brain-Computer Interface Octopus 16 by PiEEG

https://www.indiegogo.com/en/projects/pieeg/pieeg_octopus
1•Christiangmer•33m 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.