frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Carl is a lightweight BitTorrent client with first-class Tor anonymity

https://vincenzopalazzo.github.io/carl/
1•janandonly•47s ago•0 comments

LLMs as a Last Resort

https://www.stonehedgelabs.com/blog/llms-as-a-last-resort
1•ra0x3•1m ago•0 comments

PorTAL: Portable Task Adapters for LLMs

https://twitter.com/ramplabs/status/2072381992285647280
1•talhof8•1m ago•0 comments

RePost – API Tester

https://chromewebstore.google.com/detail/repost-api-tester/eipmeckflplenlbnlhbpmjojahephhkp
1•info-chirila•4m ago•0 comments

Brain activity under anesthesia challenges what we know about consciousness

https://www.sciencedaily.com/releases/2026/06/260624025514.htm
2•howard941•4m ago•0 comments

Meta building cloud business to sell excess AI capacity

https://www.reuters.com/business/meta-sell-excess-ai-computing-capacity-via-cloud-business-bloomb...
1•yiyingzhang•5m ago•0 comments

The Spacesuits – Engineering Archive

https://www.thespacesuits.com/
1•rbanffy•5m ago•0 comments

Bitrise Remote Dev Environments

https://bitrise.io/blog/post/bitrise-remote-dev-environments-beta-launch
1•balazsczap•6m ago•0 comments

On Vibe Forks

https://rahulpandita.me/blog/2026-06-29-vibe-forks/
1•azhenley•6m ago•0 comments

Armcade, remote control robot arms to play chess

https://www.armcade.tv
1•softservo•8m ago•0 comments

Agentic design patterns, read through a healthcare AI lens

https://jenniferjiangkells.com/thoughts/agentic-patterns-healthcare-lens/
1•adjks•8m ago•0 comments

Under the Trump crypto playbook, the family always wins

https://www.reuters.com/investigations/under-trump-crypto-playbook-family-always-wins-investors-d...
2•layer8•8m ago•0 comments

After culling his flock, US poultry farmer now fears bird flu

https://www.theguardian.com/environment/2026/jul/01/bird-flu-farms-us
1•howard941•9m ago•0 comments

Jlook – a pipeable way to turn efficient API JSON into readable code

https://github.com/SyntaxError2505/jlook/tree/main
2•SyntaxError2505•10m ago•0 comments

How Artist Corporations Became Law

https://www.artistcorporations.com/updates/how-artist-corporations-became-law
1•throwoutway•10m ago•0 comments

OpenLieroX has a new version after several years

https://github.com/openlierox/openlierox
1•openlierox2026•11m ago•0 comments

In AI-exposed jobs, only the youngest workers are losing ground

https://www.randalolson.com/2026/06/22/ai-jobs-hit-youngest-workers/
1•littlexsparkee•14m ago•0 comments

Ask HN: Who is this Steve T.?

2•jacobreddy•15m ago•0 comments

DHS confirms hackers breached HSIN info-sharing platform

https://www.bleepingcomputer.com/news/security/dhs-confirms-hackers-breached-hsin-info-sharing-pl...
1•dr_kiszonka•20m ago•0 comments

Commission plans to end "as low as reasonably achievable" radiation guidance

https://www.nytimes.com/2026/07/01/climate/nrc-radiation-regulation-nuclear-overhaul.html
1•donohoe•20m ago•0 comments

Virginia county asks schools to conserve power due to AI electricity price hikes

https://www.tomshardware.com/tech-industry/data-centers/virginia-county-asks-all-employees-includ...
1•vrganj•21m ago•0 comments

Reading a PDF and want to get to its home page?

https://discourse.hookproductivity.com/t/hookmark-7-2-is-now-available/9814
1•LucCogZest•22m ago•0 comments

X.com link only works if you aren't logged in

https://twitter.com/coinbureau/status/2071330294452666695/mediaviewer
1•argee•22m ago•0 comments

Tell HN: I'm not excited for Fable and am disappointed in Karpathy

4•behnamoh•23m ago•1 comments

Black Soup

https://en.wikipedia.org/wiki/Black_soup
2•petethomas•28m ago•0 comments

Backstage access: an unauthenticated SQL injection in Front Gate Tickets

https://ian.sh/frontgate
2•iancarroll•28m ago•0 comments

Michael Burry Cites 'Beginning of the End' with New AI Short Bets

https://www.wsj.com/finance/stocks/michael-burry-cites-beginning-of-the-end-with-new-ai-short-bet...
2•thm•29m ago•0 comments

Near Miss: The Solar Superstorm of July 2012

https://science.nasa.gov/science-research/planetary-science/23jul_superstorm/
1•simonebrunozzi•31m ago•0 comments

Xbox testing disc-to-digital feature that digitizes a physical game collection

https://www.theverge.com/report/960173/microsoft-xbox-disc-to-digital-feature-physical-game-colle...
2•HelloUsername•31m ago•0 comments

Biriyani Osawa: The Philosophy of Biryani or Die

https://osawa.biriyani.co.jp/en/
2•bitlad•32m 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.