frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

BYD aims to overtake Toyota in five years without relying on the US market

https://carnewschina.com/2026/07/15/byd-aims-to-overtake-toyota-in-five-years-without-relying-on-...
1•awad•3m ago•0 comments

What Is China's Moonshot AI and Why Is It Roiling Markets?

https://www.bloomberg.com/news/articles/2026-07-17/what-is-moonshot-ai-why-china-s-new-model-is-r...
1•technewssss•4m ago•0 comments

Randomverse – A randomized, algorithm-free social network

https://randomverse-social.vercel.app
1•MohammedBokir•4m ago•0 comments

Show HN: Run Hermes Agent with Kimi 3 in a sandbox

1•oryx1729•7m ago•1 comments

Why the People Who Could Fix It Are the First to Leave

https://www.hackingleadership.com/p/why-the-people-who-could-fix-it-are-the-first-to-leave
1•backlit4034•9m ago•0 comments

Portents of Doom

https://blog.dshr.org/2026/07/portents-of-doom.html
1•FabHK•10m ago•0 comments

WTH is up with Network School?

https://sextechandmergers.blogspot.com/2026/07/wth-is-up-with-network-school.html
1•jerng•10m ago•1 comments

Mochizuki's ABC Conjecture proof is unformalizable

https://twitter.com/FumiharuKato/status/2078017230537892207
1•amichail•11m ago•1 comments

Kimi K3 may have distilled an unreleased Anthropic model

https://twitter.com/bourneliu66/status/2078150582054133991
3•seviu•12m ago•1 comments

Tell HN: Not everyone has internet as fast as yours

2•jedberg•13m ago•1 comments

Show HN: World map of 1418 modern robotics startups

https://roboticsregistry.net/map?access=3f6d290ae651f8e6e8263077fb24568aa95cbcac84dcbdff&lat=18.7...
1•make_it_sure•14m ago•0 comments

Better Call Sol the Workhorse

https://thezvi.wordpress.com/2026/07/13/better-call-sol-the-workhorse/
2•gmays•16m ago•0 comments

The instant database scratchpad: xata scratch

https://xata.io/blog/the-instant-database-scratchpad-xata-scratch
2•tudorg•17m ago•0 comments

xAI can't deny Grok makes CSAM anymore. So it's suing users

https://arstechnica.com/tech-policy/2026/07/xai-cant-deny-grok-makes-csam-anymore-so-its-suing-us...
2•pavel_lishin•17m ago•0 comments

JustOverlap – Scheduling with multiple guests and team availability

https://justoverlap.com/
2•bitvaulty•17m ago•0 comments

The housing theory of everything (2021)

https://worksinprogress.co/issue/the-housing-theory-of-everything/
1•mooreds•20m ago•0 comments

Help a Psychotherapist Brainstorm?

1•polymath88•20m ago•0 comments

China's data annotation industry shows how jobs evolve with tech advancement

https://www.globaltimes.cn/page/202606/1363363.shtml
1•pretext•20m ago•0 comments

America had a love affair with 'fixer-upper' homes. That may be over

https://www.cnn.com/2026/07/17/business/america-fixer-upper-homes
1•mooreds•20m ago•0 comments

ICE Flight Monitor Interactive Dashboard

https://www.humanrightsfirst.org/ice-flight-monitor-interactive-dashboard
2•mooreds•21m ago•0 comments

Homebrew and How the Apple Came to Be – Stephen Wozniak (1984)

https://www.atariarchives.org/deli/homebrew_and_how_the_apple.php
2•lioeters•21m ago•0 comments

Meta accused of using AI to pick employees with medical conditions for layoffs

https://www.latimes.com/business/story/2026-07-16/meta-accused-of-using-ai-to-pick-employees-with...
3•speckx•23m ago•1 comments

Review the actual change, not the file list

https://packagemain.tech/p/review-the-actual-change-not-the
1•der_gopher•23m ago•0 comments

Help a Psychotherapist Brainstorm

https://www.actualizebeing.com
1•polymath88•26m ago•0 comments

Victory Flock Ends Rollout of Audio "Distress Detection" of Human Voices

https://www.eff.org/deeplinks/2026/07/victory-flock-ends-rollout-audio-distress-detection-human-v...
1•speckx•26m ago•0 comments

Order and Chaos (256 Shades or Dirtiness)

https://replicated.live/blog/status
1•gritzko•29m ago•0 comments

Researchers shed new light on ancient concrete's extraordinary durability

https://engineering.berkeley.edu/news/2026/07/researchers-shed-new-light-on-ancient-concretes-ext...
2•speckx•29m ago•0 comments

Show HN: Docket (system for active note-taking) now self-hosted after HN asked

https://withdocket.com/self-hosted
2•davnicwil•29m ago•1 comments

Inkling is now the highest-scoring open-weight model on both ARC-AGI 1 and 2

https://twitter.com/arcprize/status/2078141332938523032
1•thebricklayr•30m ago•1 comments

Oxford Physicist Says an Antigravity Machine May Be Possible

https://www.popularmechanics.com/science/a71631348/quantum-gravity-antigravity-experiment/
1•mpweiher•33m 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.