frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

LeanHTTP: HTTP Client for Lean 4

https://github.com/theoriclabs/leanhttp
2•hargup•1m ago•0 comments

EU moves to curb energy and water for data centres

https://www.euronews.com/my-europe/2026/09/21/eu-moves-to-curb-energy-and-water-for-data-centres
4•billybuckwheat•2m ago•0 comments

An Introduction to Compression-Based Machine Learning

https://arxiv.org/abs/2609.21309
2•jackhurwitz•2m ago•0 comments

Google confirms Gemini models hacked three companies in May 2026

https://arstechnica.com/google/2026/09/google-confirms-gemini-models-hacked-three-companies-in-ma...
2•sbulaev•4m ago•0 comments

Heckle: Converting Git forges into Terraform/OpenTofu

https://heckle.tf
2•_mig5•4m ago•1 comments

Socrates vs. the Written Word (2011)

https://wondermark.com/socrates-vs-writing/
2•spectraldrift•4m ago•0 comments

Show HN: Jev Powered Obsidian Search

https://github.com/Emlembow/jev-graph-search
2•MikeLembo•5m ago•0 comments

Open Animal Stage – mapped animal brains play a strategy game together

https://pr1nted.itch.io/open-animal-stage
1•Pr1nted•6m ago•0 comments

A skills library for every agent

https://www.notion.com/blog/a-skills-library-for-every-agent
1•gmays•6m ago•0 comments

Schelling Points and the Secret Society of Agents

https://jdsemrau.substack.com/p/ai-agents-schelling-point-dsewiki
1•ph4rsikal•6m ago•0 comments

JevOps Engineer

https://www.valency.io/jevops/
1•curtis-jm•8m ago•0 comments

The Softness of Metal

https://psyche.co/turning-points/his-frailty-made-ozzys-final-gig-true-heavy-metal
1•NaOH•12m ago•0 comments

Millions Spent, Few Served: Talkspace Deal for Youth Therapy Falls Short

https://www.proofnews.org/millions-spent-few-served-seattles-talkspace-deal-for-youth-therapy-fal...
2•DeepLogin•13m ago•0 comments

Making s1-model 'Judgements' a RubyLang primitive feature

https://github.com/innocentdiaz/s1_ruby
1•idz•14m ago•0 comments

Two Hard Things (2009)

https://martinfowler.com/bliki/TwoHardThings.html
2•adriand•16m ago•0 comments

7 out of 9 Planetary Boundaries are breached

https://www.planetaryhealthcheck.org/
5•geox•17m ago•1 comments

Muse sent me 6.8gb of its filesystem. Here's what I found

https://twitter.com/heypeterjames/status/2102183574384300356
2•Aeroi•19m ago•0 comments

AI provides the logic; the compiler makes it real – with zero hallucinations

https://github.com/SPLWare/SQLazy
2•Judyrabbit•20m ago•1 comments

CO3: Toward the Optimal FFI

https://mversic.github.io/co3/
1•manyatoms•27m ago•0 comments

Two Strangers, One Machine: A security model for a CDN on residential hardware

https://blog.evolvingedge.ai/post/how-little-do-you-have-to-trust-us-white-paper-launch/
1•gadgetboy•29m ago•0 comments

Nvidia chip-use emissions match that of a Russian state coal producer: report

https://www.euronews.com/next/2026/09/21/nvidia-chip-use-emissions-match-that-of-a-russian-state-...
4•devonnull•30m ago•0 comments

Xiaomi MiMo Desktop

https://mimo-ai.xiaomimimo.com/desktop/
1•gainsurier•30m ago•0 comments

Xaml.io v0.9: Build .NET Apps from a Prompt, in the Browser

https://blog.xaml.io/post/build-dotnet-apps-from-a-prompt
1•vasbu•31m ago•1 comments

Show HN: Context Tetris clear rows to bank the useful context Keep the noise out

https://vstorm-co.github.io/agenticos/arcade/context.html
1•outageroom•33m ago•0 comments

There May Be Nobody There

https://yusufaytas.com/there-may-be-nobody-there
1•bastrich•35m ago•0 comments

Arce: Design studio for furniture makers and interior designers

https://arce.design/
2•ivanenkoy•40m ago•1 comments

Delta: Highly available, strongly consistent storage using chain replication (2022)

https://engineering.fb.com/2022/05/04/data-infrastructure/delta/
1•grep_it•41m ago•0 comments

So, is AI going to kill us? 11 experts, 11 answers

https://sfstandard.com/2026/09/21/experts-ai-doom/
1•ghuntley•42m ago•0 comments

Motor Characterization for Small Running Robots (2016)

https://robot-daycare.com/posts/2016-01-06-motor-characterization-for-small-running-robots/
1•loughnane•43m ago•0 comments

I Redefined Partnership Terms to End the Sick Romanticization of Co-Founders

https://medium.com/startup-shop/in-lieu-of-technical-co-founder-i-redefined-better-partnership-te...
1•joeyomaita•46m ago•3 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.