frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PON-Beam: Notification-Oriented Beam Erlang VM

https://github.com/matheuscamarques/pon_beam
2•wut42•1m ago•0 comments

Ask HN: Do people with authism have emotions?

1•soltanov•3m ago•0 comments

Harry Potter almost derailed a major UK interconnector project

https://www.rechargenews.com/grid/how-harry-potter-almost-derailed-a-major-uk-interconnector-proj...
1•riffraff•4m ago•0 comments

Show HN: Memcode AI goes open source with Claude Code inspired coding agent

https://github.com/memcode-ai/memcode
2•timerwin•7m ago•0 comments

Hello

1•pranavgawas-pro•14m ago•0 comments

Act like it is science

https://marginalrevolution.com/marginalrevolution/2026/08/act-like-it-is-science.html
1•thedreammachine•19m ago•0 comments

md-whispr

https://twitter.com/stanlalanne/status/2086675864276566196
1•sharpshootersl•22m ago•1 comments

AI Coding Clients Are Reading Each Other's Personal Instructions

https://runtimewire.com/article/ai-coding-clients-are-reading-each-other-s-personal-instructions
1•ryanmerket•24m ago•0 comments

Copy-paste email templates for chasing overdue invoices

https://invoice-email-template.surge.sh/
1•lmv_builds•30m ago•0 comments

Take-home assessments to be banned in school AI overhaul

https://www.smh.com.au/national/nsw/take-home-assessments-to-be-banned-in-radical-hsc-overhaul-20...
1•Alien1Being•30m ago•0 comments

HCCL: Collective Communication for Meta Training and Inference Accelerators

https://arxiv.org/abs/2608.00358
1•matt_d•30m ago•0 comments

Migrate from GitHub Container Registry (GHCR) to Vercel Container Registry (VCR)

https://vercel.com/kb/guide/migrate-ghcr-to-vcr
1•flashbrew•31m ago•0 comments

Docker Compose concepts map to Vercel

https://vercel.com/kb/guide/docker-compose-concepts-on-vercel
1•flashbrew•31m ago•0 comments

Training neural nets on Apple Neural Engine via reverse-engineered private APIs

https://github.com/maderix/ANE
1•dyzone•36m ago•0 comments

Show HN: Blueferry, iMessage on Linux

https://github.com/erikwb/blueferry
2•erikwb•37m ago•0 comments

The Philippines' big offshoring industry is growing despite AI

https://www.economist.com/asia/2026/08/06/the-philippines-big-offshoring-industry-is-growing-desp...
3•nlpnerd•38m ago•1 comments

A second-hand bookstore's mysterious orders

https://www.rnz.co.nz/life/books/wellington-second-hand-book-store-s-mysterious-orders
2•tigerlily•40m ago•0 comments

The Rise of the Unstoppable American Tourist

https://www.wsj.com/economy/the-rise-of-the-unstoppable-american-tourist-485f025b
1•thm•43m ago•0 comments

How do programming languages impact token efficiency and correctness?

https://danluu.com/pl-tokens/
1•matt_d•46m ago•0 comments

As AI grips world, the thrill of collecting vintage computers is growing

https://apnews.com/article/vintage-computers-silicon-valley-technology-apple-history-43d28a08d77c...
2•geox•51m ago•0 comments

Ask HN: TS Compiler

3•apple_george•55m ago•0 comments

Trellis – A Workspace Management Tool for Multi-Package Gleam Projects

https://github.com/tylerbutler/trellis
3•TheWiggles•57m ago•0 comments

Spy cameras on Navy drones sent data to China

https://www.telegraph.co.uk/news/2026/08/09/spy-cameras-on-navy-drones-secretly-sent-data-to-chin...
5•NewCzech•1h ago•0 comments

New AI models still reproduce racial and gender stereotypes in medicine

https://news.flinders.edu.au/blog/2026/08/09/new-ai-models-still-reproduce-racial-and-gender-ster...
4•giuliomagnifico•1h ago•1 comments

Harry Potter fans force diversion of power link to avoid 'Dobby's grave'

https://www.bbc.com/news/articles/cy8mgpl27dpo
2•pibaker•1h ago•0 comments

Ask HN: Is this normal HN ranking?

2•unclebucknasty•1h ago•1 comments

Long-Run Effects of H-1B Immigration on the U.S. Economy (July 2026)

https://www.nber.org/papers/w35560
29•ryzvonusef•1h ago•5 comments

Daily global sea surface temperatures break records for the time of year

https://climate.copernicus.eu/copernicus-marine-and-copernicus-climate-change-daily-global-sea-su...
5•jacquesm•1h ago•0 comments

Horolog – a self-hosted, open-source alternative to Reclaim.ai

https://github.com/ujjwalredd/horolog
2•ujjwalreddyks•1h ago•0 comments

Auto mode is now the default in Claude Code

https://claude.com/blog/auto-mode-default-in-claude-code
53•sbehere•1h ago•10 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.