frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Halvar's Guide to Entrepreneurship

https://thomasdullien.github.io/guides/entrepreneurship/
1•Darkstryder•39s ago•0 comments

Visualizing multi-dimensional array shapes recursively

https://arrayvis.netlify.app/
1•biraj-rocks•52s ago•1 comments

Anthropic gives Claude a permanent seat in your Slack channels

https://thenewstack.io/anthropic-claude-tag-slack/
1•r_singh•2m ago•0 comments

SovietRxiv: Rediscovering the Soviet scientific archive, in English

https://sovietrxiv.org
1•SUPERustam•4m ago•0 comments

UN commission of inquiry says Israel committing genocide by targeting children

https://www.bbc.com/news/articles/c0jy96w6pw2o
1•lorecore•4m ago•1 comments

New car registrations: +4% year-to-date; battery-electric 20% market share [pdf]

https://www.acea.auto/files/Press_release_car_registrations_May_2026.pdf
1•haunter•4m ago•1 comments

Quartz Crystals: The Heartbeat of Our Digital World

https://www.arkcrystals.com/blogs/articles/quartz-crystals-the-heartbeat-of-our-digital-world
1•andrewstuart•5m ago•0 comments

Show HN: Foundation models that predict patient response in clinical trials

https://atlasdiscovery.bio/clinical-trial-response-prediction
1•shaamilkarim•7m ago•0 comments

I received a fake job offer. The NPM package was a full info-stealer

https://aydinnyunus.github.io/2026/06/22/fake-job-offer-npm-supply-chain-malware-foxtopia/
1•bobsoap•7m ago•0 comments

Show HN: AI Torah Chervuta

https://www.yochai.wiki/chat
2•Philosopheril•8m ago•0 comments

Polymarket's viral videos showed people winning big, but the bets were fake

https://www.techsentiments.com/article/2026/06/22/polymarkets-viral-videos-showed-people-winning-...
1•rajsuper123•8m ago•0 comments

Memory Retrieval with Code?

https://piyussh.substack.com/p/memory-retrieval-with-code
1•piyussh•8m ago•0 comments

Nvidia Announces BioNeMo Agent Toolkit

https://nvidianews.nvidia.com/news/nvidia-launches-bionemo-agent-toolkit-giving-ai-agents-the-too...
1•teepo•8m ago•0 comments

Aside: The AI Browser

https://aside.com
1•handfuloflight•9m ago•0 comments

Safe Downloads (Educational)

https://totally-safe-to.download/
1•itherseed•12m ago•0 comments

Mitigated API authentication bypass for python.org download metadata

https://blog.python.org/2026/06/mitigated-api-bypass-for-download-metadata-python-dot-org/
1•lumpa•12m ago•0 comments

Worldpay – A power disruption has caused issues with Authorization and Payments

https://status.worldpay.com
1•jdefelice•13m ago•0 comments

Audit finds San Francisco tax official steered $10M contract to friend

https://sfstandard.com/2026/06/23/audit-sparked-standard-investigation-finds-tax-official-steered...
3•littlexsparkee•13m ago•1 comments

How Small Can a C++ Unit Test Framework Be?

https://freshsources.com/code-capsules/test-part1/
1•chuckallison•14m ago•1 comments

New England Marijuana Live Price Data

https://www.bluedream.store/
1•sgspace•14m ago•1 comments

Masayoshi Sun dismisses Musk's idea for orbital data centers

https://www.japantimes.co.jp/business/2026/06/23/companies/softbank-dismissal-musk-idea-data-cent...
3•anigbrowl•17m ago•2 comments

The Agent-Buyer Thesis – What Happens When AI Agents Are the Buyers

https://agentbuyer.gumroad.com/l/agent-buyer-thesis
1•P_Economics•19m ago•1 comments

The Glorious Revolution and the causes of the industrial revolution

https://www.worksinprogress.news/p/how-smashing-the-nimbys-created-modern
1•fanf2•19m ago•0 comments

Ukraine disguised a $20B sabotage mission as a 'porn film'

https://www.telegraph.co.uk/books/non-fiction/nord-stream-conspiracy-bojan-pancevski-review/
6•AureliusMA•21m ago•0 comments

Michael Burry: Billions in Nvidia Are Hidden Through Complex Financing Structure

https://finance.yahoo.com/markets/stocks/articles/michael-burry-calls-nvidia-ai-153103274.html
2•doener•21m ago•0 comments

Mozilla.org – The web is evolving. So are we

https://blog.mozilla.org/en/mozilla/news/announcing-mozilla-org-new-non-profit/
5•brycewray•23m ago•2 comments

Mind-Body Healing: An Exchange

https://statmodeling.stat.columbia.edu/2026/06/23/mind-body-healing-an-exchange/
1•u1hcw9nx•23m ago•0 comments

America Isn't Sweating Climate Change

https://www.theatlantic.com/science/2026/06/climate-ambivalence/687673/
2•littlexsparkee•25m ago•1 comments

The Geometry of Noise: Why Diffusion Models Don't Need Noise Conditioning

https://intuitivepapers.ai/geometry-of-noise/
2•skzv•27m ago•0 comments

We've seen AI hype cycles before. They didn't end well

https://www.narracomm.com/weve-seen-ai-hype-cycles-before-they-didnt-end-well/
2•thelonelyborg•27m 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.