frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

EU threatens Meta with fines over 'addictive' Facebook and Instagram

https://www.bbc.com/news/articles/c8j2dje3pldo
1•breve•50s ago•0 comments

Revenue is just an agreement between friends

https://www.larp.website/
1•bryanrasmussen•2m ago•0 comments

RFID Case Study: Uniqlo Global Stores Applied RFID Tags

https://huayuansh.com/uniqlo-global-stores-applied-rfid-tags/
1•thunderbong•8m ago•0 comments

Make Europe Cool Again

https://jacek.migdal.pl/2026/07/07/make-europe-cool-again
1•matesz•16m ago•0 comments

MCP-customs – NPM audit, but for MCP servers (offline, zero telemetry)

https://github.com/mcpcustoms/mcp-customs
1•mcpcustoms•20m ago•1 comments

High-performance Go to TypeScript transpiler

https://github.com/s4wave/goscript
1•aperturecjs•21m ago•0 comments

MCP server for Hyperliquid trading perps

https://github.com/Dakkshin/hyperliquid-mcp
1•Dakkshin•26m ago•0 comments

A CIRCT (Circuit IR Compilers and Tools) Project Tutorial

https://samuelcoward.co.uk/blog/2026/demo/
1•matt_d•28m ago•0 comments

9lives – Self-healing test runner that refuses to mask real bugs (

https://github.com/Quality-Max/9lives
1•ruslan_qm•29m ago•1 comments

Inside HackerRank's LLM-based Hiring Agent

https://blog.grandimam.com/posts/how-hacker-rank-scores-engineers/
1•grandimam•29m ago•0 comments

LazyCamHUD – daily video logs with a sci‑fi HUD, like in The Martian

https://github.com/hieuha/LazyCamHUD
1•hieuha•31m ago•0 comments

Learned helplessness at fifty: Insights from neuroscience

https://pubmed.ncbi.nlm.nih.gov/27337390/
2•JumpCrisscross•36m ago•0 comments

Rate Limiting for a Hosting Product

https://www.contentstack.com/blog/tech-talk/the-invisible-shield-how-contentstack-launch-protects...
3•sidcool•36m ago•0 comments

Ryanair passenger partially sucked out of window on flight from Greece

https://www.reuters.com/business/ryanair-plane-makes-emergency-landing-greece-after-window-dislod...
2•skibz•39m ago•0 comments

We Are Officially Beginning the Process to Convene Grand Juries over DOGE

https://cmarmitage.substack.com/p/we-are-officially-beginning-the-process
2•JumpCrisscross•42m ago•0 comments

Reflect Orbital: The Sunlight Company

https://www.reflectorbital.com
2•mparramon•42m ago•0 comments

Wall Street's booming $1T 'synthetic risk transfer' phenomenon

https://www.ft.com/content/d91d35fc-93ab-4963-8587-7a00fe5c63b4
1•JumpCrisscross•45m ago•0 comments

Competitive Programming in the Era of AI

https://www.vibhaas.net/posts/Competitive-Programming-in-the-era-of-AI/
1•m-novikov•48m ago•0 comments

GPT 5.6 Ultra better in Claude Code than in Codex?

https://twitter.com/theo/status/2075776733626892542
2•rstagi•51m ago•1 comments

8 Stages of AI engineering maturity: a framework for teams

https://upsun.com/blog/8-stages-ai-engineering-maturity/
1•cribwi•54m ago•0 comments

How AI is rewiring childhood

https://www.economist.com/leaders/2025/12/04/how-ai-is-rewiring-childhood
1•pretext•58m ago•0 comments

Weak hands and blurry vision: Is your tech giving you 'phone body'?

https://www.bbc.com/future/article/20260630-is-your-tech-giving-you-phone-body
2•breve•1h ago•0 comments

AlkaLean ReviEwS (2026): We Tried It My Honest Review

https://gamma.app/embed/AlkaLean-ReviEwS-2026-We-Tried-It-My-Honest-Review-xfitipfhzgxwhbd
1•wakyfarx•1h ago•0 comments

From Architecture to 3D Editor: My Shift from Design to Programming

https://alexsyniakov.com/2026/07/11/programs-not-objects-how-i-stopped-designing-architecture-and...
1•birdculture•1h ago•0 comments

Why is Starlink so big?

https://www.fool.com/investing/2026/06/29/spacex-secret-launch-subsidy-makes-starlink-profit/
2•sawyers•1h ago•4 comments

Sperm donors need limits, says a European fertility group

https://www.technologyreview.com/2026/07/10/1140289/sperm-donors-need-limits-says-a-european-fert...
1•joozio•1h ago•0 comments

Give it five minutes (2015)

https://medium.com/signal-v-noise/give-it-five-minutes-b8115d6f2361
2•tosh•1h ago•0 comments

Beating every possible game of Pokemon Platinum at the same time [video]

https://www.youtube.com/watch?v=jNMWkD5VsZ8
1•Imustaskforhelp•1h ago•0 comments

This Week in Plasma: Audio Recording in Spectacle

https://blogs.kde.org/2026/07/11/this-week-in-plasma-audio-recording-in-spectacle/
1•HieronymusBosch•1h ago•0 comments

The allergy culprit histamine also boosts our memory

https://www.newscientist.com/article/2533166-the-allergy-culprit-histamine-also-boosts-our-memory/
3•XzetaU8•1h 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.