frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo

https://guides.visual-paradigm.com/mastering-graphviz-layout-engines-dot-neato-twopi-circo/
1•vismit2000•3m ago•0 comments

Linux from Scratch

https://www.linuxfromscratch.org/
1•sippingabonedry•6m ago•0 comments

A Faster Approach to Ethereum Wallet Activity Patterns and Transaction Summaries

https://chainledgerai.io/blog/beyond-bigquery-a-faster-approach-to-ethereum-wallet-activity-patte...
1•oculix-official•8m ago•0 comments

Streamlining Your Strategy: The Power of Automated Real Estate Descriptions

https://propdescai.io/blog/streamlining-your-strategy-the-power-of-automated-real-estate-descript...
1•oculix-official•10m ago•0 comments

Archkeel – coding agents declare architecture changes before they submit

https://github.com/rapiddweller/archkeel
1•ake2l•10m ago•0 comments

The Three Lives of Clausewitz: How Anglo-American Strategists Remade "On War"

https://smallwarsjournal.com/2026/07/21/three-lives-of-clausewitz-on-war/
1•bryanrasmussen•11m ago•1 comments

The Butlerian Secession

https://the-human-alliance.org/
1•tcorcos•12m ago•0 comments

Shuffling Is Not Enough: Breaking Permutation-Based Model Confidentiality

https://arxiv.org/abs/2609.12911
1•sbulaev•14m ago•0 comments

We Automate KiCad PCB Routing

https://autocuro.com/blog/how-we-automate-kicad-pcb-routing
1•teleforce•15m ago•0 comments

KiCad Routing Tools

https://github.com/drandyhaas/KiCadRoutingTools
1•teleforce•15m ago•0 comments

See how well you know the sizes of things

https://playdaily.org/size-it-up
4•Hemmaamlin•17m ago•0 comments

How to Build a Practical Household Bike Generator

https://solar.lowtechmagazine.com/2022/03/how-to-build-a-practical-household-bike-generator/
1•fosco•17m ago•1 comments

Superhuman acquires YC-backed notetaker Fathom

https://techcrunch.com/2026/09/14/superhuman-acquires-yc-backed-notetaker-fathom-as-productivity-...
1•doppp•25m ago•0 comments

Ask HN: How to Protect Your Brand Before AI Copies It?

1•soltanov•25m ago•0 comments

Europe must build own AI, says ECB's Lagarde

https://www.theguardian.com/technology/2026/sep/14/europe-ai-datacentres-growth-us-china-ecb-chri...
1•FearNotDaniel•26m ago•2 comments

Let Go of the Wheel – Claude Our Lord

https://claudeourlord.com/
1•yippee0000•26m ago•0 comments

Confessions of an Unrepentant Slop Snob

https://charity.wtf/p/confessions-of-an-unrepentant-slop
1•backlit4034•27m ago•0 comments

Rethinking skills and prompts for GPT-6 Astra

https://developers.openai.com/blog/rethinking-skills-and-prompts-for-gpt-6-astra
1•soltanov•27m ago•0 comments

Clonaid (2002)

https://en.wikipedia.org/wiki/Clonaid
1•zeckalpha•28m ago•0 comments

KelvinAI

https://kelvinai.ai/
1•lzyuan1006•32m ago•0 comments

Discrete Beckmann Transport Models for One-Step Language Modeling and Reasoning

https://arxiv.org/abs/2609.15903
1•E-Reverance•32m ago•0 comments

Oil Executives Say the Great Fuel Crisis Is Here

https://www.wsj.com/business/energy-oil/oil-executives-say-the-great-fuel-crisis-is-here-b6b32030
18•toomuchtodo•32m ago•11 comments

Bounded Ratios for Lorentzian Polynomials

https://arxiv.org/abs/2609.05341
2•soltanov•33m ago•1 comments

US confirms for first time it has deployed space weapons

https://www.bbc.com/news/articles/ck790xg41ygro
3•harporoeder•33m ago•0 comments

China hit back at Anthropic CEO's call to curb China's AI development

https://www.youtube.com/watch?v=BIM5G5kFYAg
2•LebToki•33m ago•0 comments

Researchers find Apple Pay, Visa contactless hack

https://www.bbc.com/news/technology-58719891
2•harambae•36m ago•0 comments

The Zuiderzee Project

https://lorentz.leidenuniv.nl/history/zuiderzee/zuiderzee.html
1•nill0•38m ago•0 comments

Crof.ai Was Caught Misrepresenting Models, Shut Down

https://reddit.com/r/SillyTavernAI/comments/1wgkagq/crofai_model_provider_just_shut_down_fraudule...
2•monksy•39m ago•0 comments

Crumb Advanced Circuit Simulator

https://store.steampowered.com/news/app/2198800/view/680761125088789335
1•starkparker•39m ago•0 comments

Why the best AI startups write bad prompts (& how to fix this)

https://twitter.com/wulfie_bain_/status/2098060386813566990
1•gmays•39m 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.