frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: AI IQ – Mapping AI benchmarks onto a common capability scale

https://www.aiiq.org/
1•shea256•1m ago•0 comments

Posy: Mouse Cursor History (and why I made my own) [video]

https://www.youtube.com/watch?v=YThelfB2fvg
1•vintagedave•1m ago•0 comments

Show HN: YantrikDB – persistent memory for AI agents

https://github.com/yantrikos/yantrikdb
1•pranabsarkar•2m ago•0 comments

DuckDB Monthly #41

https://motherduck.com/blog/second-variant/duckdb-ecosystem-newsletter-may-2026/
1•ethagnawl•2m ago•0 comments

Show HN: Matterbeam, a company-wide write-ahead log for your data

https://matterbeam.com
1•mikepk•3m ago•0 comments

Why AI doesn't express discomfort signals to ignorant-human-boss

1•afxuh•3m ago•0 comments

What Big Food Did to Ice Cream

https://ahalflife.substack.com/p/what-big-food-did-to-ice-cream
2•jleyank•4m ago•1 comments

I asked a LLM to create a language and then make a NES emulator

https://github.com/kerv/laze
1•kerv•5m ago•1 comments

Agentic Search Models

https://softwaredoug.com/blog/2026/05/11/the-new-agentic-search-models.html
1•Tomte•6m ago•0 comments

If I ruled the world: Michael Sandel (2012)

https://www.prospectmagazine.co.uk/culture/50440/if-i-ruled-the-world-michael-sandel
1•robtherobber•6m ago•0 comments

Access Is Not Ownership

https://aquisthoughts.substack.com/p/access-is-not-ownership
1•ethanplant•6m ago•0 comments

Int a = 5; a = a++ + ++a; a =? (2011)

https://gynvael.coldwind.pl/?id=372
1•e-topy•7m ago•0 comments

TeamPCP's Mini Shai-Hulud Is Back

https://www.stepsecurity.io/blog/mini-shai-hulud-is-back-a-self-spreading-supply-chain-attack-hit...
1•segmenta•8m ago•0 comments

FastChart: Native PHP extension for server-side charts, barcodes, and QR codes

https://github.com/iliaal/fastchart
1•ilia-a•9m ago•1 comments

Human-in-the-Loop Done Right

https://www.bicameral-ai.com/blog/human-in-the-loop-done-right
1•jinhkuan•10m ago•0 comments

Knowledge is Cheap. Intelligence isn't

https://apattichis.substack.com/p/knowledge-is-cheap-intelligence-isnt
1•apattichis•10m ago•2 comments

FHIR Toolkit – Inline FHIR Validation for IntelliJ / JetBrains IDEs

https://plugins.jetbrains.com/plugin/31676-fhir-toolkit
1•adhikaribipin•10m ago•0 comments

C3X: Open-source cloud cost estimates for Terraform, no API key needed

https://github.com/c3xdev/c3x
1•cap_andrea•10m ago•0 comments

Viewllm – one command to view and share HTML reports from AI agents

https://github.com/yz671/viewllm
1•yz671•11m ago•0 comments

Hantavirus outbreak exposes uncertainty about how disease spreads

https://www.nature.com/articles/d41586-026-01512-w
1•bookofjoe•12m ago•1 comments

Rise of the AI Soldiers

https://time.com/article/2026/03/09/ai-robots-soldiers-war/
1•eloisius•14m ago•0 comments

Show HN: Ytree v3.0.0-alpha, an AI-assisted rewrite towards feature completeness

https://github.com/robkam/ytree
1•robkam•15m ago•0 comments

Additively Manufactured Density-Graded Dual-Material Auxetic Structures

https://www.mdpi.com/2072-666X/17/5/570
1•PaulHoule•15m ago•0 comments

Once again, SpaceX has set a new record for the tallest rocket ever built

https://arstechnica.com/space/2026/05/spacex-completes-fueling-test-setting-stage-for-first-launc...
2•Brajeshwar•15m ago•1 comments

Should You Trust the Netflix Top? A Statistical Analysis

https://www.statsignificant.com/p/should-you-trust-the-netflix-top
1•speckx•15m ago•0 comments

Tellie: A Teleprompter that listens. Vibe coded it while my granddaughter slept

https://tellie.skytech.io
1•SteveChazin•16m ago•1 comments

The Teleport Contest: Port >440k LoC (NetHack) from C to JavaScript

https://mazesofmenace.ai/
1•abgruszecki•16m ago•0 comments

Regatta Starting Stations – Chi-Squared Continued

https://entropicthoughts.com/regatta-starting-stations
1•ibobev•17m ago•0 comments

Async I/O in Zig 0.16, today

https://lalinsky.com/2026/05/11/async-io-in-zig-016-today.html
1•ibobev•18m ago•0 comments

The SiFive P570 Gen 3: A System Perspective

https://www.sifive.com/blog/p570-gen-3-a-system-perspective
2•fork-bomber•21m 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.