frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Uptime – A hard tech thriller grounded in real system engineering

https://mybook.to/uptime
1•fiberfault•24s ago•0 comments

Show HN: Wayfinder – A reference implementation for evaluating AI applications

https://github.com/DivakarUngatla/wayfinder
1•divakarungatla•1m ago•0 comments

Turn any X post into a vertical video

https://reyoy.com/
1•dylan_builds•2m ago•0 comments

Blink – E-commerce platform where you shop through video reels

https://reel-shop--bhaasmmm1234.replit.app
2•Bahaa_BLINK•3m ago•0 comments

I Changed My License

https://bergie.iki.fi/blog/eupl/
7•jllyhill•7m ago•1 comments

Runtipi: Homeserver Management Made Easy

https://runtipi.io/
1•routeroff•8m ago•0 comments

Photosystem II Complex: Nature's Most Brutal 'Battery' (Superoxidizing Force)

https://www.reddit.com/r/genomics/s/tYM0yMUWea
1•kisnorbert•8m ago•1 comments

Building a new programming language – looking for contributors

https://github.com/LuxUmbris/Shaft/tree/bootstrap
1•GenericPointer•12m ago•1 comments

Relax about Neural Space

https://nonlineartransform.substack.com/p/relax-about-neural-space
1•program_whiz•13m ago•1 comments

Glide Menu: A one-handed gesture for mobile apps

https://www.nicksmind.com/articles/glide-menu
1•rocoders•16m ago•0 comments

The Slopconomy and Its Alternatives

https://farsight.cifs.dk/the-slopconomy-and-its-alternatives/
1•jruohonen•19m ago•0 comments

Projecting application state as a filesystem with FUSE

https://newsletter.cloudsquid.io/p/agents-need-their-own-ui
1•shatoboar•20m ago•0 comments

Whose Intelliegence is more Artificial?

https://desnitch.substack.com/p/whose-intelligence-is-more-artificial
1•desnitch•25m ago•0 comments

M2: Episode 1 (Or, Asahi Linux on M3)

https://asahilinux.org/2026/09/m2-episode-1/
2•notenlish•26m ago•0 comments

Nvidia is the central bank of AI

https://www.economist.com/interactive/briefing/2026/09/03/nvidia-is-the-central-bank-of-ai
2•__natty__•26m ago•0 comments

The Elephant in the Brownfield

https://www.subbu.org/essays/2026/the-elephant-in-the-brownfield/
1•kiyanwang•27m ago•0 comments

Rogue iOS developer creates app that simulates messages sent by carrier pigeon

https://www.tomshardware.com/software/applications/rogue-ios-developer-creates-app-that-simulates...
2•vismit2000•29m ago•0 comments

The Harness, the Horse, or the Hay – By Brett Queener

https://queener.substack.com/p/the-harness-the-horse-or-the-hay
1•kiyanwang•29m ago•0 comments

Find Your Next Book by Mood

https://bookdialogues.com/findbook
1•jasmeet0817•29m ago•2 comments

Onionspector – now let's see what The Onion knows about you

https://0ut3r.space/2026/09/06/onionspector/
1•h0ek•32m ago•0 comments

Opus (Audio Format)

https://en.wikipedia.org/wiki/Opus_(audio_format)
2•tosh•33m ago•0 comments

SeekMoon: From IDE to ADE

https://www.moonbitlang.com/blog/seekmoon-from-ide-to-ade
1•syumei•34m ago•0 comments

Podcast: We Spoke to an Amazon Worker Destroying Books for AI

https://www.404media.co/email/ed687963-910c-488c-95d5-b06f911b214e/
2•r_singh•35m ago•0 comments

Volcanic ash cloud halts flights at five Indonesian airports

https://www.theguardian.com/world/2026/sep/06/volcanic-ash-cloud-halts-flights-at-indonesias-main...
1•tosh•35m ago•0 comments

YouSpeed – Live speed-limit assistance

https://peertube.openstreetmap.fr/w/44a9cKesgtzu1Jo3FLS5gD
1•altilunium•41m ago•0 comments

Meet Claude: ABC's new regional cadet journalist

https://independentaustralia.net/business/business-display/meet-claude-abcs-new-regional-cadet-jo...
2•frays•43m ago•0 comments

Matmul as a Service, Backed by Tinygrad

https://simpleobservability.com/blog/introducing-maas
1•khazit•44m ago•0 comments

About Arks

https://arks.org/about/
1•Bluestein•49m ago•0 comments

State of the Map 2026 Video Channel

https://peertube.openstreetmap.fr/c/sotm_2026/videos
1•altilunium•49m ago•0 comments

McDonald's India: Intern Hacks Company's X Account over Unpaid Salary

https://www.freepressjournal.in/viral/macdonalds-india-controversy-intern-allegedly-hacks-company...
3•rustoo•49m ago•1 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.