frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mike Williams and Björn Gustafsson on Building the Jam (Erlang) [video]

https://www.youtube.com/watch?v=sRTierdN9c4
1•sbuttgereit•46s ago•0 comments

Show HN: Strophae, multi personas chat interface

https://mtct.github.io/strophae/
1•mtct88•1m ago•0 comments

Ask HN: What are you using local LLMs for?

1•adam_patarino•1m ago•0 comments

Sample More, Reflect Less: Self-Refine and Reflexion Lose to Repeated Sampling

https://arxiv.org/abs/2607.28576
1•sbulaev•2m ago•0 comments

Math shows why your vote may not count the way you think it does

https://phys.org/news/2026-07-math-vote.html
1•pseudolus•3m ago•0 comments

A Culture That Could Only Count

https://robertxworld.com/the-culture-that-could-only-count/
1•devrob•7m ago•0 comments

Digital Independence Day: Switch to the good side every first Sunday

https://diday.org/en/
1•whilenot-dev•7m ago•0 comments

Why is assisted dying so rare, even where it's legal?

https://preservinghope.substack.com/p/why-is-assisted-dying-so-rare-even
1•arielzj•8m ago•1 comments

What a Hedge Fund's Implosion Says About the A.I. Trade

https://www.nytimes.com/2026/07/31/business/dealbook/situational-awareness-ai-hedge-fund.html
3•donohoe•9m ago•0 comments

Farmers spreading crushed glass on their crops

https://www.abc.net.au/news/2026-07-31/ground-glass-silicon-fertiliser-farm-productivity/106963488
1•porjo•9m ago•0 comments

How the Words We Teach English Language Learners Changed

https://pudding.cool/2026/07/essential-words/
1•surprisetalk•9m ago•0 comments

Amiga Pips the PC for Mission-Critical Computing at NASA (2021)

https://hackaday.com/2021/08/16/retrotechtacular-amiga-pips-the-pc-for-mission-critical-computing...
1•Bluestein•10m ago•0 comments

Shipping code without human verification

https://thenewstack.io/ship-code-without-verification/
1•tonkkatonka•10m ago•1 comments

Hello from Zernote

https://blog.zernote.com/hello-from-zernote/
1•sagotly•11m ago•0 comments

Ufc noche free: legal ways to watch and verify the card

https://mxltv.net/mx
1•cynthial485•15m ago•0 comments

How to Stop Procrastinating

https://www.nytimes.com/2026/07/31/well/stop-procrastinating-tips.html
1•EndXA•15m ago•0 comments

Violin Plot

https://en.wikipedia.org/wiki/Violin_plot
1•tosh•16m ago•0 comments

The End of an Era

https://hughhowey.com/the-end-of-an-era/
2•harscoat•18m ago•0 comments

Un-Employ Us All

https://thunkpoorly.bearblog.dev/un-employ-us-all/
3•speckx•18m ago•1 comments

A dystopian world where LLMs can't code but can generate software binaries

https://twitter.com/random_walker/status/2082163285588107752
2•eamag•19m ago•1 comments

Tired of paying per domain for DMARC, so I built a self-hosted one

https://github.com/pescheckit/dmarc-service
2•botw44•24m ago•1 comments

10x Faster Change Management. Compliance Included

https://eng.miragesecurity.ai/posts/10x-change-management/
1•cebert•24m ago•0 comments

AI Companies Mass Shredding Rare Books [video]

https://www.youtube.com/watch?v=8c8pmp_OC2s
2•Bender•24m ago•0 comments

In-House LLM Serving at Netflix

https://netflixtechblog.com/in-house-llm-serving-at-netflix-a5a8e799ea2c
1•theanonymousone•30m ago•0 comments

Best 4K IPTV service Reddit: what the threads recommend

https://4kliveiptv.tv/
1•hunter_lewis754•30m ago•0 comments

The Maxwell Conjecture Is False (GPT 5.6 Sol)

https://arxiv.org/abs/2607.27197
2•rahen•32m ago•3 comments

Show HN: PinAllWindows – sync pinned apps across Chrome windows

https://chromewebstore.google.com/detail/pinallwindows/fakbifeeblnopdhicpmhhmcdhmefphjp
2•boundless88•33m ago•0 comments

You have been mislead about lightbulbs

https://maurycyz.com/misc/tungsten/
2•tonyg•35m ago•1 comments

Low Entropy Vuln on Coldcard Mk3 Hardware Wallets, 1082.58 BTC Drained

https://www.reddit.com/r/Bitcoin/comments/1vatgl4/full_panic_one_of_my_wallets_was_drained/
2•svenfaw•35m ago•0 comments

LinkedIn adds a 'Seems like AI slop' button

https://thenextweb.com/news/linkedin-seems-like-ai-slop-button
7•thunderbong•36m ago•2 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.