frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Git Push No-Mistakes

https://github.com/kunchenguid/no-mistakes
1•grajmanu•22s ago•0 comments

Digital Donkeys: An Allegory for the Algorithmic Feed

https://om.co/2026/05/25/we-are-living-in-pinocchios-world/
1•merqurio•2m ago•0 comments

Om Malik, Whose Blog Shaped How Silicon Valley Saw Itself, Dies at 59

https://www.nytimes.com/2026/06/26/technology/om-malik-dead.html
3•philip1209•7m ago•0 comments

Selfhost.directory – a directory of self-hostable projects with live updates

https://selfhost.directory/
1•internetak•8m ago•1 comments

The Copy and the Guru

https://om.co/2026/05/26/the-copy-and-the-guru/
2•tosh•15m ago•0 comments

The text/Markdown Media Type

https://datatracker.ietf.org/doc/html/rfc7763
1•foxfired•16m ago•0 comments

They quit the West for Russia's traditional values, but it wasn't as expected

https://www.bbc.co.uk/news/articles/cn075j04pnyo
3•mellosouls•19m ago•1 comments

The Cost Yagni Was Never About

https://newsletter.kentbeck.com/p/the-cost-yagni-was-never-about
1•mpweiher•20m ago•0 comments

RelayMatch

https://relaymatch.pro
1•nikitafaesch•20m ago•0 comments

Apple's Vision Pro and Smart Glasses Chief to Join OpenAI

https://www.bloomberg.com/news/articles/2026-06-26/apple-s-vision-pro-and-smart-glasses-chief-pau...
4•aurenvale•21m ago•0 comments

IBM has unveiled chip technology that could help extend Moore's Law another dec

https://www.technologyreview.com/2026/06/25/1139696/ibm-unveils-sub1nm-chip/
2•joozio•27m ago•0 comments

Corgi makes things worse, claims Postmark is overcharging (despite being Free)

https://twitter.com/SergioGarc20223/status/2070629753506476376
2•mmunj•30m ago•0 comments

Reversing Ukraine's Population Loss After Four Years of War

https://www.thinkglobalhealth.org/article/reversing-ukraines-population-loss-after-four-years-of-war
1•littlexsparkee•30m ago•0 comments

Show HN: Hikaru Labs – image tools that run directly on your device

https://hikarulabs.xyz
2•CFBL•38m ago•0 comments

Show HN: Statemently – Bank statement PDFs to Excel/CSV, totals verified

https://statemently.io
1•pro_methe5•40m ago•0 comments

A small plane crashed into Beijing's tallest building

https://www.bbc.com/news/videos/c8j2rjrzjero
4•linzhangrun•41m ago•0 comments

Ask HN: How do founders get early beta testers?

2•KNihalani•43m ago•1 comments

Searching for a [72,36,16] extremal code

https://valbert4.github.io/selfdual_site/
1•EvgeniyZh•44m ago•0 comments

Were the blitzed areas of London still being cleared out in the 80s even later?

https://www.quora.com/Were-the-blitzed-areas-of-London-still-being-cleared-out-in-the-70s-80s-eve...
2•zeristor•47m ago•0 comments

API errors may be worse for retention than crashes

https://rejourney.co/engineering/2026-05-18/ambiguity-kills-app-growth
2•mrr7337•48m ago•0 comments

The BBC switches off its oldest service

https://www.economist.com/britain/2026/06/25/the-bbc-switches-off-its-oldest-service
3•austinallegro•51m ago•0 comments

Should you join the Antler startup incubator program? It depends (2025)

https://developerwithacat.com/blog/062025/join-antler-startup/
2•mmarian•53m ago•1 comments

Why web browsers don't support Markdown

https://unstory.eu/qaa/
1•skeledrew•57m ago•0 comments

There's Been a Subtle Shift in the AI Zeitgeist

https://www.bloomberg.com/news/newsletters/2026-06-26/there-s-been-a-subtle-shift-in-the-ai-zeitg...
2•Alien1Being•58m ago•0 comments

Tug: An IDE for AI Coding

https://github.com/tugtool/tugtool
1•azhenley•58m ago•1 comments

Why SpaceX Is the McDonald's of AI

https://www.computerworld.com/article/4189645/why-spacex-is-the-mcdonalds-of-ai.html
2•mikelgan•59m ago•1 comments

End of an era as BBC Long Wave closes down

https://www.mayonews.ie/news/end-of-an-era-as-bbc-long-wave-closes-down-8759031
2•austinallegro•1h ago•0 comments

Is America Becoming a Gerontocracy?

https://www.economist.com/culture/2026/06/25/is-america-becoming-a-gerontocracy
4•littlexsparkee•1h ago•0 comments

The Stag Hunt

https://nonzerosum.games/staghunt.html
1•mrcgnc•1h ago•0 comments

After 100 years of BBC LW, last ever R4 Shipping Forecast and final close down [video]

https://www.youtube.com/watch?v=ozZKZWMRMPU
1•austinallegro•1h 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.