frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Two similar AI judges fail together 7.7x more often than independence predicts

https://github.com/LAWLESS1987/covenant
1•Lawless1987•1m ago•0 comments

A refined phylochronology of the second plague pandemic in Western Eurasia

https://www.pnas.org/doi/10.1073/pnas.2534899123
1•Thevet•7m ago•0 comments

How I view LLMs as Sept 2026

https://bhardwajrish.blogspot.com/2026/09/how-i-view-llms-as-sept-2026.html
1•crearo•9m ago•0 comments

ZCode: silently uploading your Git history to the cloud

https://news.routley.io/posts/inside-zcode-silently-uploading-your-git-history-to-the-cloud.html
1•fourfire•13m ago•0 comments

A CERN for AI-assisted science

https://terrytao.wordpress.com/2026/09/17/a-cern-for-ai-assisted-science/
1•andsoitis•13m ago•0 comments

Show HN: Converting AVS audio viz to WebAssembly using GPT 5.6

https://strlns.github.io/very-serious-vibecoding/AVS-Web-Native-Editor-Alpha/
1•moritzwarhier•15m ago•0 comments

Spending on data centers and hardware now exceeds housing investment

https://fortune.com/2026/09/20/us-economy-milestone-spending-data-centers-ai-boom-housing-residen...
2•rawgabbit•15m ago•0 comments

Amiga Unix, Again

https://amigaux.org/
3•doener•16m ago•0 comments

Building an NBA stats warehouse without writing any of the code

https://jeffknupp719305.substack.com/p/paul-reed-is-tenth
2•jknupp•19m ago•0 comments

Prototype of a Windows 11-inspired Web OS with autonomous IA agents

https://github.com/davidpoliquin30-design/Prototype-autonom-ia-OS
1•davidpoliquin•21m ago•0 comments

Tools to Prevent Dementia

https://www.scmp.com/lifestyle/health-wellness/article/3368006/why-dementia-preventable-and-new-t...
1•elo2000•30m ago•0 comments

New startup to test psychedelic-like drug against Parkinson's symptom

https://www.statnews.com/2026/09/17/biotech-news-ariadne-testing-psychedelic-like-drug-parkinsons...
1•elo2000•31m ago•0 comments

Chronic stress may trigger hidden inflammation that damages the heart

https://lms.mrc.ac.uk/chronic-stress-may-trigger-hidden-inflammation-that-damages-the-heart/
2•doener•33m ago•1 comments

Are we talking less? A Q&A with psychologist Matthias Mehl (March 2026)

https://news.arizona.edu/news/are-we-talking-less-qa-psychologist-matthias-mehl
1•BiraIgnacio•34m ago•0 comments

Does Jev Have Politics? (Yes)

https://idlerambling.substack.com/p/does-jev-have-politics-yes
1•Sketchy_•39m ago•0 comments

Turn curiosity into a map you can explore

https://www.echohive.ai/experiments/drift
1•echohive42•41m ago•0 comments

AI Netscape – 1997 Chrome, 2026 AI

https://ainetscape.com/
2•TStringham•45m ago•2 comments

The addiction of online sports gambling: "Like crack in the '80s"

https://www.cbsnews.com/news/sports-betting-apps-gambling/
4•dzonga•47m ago•1 comments

The Crown of Creation

https://mika.global/post/1789946288.html
1•mika314•47m ago•0 comments

KDE Goes to the Pyramids [video]

https://media.ccc.de/v/kde2026-58-kde_goes_to_the_pyramids
2•sho_hn•51m ago•0 comments

How Anthropic CEO Dario Amodei's Writings Help Explain A.I. Fears

https://www.nytimes.com/2026/09/17/technology/dario-amodei-anthropic-essays-ai.html
4•gmays•51m ago•0 comments

Popular European Games

https://playfrom.eu/
1•doener•52m ago•0 comments

EkkoBSD

https://ekkobsd.org/
3•threemux•54m ago•0 comments

DAPO: An Open-Source RL System from ByteDance Seed and Tsinghua Air

https://github.com/BytedTsinghua-SIA/DAPO
3•the_arun•55m ago•0 comments

My AI Kept Pushing Me to Ship, So I Asked It Why

https://www.oreilly.com/radar/my-ai-kept-pushing-me-to-ship-so-i-asked-it-why/
2•Anon84•56m ago•0 comments

"Reds of the Brick-Colored Road"

https://theinterposer.substack.com/p/reds-of-the-brick-colored-road
2•headspreader•57m ago•0 comments

Navier-Stokes, AI, Future of Mathematics with Martin Hairer (2014 Fields Medal) [video]

https://www.youtube.com/watch?v=G8HMa_tgM34
1•amichail•58m ago•0 comments

The viewers ditching streaming 'rot' in favour of DVDs

https://www.rnz.co.nz/life/screens/movies/the-viewers-ditching-streaming-rot-in-favour-of-dvds
7•billybuckwheat•59m ago•0 comments

Where Rust actually is in Windows 11

https://hunterworks.software/teardowns/rust-in-windows-11
2•10000000001•1h ago•0 comments

Show HN: Lightspeed, build real time apps the Laravel way (with asteroids demo)

5•jv22222•1h 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.