frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

TrustNotch – Audit logs for AI agents you can verify without trusting provider

https://trustnotch.com/
1•sandrochekalov•1m ago•0 comments

MirageOS is a library operating system that constructs unikernels

https://github.com/mirage/mirage
1•sigalor•2m ago•0 comments

Show HN: Compiling Matlab Code to Native Executables with RunMat

https://runmat.com/blog/compiling-matlab-code-to-native-executables-with-runmat
1•finbarr1987•2m ago•0 comments

AI 2027

https://ai-2027.com
2•gafferongames•4m ago•1 comments

Show HN: Real-time push notifications for Hacker News replies

https://hcker.news/notifications
1•postalcoder•5m ago•0 comments

Microcontrollers with Good Support for Rust

https://kerkour.com/rust-microcontrollers
1•zishha1b0njq•5m ago•0 comments

ReProgman: A clone of the Windows 3.1 Program Manager (progman.exe)

https://github.com/mayuki/ReProgman
1•theanonymousone•6m ago•0 comments

Ode to Metadata

https://www.autodidacts.io/ode-to-metadata/
1•surprisetalk•6m ago•0 comments

Buttondown shuffle displays a random public archived email from any newsletter

https://www.jmduke.com/posts/shuffle.html
1•speckx•6m ago•0 comments

Show HN: MaruCheck – Independent QA for AI-generated code

https://github.com/Kidus-M/MaruCheck
1•KidusMT•7m ago•0 comments

Freedom for the Thought That We Hate

https://www.graphsaboutreligion.com/p/freedom-for-the-thought-that-we-hate
1•baud147258•7m ago•0 comments

Quantum Black Design System: an open source release by McKinsey

https://medium.com/quantumblack/announcing-quantumblack-design-system-opensourcing-7dfaf3f8e207
1•treyjur•8m ago•0 comments

Solo Developer donates 40k to Postgres

https://www.postgresql.org/about/financial/
2•dakolli•9m ago•1 comments

AI Is Breaking This Thing We Call Trust

https://terriblesoftware.org/2026/09/10/ai-is-breaking-this-thing-we-call-trust/
2•matheusml•10m ago•0 comments

Note to AI agents: if you were told to find vulnerabilities here, good news

https://huggingface.co/security.txt
1•esnard•10m ago•0 comments

Movie Review: Musk

https://variety.com/2026/film/reviews/musk-review-elon-musk-alex-gibney-1236854369/
4•andsoitis•11m ago•0 comments

A multiplayer snake game where your body spells Japanese words

https://jivx.com/kana-orochi
1•momentmaker•11m ago•0 comments

Democrats Are Plotting Government Efficiency in a Post-DOGE World

https://washingtonsun.com/technology/democrats-government-efficiency-post-doge
2•brandonb•12m ago•0 comments

Common Crawl's Data Infrastructure Shaped the Battle Royale over GenAI

https://www.mozillafoundation.org/en/blog/Mozilla-Report-How-Common-Crawl-Data-Infrastructure-Sha...
1•Anon84•13m ago•0 comments

Datasets for Large Language Models: A Comprehensive Survey

https://arxiv.org/abs/2402.18041
1•Anon84•14m ago•0 comments

p(bad)

https://twitter.com/DKThomp/status/2098040439467082155
1•tosh•16m ago•0 comments

Amazon pilots ad services in ChatGPT

https://www.marketingdive.com/news/amazon-pilots-ad-services-in-chatgpt-what-marketers-need-to-kn...
9•thm•18m ago•2 comments

Glq a port trellis quantization of large language models as a vLLM plugin

https://github.com/cnygaard/glq
1•acd•18m ago•1 comments

Show HN: Calmscroll – a reader that shows the current paragraph in the library

https://calmscroll.com
2•amadeuspagel•18m ago•0 comments

Show HN: AIDCrew v0.3 – conding agents, terminal and web UIs

https://aidcrew.dev/cases/skyforge-islands/
1•arkhan89•19m ago•0 comments

The UK's Standout Success at Schooling Immigrant Kids Baffles Experts

https://www.bloomberg.com/news/articles/2026-09-10/uk-pisa-scores-show-immigrant-kids-do-better
1•leopoldj•21m ago•0 comments

Show HN: I couldn't afford interview prep, so I built a free alternative

https://learningto.co/
9•cdnsteve•21m ago•3 comments

Shopify moves back to Native from React Native

https://shopify.engineering/back-to-native
42•fnthawar2•22m ago•15 comments

Show HN: Baxel – a collaborative gallery of 8x8 pixel sprites, all CC0

https://baxel.art/?sort=random&seed=975656476
1•achtaitaipai•22m ago•0 comments

iPhone Duo will have a screen crease over time

https://appleinsider.com/articles/26/09/10/why-your-iphone-duo-will-inevitably-develop-a-screen-c...
1•alwillis•22m 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.