frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to report copying review data under Copyright to google

https://www.google.com/
1•nsinghal12•3m ago•0 comments

AI's real bottleneck is data delivery

https://techcrunch.com/sponsor/f5/your-gpus-arent-the-problem-ais-real-bottleneck-is-data-delivery/
1•adithyaharish•5m ago•0 comments

Gradle Technologies is now Develocity

https://develocity.ai/blog/gradle-technologies-is-now-develocity/
1•mccullal8•10m ago•0 comments

Streaming Encryption (2014)

https://www.imperialviolet.org/2014/06/27/streamingencryption.html
1•nivethan•12m ago•0 comments

Asbestos is a tool, just like any other

https://www.osnews.com/story/145530/asbestos-is-a-tool-just-like-any-other/
1•amcclure•12m ago•0 comments

Samsung is testing a network permission toggle feature

https://www.androidauthority.com/samsung-one-ui-9-concentration-feature-3666807/
1•vilasa•15m ago•0 comments

Router ARP/NAT contradict after reload. Client ghost or firmware bug?

1•asdem•16m ago•0 comments

Preempt AI v2 – AI is powerful. Make sure it's safe too

https://www.getpreempt.com/
1•karthikravva•19m ago•0 comments

Barefoot shoes are trendy after years of mockery. Do they work?

https://slate.com/life/2026/07/barefoot-shoes-minimalist-toe-running-sneakers-xero-vibram.html
3•littlexsparkee•22m ago•0 comments

Show HN: PocketVeto is a Bluetooth-only AI agent remote control

https://github.com/pocket-veto/pocket-veto
1•pocket-veto•22m ago•0 comments

OpenAI Staffers Are Funding a Rival Super Pac to Take on Their Boss

https://www.wired.com/story/openai-employees-donations-guardrails-alliance-leading-the-future/
4•1vuio0pswjnm7•23m ago•0 comments

Meta data centre in Alberta to start operating before neighbouring power plant

https://www.cbc.ca/news/canada/edmonton/meta-data-centre-alberta-greenlight-power-plant-9.7266096
3•1vuio0pswjnm7•25m ago•0 comments

Meta axes feature allowing tagging Instagram users to generate AI images of them

https://www.cbc.ca/news/business/meta-instagram-change-ai-settings-9.7265448
2•1vuio0pswjnm7•26m ago•0 comments

Show HN: Human0 – A template to run an autonomous, self-improving code loop

https://github.com/human0-ai/template
1•moshest•27m ago•0 comments

Databricks Set to Hit $188B Valuation with New Investment from Coatue

https://www.wsj.com/tech/ai/databricks-set-to-hit-188-billion-valuation-with-new-investment-from-...
2•jgalt212•28m ago•1 comments

Taliban 'National Keyboard' App Risks User Surveillance

https://www.afintl.com/en/202605276608
3•alephnerd•28m ago•1 comments

Code Ownership and Software Quality: A Replication Study (2015)

https://www.microsoft.com/en-us/research/publication/code-ownership-and-software-quality-a-replic...
2•LAC-Tech•29m ago•1 comments

FCC Officials Took $$$ Gifts from Paramount as Company Needed Approval for Deals

https://www.propublica.org/article/paramount-mergers-fcc-kennedy-center-gala
3•WarOnPrivacy•29m ago•0 comments

Chaldean Mass (Old) [video]

https://www.youtube.com/watch?v=HIZDK1PsJpY
1•marysminefnuf•31m ago•0 comments

Declassified Documents detailing Voting System Vulnerabilities 16-July-2026

https://www.whitehouse.gov/election-integrity/
4•pudgywalsh•32m ago•2 comments

Show HN: Piano Shepherd – a piano game for kids

https://zslava.itch.io/piano-shepherd
1•zslava88•33m ago•1 comments

Show HN: Levity, an open-source logo studio that runs as a single local binary

https://www.logodesignxperts.com/free-logo-tool/
1•abratabia•33m ago•0 comments

More Bounce to the Ounce: The rocket that everyone is too chicken to build

https://mceglowski.substack.com/p/more-bounce-to-the-ounce
2•decimalenough•33m ago•0 comments

Show HN: A LeetCode alternative - learn DSA through visual jigsaw puzzles

https://pqdsa.com/
1•_dragonguy•33m ago•0 comments

Show HN: Mocca – Claude Code wrapper where Plugin takes center stage

https://github.com/valehelle/mocca-hub
1•brighbun•38m ago•0 comments

Agnys – The flight recorder for AI agents

https://agnys.net/
1•ashishrdy•39m ago•0 comments

Show HN: Selenium Boot – Spring Boot's Conventions, Applied to Selenium

https://seleniumboot.com/
2•mdsddmhossain•42m ago•0 comments

Secrets in the ArXiv

https://arxiv.org/abs/2604.20927
2•wawayanda•42m ago•0 comments

Ask HN: How do you handle ticket management across Discord, GitHub, and email?

2•Daniel-Pan•43m ago•1 comments

Show HN: KV-Cache Grafting – Boosting frozen 12B LLMs to 93.3% AIME accuracy

https://arxiv.org/abs/2607.14431
2•Corbenic•44m 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.