frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•FeelingCreative•32s ago

Elon Musk and the Infinity Rebuy

https://davekarpf.substack.com/p/elon-musk-and-the-infinite-rebuy
1•highfrequency•35s ago•0 comments

Major Oak: Ancient 'Robin Hood' tree is dead, experts say

https://www.bbc.com/news/articles/clyer9m0jmko
3•speckx•4m ago•0 comments

SpaceX plan for rocket launch site on Louisiana coast sparks backlash

https://www.theguardian.com/us-news/2026/aug/10/spacex-rocket-launch-site-louisiana-backlash
3•jethronethro•4m ago•0 comments

Ask HN: What new tools are you using?

1•jjcm•8m ago•0 comments

Nvidia is pulling Wall Street into the AI buildout

https://thenextweb.com/news/nvidia-500-billion-wall-street-ai-infrastructure-funding-package
2•berkeleyjunk•8m ago•0 comments

Ask HN: Why are websites and apps still running legacy code?

1•tonymet•8m ago•4 comments

Bower: AI-powered tool to find educators for homeschool learning pods

https://educateprivately.com/
1•gaws•9m ago•0 comments

Muse Glimmer from Meta Superintelligence Labs is now available

https://ollama.com/blog/muse-glimmer
1•wertyk•9m ago•0 comments

Show HN: Learn to speak everyday Telugu in 60 days

https://matladu.in
1•not_wowinter14•10m ago•0 comments

npm RAT Targets Alibaba

https://socket.dev/blog/npm-rat-targets-alibaba
1•Georgelemental•11m ago•0 comments

I spent $200 in API credits asking AI agents to scaffold a Next.js starter

https://codapult.dev/blog/why-cloning-beats-prompting-ai-saas
1•vladzoff•12m ago•0 comments

Tau protein can sneak into brain cells' energy factories–and wreak havoc

https://www.science.org/content/article/tau-protein-can-sneak-brain-cells-energy-factories-and-wr...
1•rbanffy•12m ago•0 comments

Redora, a Redis SDK for NestJS

https://www.npmjs.com/package/redora
2•nebyusamuel•12m ago•0 comments

As Nolan Intended

https://asnolanintended.com
2•andrisgorax•13m ago•0 comments

I close SSH port 22 (and what I use instead)

https://www.michelebologna.net/2026/ssh-port-22-fwknop-single-packet-authorization/
2•speckx•14m ago•0 comments

Nvidia, Wall Street Firms Strike AI Financing Deal Targeting $500B

https://www.wsj.com/business/deals/nvidia-wall-street-firms-strike-ai-financing-deal-targeting-50...
2•jgalt212•16m ago•1 comments

Ask HN: Thoughts on this – Pre-built understanding of your codebase

https://www.corrdex.app/
1•harveyhayes•16m ago•1 comments

Logging in to Use Old Reddit

https://www.reddit.com/r/modnews/comments/1ujtebf/logging_in_to_use_old_reddit/
2•radialstub•16m ago•0 comments

Dr. Wolfgang Palaver: Mimetic Theory, Rene Girard, Violence and the Sacred [video]

https://www.youtube.com/watch?v=PPh0YWdFAJA
1•devrob•17m ago•0 comments

The 'Jury Duty' Scam That Cost This Family $25,000

https://www.wsj.com/us-news/the-jury-duty-scam-that-cost-this-family-25-000-5629f703
1•apparent•20m ago•1 comments

Show HN: Fast way to convert any website to agent ready Markdown

1•gokulnair2001•20m ago•0 comments

Optimizing an NVFP4 Blockscaled GEMM on RTX Pro 6000 Blackwell GPU (SM120)

https://research.colfax-intl.com/optimizing-an-nvfp4-blockscaled-gemm-on-rtx-pro-6000-blackwell-g...
1•matt_d•21m ago•0 comments

Planned satellite megaconstellations could generate runaway space debris

https://www.science.org/content/article/planned-satellite-megaconstellations-could-generate-runaw...
1•rbanffy•21m ago•0 comments

The End Poem

https://www.theendpoem.com/
1•sph•21m ago•0 comments

Western Europe faces unprecedented drought, threatening human activity

https://www.lemonde.fr/en/environment/article/2026/08/10/western-europe-faces-unprecedented-droug...
2•geox•24m ago•0 comments

AMD Catches the Agentic AI Wave and Will Ride It Up Masterfully

https://www.nextplatform.com/compute/2026/08/05/amd-catches-the-agentic-ai-wave-and-will-ride-it-...
1•rbanffy•24m ago•1 comments

Amazon to Offer GLP-1 Weight-Loss Drugs to Medicare Part D Patients

https://www.wsj.com/health/pharma/amazon-to-offer-glp-1-weight-loss-drugs-to-medicare-part-d-pati...
1•bookofjoe•24m ago•0 comments

Reflect Orbital Presentation

https://starryprinceton.org/scattering_calculations_renderings
1•ColinWright•26m ago•0 comments

Show HN: Gitseq: A Repo Becomes a Workroom

https://github.com/generalbusiness-ai/gitseq
1•inguz•26m 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.