frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•seaneben•24s ago

Trump's war on Iran is rapidly draining US Navy budget, documents reveal

https://www.theguardian.com/us-news/2026/aug/27/trump-iran-war-navy-budget
1•mindracer•32s ago•0 comments

Unix V4 Workshop at Low Resource Computing

https://github.com/thaliaarchi/unix-v4-demo/blob/main/README.md
1•pieterk•1m ago•0 comments

Investigation of agents in OpenAI / Hugging Face hacking incident

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/
1•giardini•2m ago•0 comments

Flock Claims It's the First Company to Expose Police Misuse of Surveillance Tech

https://www.techdirt.com/2026/08/27/flock-claims-its-the-first-company-to-expose-police-misuse-of...
1•speckx•2m ago•0 comments

Show HN: Yet another minimal and lightweight terminal multiplexer

https://github.com/patriceckhart/hrdx
6•patriceckhart•5m ago•0 comments

Maintaining an organizational knowledge graph with an LLM and event sourcing

https://blog.arkency.com/maintaining-an-organizational-knowledge-graph-with-an-llm-and-event-sour...
1•dotRex•7m ago•0 comments

How much of a problem is AI's water use?

https://arstechnica.com/ai/2026/08/how-much-of-a-problem-is-ais-water-use/
3•furcyd•8m ago•0 comments

The Sync Heap: delete first, ask questions later

https://arxiv.org/abs/2608.07134
1•fanf2•8m ago•0 comments

AROS, the FOSS Recreation of AmigaOS, Comes to Raspberry Pi

https://www.theregister.com/os-platforms/2026/08/27/aros-the-foss-recreation-of-amigaos-comes-to-...
1•rbanffy•9m ago•0 comments

Reverse Engineering My ADHD Test

https://nullpt.rs/reverse-engineering-adhd-test?
2•nullpt_rs•9m ago•0 comments

Durable Objects without Cloudflare, on the database you run

https://lucascarlson.net/2026/08/24/introducing-open-source-durable-objects/
1•speckx•9m ago•0 comments

What we should make of CIA boss's trip to Moscow

https://www.bbc.com/news/articles/cx2z8l8xdg2o
2•onemoresoop•10m ago•0 comments

Trump signs order to rename Lake Ontario as 'Lake America'

https://www.cbc.ca/news/world/trump-lake-ontario-america-9.7322947
4•bhouston•11m ago•2 comments

Years of Salt and Metal – The crash of Hop-a-Jet flight 823

https://admiralcloudberg.medium.com/years-of-salt-and-metal-the-crash-of-hop-a-jet-flight-823-665...
1•cwal37•13m ago•0 comments

Ask HN: AI agent acts. Your logs say so. But you wrote the logs

3•Yahyaaa•14m ago•2 comments

Show HN: A private radio station for issue updates across your org

https://github.com/statemediafm/statemediafmradio
1•private4e584d•14m ago•0 comments

Show HN: Dropping SynthID from 188/192 to 0/192 without changing visible text

https://mark.q1z.org
4•byte1•17m ago•0 comments

Two German airport workers die of malaria after 'mosquito arrives on plane'

https://www.bbc.com/news/articles/cz6zwgg9y8go
19•vinni2•17m ago•3 comments

Everyday household tasks impact relationships

https://news.uq.edu.au/2026-08-how-everyday-household-tasks-impact-relationships
4•downbad_•17m ago•0 comments

AMD Jumps from ROCm 7.14 to ROCm 10.0 with Rocm.ai

https://www.phoronix.com/news/AMD-ROCm-10.0
2•Alephinitesimal•18m ago•0 comments

Shelf

https://greenlightning.eu/diy/shelf/
2•greenlightning•18m ago•0 comments

Gemma 4 E2B inference in 700 lines of C

https://github.com/ryanssenn/gemma4.c
3•ryansen•20m ago•0 comments

Claude, Codex, and Hermes installed unowned code inside corporate networks

https://arstechnica.com/security/2026/08/claude-codex-and-hermes-installed-unowned-code-inside-co...
2•toomuchtodo•20m ago•0 comments

My friends take turns picking movies. I turned the spreadsheet into a website

https://jesse.id/blog/my-friends-and-i-take-turns-picking-movies-to-watch-i-converted-our-crappy-...
2•nickgray•20m ago•1 comments

Swarm of 700 AI bots went rogue in hacking attack

https://www.telegraph.co.uk/business/2026/08/27/swarm-of-700-ai-bots-went-rogue-in-hacking-attack/
2•giardini•20m ago•0 comments

Project Switch: Agents and humans work side-by-side

https://github.com/sandbox-quantum/switch
1•yuedongze•21m ago•0 comments

Tell HN: Man, AI is killing my brain

12•fnoef•22m ago•9 comments

US Government is identifying decentralized media infrastructure as a threat

https://social.coop/@cwebber/117168139124641297
5•hn_acker•23m ago•1 comments

High p-tau217 led to a 38% chance of cognitive decline

https://www.empirical.health/blog/ptau217-alzheimers-risk/
2•brandonb•23m 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.