frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tyranny of Optionality

https://hvpandya.com/tyranny-of-optionality
2•aray07•3m ago•0 comments

Apple's first foldable iPhone may cost $2k

https://finance.yahoo.com/markets/stocks/article/apples-first-foldable-iphone-may-cost-2000-11073...
2•evo_9•3m ago•0 comments

Russian Drones Forced Ukraine to Park Its M1 Abrams Tanks

https://www.twz.com/land/how-russian-drones-forced-ukraine-to-park-its-m1-abrams-tanks
2•cisc•8m ago•0 comments

America's Two Largest School Districts Impose AI Moratoriums

https://www.techpolicy.press/americas-two-largest-school-districts-impose-ai-moratoriums/
3•cdrnsf•12m ago•0 comments

Google AI turns on its maker in a brutally candid interview

https://newatlas.com/ai-humanoids/exclusive-google-ai/
2•cisc•17m ago•0 comments

Teaching Prevents Learning

https://mariusmanolachi.substack.com/p/why-teaching-can-prevent-learning
1•Marius_Manola•17m ago•0 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
3•chmaynard•18m ago•0 comments

The AI-Native SDLC Playbook

https://claude.com/blog/the-ai-native-sdlc-playbook
1•gmays•30m ago•0 comments

Afterword – a multiplayer remake of Word After Word

https://afterword.exe.xyz
1•indigodaddy•30m ago•1 comments

South African diamond mines are closing due to weak sales and lab-grown stones

https://www.wsj.com/business/diamond-mines-are-closing-and-south-africans-have-few-alternatives-f...
3•bookofjoe•39m ago•1 comments

Obscura: Native rendering is here. No Chromium required

https://github.com/h4ckf0r0day/obscura
3•partsch•40m ago•0 comments

Show HN: Virtual photoshoot for guys who dislike having their pic taken

https://vibeflirting.com/
2•Ritjert•41m ago•0 comments

Researchers Spot Fake Ancient Pottery Using the Earth's Magnetic Field

https://www.smithsonianmag.com/smart-news/researchers-determine-how-to-spot-fake-ancient-pottery-...
2•cisc•41m ago•0 comments

OpenRDX

https://github.com/SunboX/OpenRDX
3•SunboX•43m ago•0 comments

OpenAI Response to the Wiki Incident

https://twitter.com/OpenAI/status/2096133504417616165
3•theCricketer•46m ago•1 comments

Lazygit

https://lazygit.dev/
4•amirmasoudabdol•48m ago•0 comments

Show HN: Fast Cut Video tool for cutting video for Agents

https://github.com/modecir/fast-cutvid
4•Modecir•50m ago•1 comments

How AI is breaking the British state

https://www.economist.com/leaders/2026/08/06/how-ai-is-breaking-the-british-state
5•tchalla•50m ago•0 comments

Show HN: I replaced my portfolio with an AI that knows me

https://xlogic.sh/
2•AaronJonk•50m ago•0 comments

What different world maps get right – and what they get wrong

https://www.bbc.com/news/articles/cly5r60v4mro
2•1659447091•51m ago•0 comments

Read efficiency issues in Postgres queries

https://www.pgmustard.com/blog/read-efficiency-issues-in-postgres-queries
2•blueshoess•52m ago•0 comments

Show HN: Phntm-ONE: I built a local AI desk assistant

https://www.phntmcore.com/
2•phntmcore•52m ago•0 comments

Make Peace with Darwin

https://www.overcomingbias.com/p/make-peace-with-darwin
3•paulpauper•52m ago•0 comments

The Scaling versus Profitability Trade-Off: Venture Capital's Weakest Link

https://aswathdamodaran.substack.com/p/the-scaling-versus-profitability
2•paulpauper•56m ago•0 comments

Show HN: I made a seal Tamagotchi game in Three.js

https://seal-tamagotchi-zyrmx.reachpad.app
2•sakuraiben•57m ago•0 comments

Worldbuilding Gender

https://millicosm.substack.com/p/worldbuilding-gender
2•paulpauper•1h ago•0 comments

How to perform CPR and defibrillation training video (2020)

https://commons.wikimedia.org/wiki/File:Save_a_Life_Cymru_-_Training_video.webm
4•schnatterer•1h ago•1 comments

How do you filter noise from signal in programming resources?

2•taosx•1h ago•0 comments

PR review when everyone has LLMs

https://octet-stream.net/b/scb/2026-09-05-pr-review-when-everyone-has-llms.html
1•thombles•1h ago•0 comments

Show HN: Merge Wikipedia articles across languages into one page

https://github.com/gojiplus/wikifuse
1•neehao•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.