frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Divide and Compact: Segment-Oriented Compaction in SlateDB

https://slatedb.io/blog/segment-oriented-compaction/
1•agavra•20s ago•0 comments

Worker shortage endangers US chip production plans

https://www.taipeitimes.com/News/biz/archives/2026/07/09/2003860430
1•craigjb•20s ago•0 comments

Postgres locks do not scale

https://www.recall.ai/blog/postgres-locks-do-not-scale
1•timetoogo•54s ago•0 comments

ANSI X9.150-2026 Payment QR – Merchant-Presented QR Codes for Secure Payment

https://webstore.ansi.org/standards/ascx9/ansix91502026
1•petethomas•1m ago•0 comments

GPT-5.6

https://openai.com/index/gpt-5-6/
10•logickkk1•1m ago•0 comments

Using GPT-5.6

https://developers.openai.com/api/docs/guides/latest-model
2•minimaxir•1m ago•0 comments

The Download: a nuclear landmark, and China eyes Nvidia chips

https://www.technologyreview.com/2026/07/09/1140283/the-download-nuclear-power-milestone-nvidia-c...
1•joozio•2m ago•0 comments

ChatGPT Work

https://openai.com/index/chatgpt-for-your-most-ambitious-work/
3•Tiberium•2m ago•0 comments

Cyclists Are Using a New Fueling Solution That Could Blow Endurance Racing Apart

https://velo.outsideonline.com/road/road-racing/tour-de-france/tour-de-france-riders-trial-secret...
1•haunter•2m ago•1 comments

GPT 5.6 System Card

https://deploymentsafety.openai.com/gpt-5-6
2•rvz•2m ago•0 comments

GeForce Trading Cards Series 1 [video]

https://www.youtube.com/watch?v=96PKNcmazcE
1•theNotFractured•2m ago•0 comments

Programming versus Writing with LLMs. Different Beasts

https://hexaray.com/blog/llm-programming-vs-writing
1•gatinsama•3m ago•0 comments

Gaming is better for you than Scrolling Social Media [video]

https://www.youtube.com/watch?v=VVnSHHxOHIA
1•carabiner•6m ago•0 comments

Show HN: Daily vibe-coding video games, day 87: Jungle Chess

https://gamevibe.us/87-jungle-chess
1•pzxc•6m ago•0 comments

Can banks skirt the Durbin Amendment by owning a debit network?

https://www.americanbanker.com/payments/news/can-banks-skirt-interchange-caps-by-owning-a-debit-n...
1•petethomas•7m ago•0 comments

Gradual Disempowerment: Systemic Existential Risks of Incremental AI Development

https://arxiv.org/abs/2501.16946
1•lioeters•7m ago•0 comments

What could data centres look like in 2055?

https://news.lenovo.com/lenovo-data-center-of-the-future/
2•mooreds•7m ago•0 comments

NEO's Hands – An API to the Physical World

https://www.1x.tech/discover/neos-hands
1•bpierre•8m ago•0 comments

Capable

https://hypercapable.vercel.app
1•ray__•10m ago•0 comments

How I use coding agents for reproducible DS/ML workflows

https://github.com/tkpratardan/lemma
1•tkpratardan•10m ago•0 comments

GhostApproval: A trust-boundary gap in AI coding assistants

https://www.wiz.io/blog/ghostapproval-a-trust-boundary-gap-in-ai-coding-assistants
1•logickkk1•10m ago•0 comments

Say hello to Claude Wrapped

https://www.theverge.com/ai-artificial-intelligence/963105/anthropic-claude-wrapped-reflection-ai...
2•Brajeshwar•13m ago•0 comments

A software defect in Telstra timekeeping servers took down emergency calls

https://www.theregister.com/networks/2026/07/08/telstra-outage-downs-000-calls-trains-payment-sys...
1•logickkk1•13m ago•0 comments

A Roadmap to Finding, Onboarding, and Training a Virtual Assistant

https://tavlinconsulting.gumroad.com/l/mental-load
1•mooreds•13m ago•0 comments

Parents' Phone Addiction Affects Bond with Kids, New Study Finds

https://www.bloomberg.com/news/articles/2026-07-08/parents-phone-addiction-affects-bond-with-kids...
1•bishopsmother•14m ago•0 comments

Multiple Double Arithmetic on Nvidia Tensor Cores

https://arxiv.org/abs/2607.06881
1•Jimmc414•15m ago•0 comments

AI Mistakes Can Cost Doctors Time When Writing to Patients

https://home.dartmouth.edu/news/2026/07/ai-mistakes-can-cost-doctors-time-when-writing-patients
2•cdrnsf•15m ago•0 comments

Formally Verifying AI-Generated GPU Kernels

https://gimletlabs.ai/blog/formally-verifying-ai-generated-kernels
1•nserrino•15m ago•0 comments

Puerto Rico Grid Recovery: Limited Progress Toward Stability

https://www.gao.gov/products/gao-26-107772
1•Jimmc414•15m ago•0 comments

Show HN: Zero2Robot – A free, from-scratch course on how robots learn

https://zero2robot.com/
1•kaushikbokka•15m 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.