frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What happens when software creation becomes nearly free?

1•dsheiko•28s ago•0 comments

Free coding interview practice using patterns

https://feetscode.com/
1•dchitimalla1•31s ago•0 comments

Show HN: Eyeball

https://eyeball.rory.codes/
1•mrroryflint•3m ago•0 comments

The Future of the Website in the AI Age

https://inkpat.com/volatilecarbon/post/258
1•volatilecarbon•6m ago•0 comments

Models try to write a Game Boy Advance emulator from scratch

https://gbaeval.com/
1•stared•7m ago•0 comments

Skillhound: A live index of every SKILL.md

https://www.skillhound.ai/
2•mfkhalil•10m ago•1 comments

Show HN: Review-First AI IDE, Built on Codex and OpenCode

https://handler.team/
2•vignesh_warar•10m ago•0 comments

Google Encloses the Web

https://battellemedia.com/archives/2026/06/google-encloses-the-web
1•thm•10m ago•0 comments

We Asked the Future of Truth Author to Explain How He Used AI. It Didn't Go Well

https://www.wired.com/story/future-of-truth-ai-interview/
1•calcifer•12m ago•0 comments

Strava just pulled a Reddit on its developer community

https://www.notebookcheck.net/Strava-just-pulled-a-Reddit-on-its-developer-community.1312468.0.html
5•SVI•14m ago•0 comments

What Is Not in Plan Nine

https://wiki.c2.com/?WhatIsNotInPlanNine
3•tosh•18m ago•0 comments

Gotion Unveils Sodium Battery Products with 261 Wh/Kg Energy Density

https://cleantechnica.com/2026/05/22/gotion-unveils-sodium-battery-products-with-261-wh-kg-energy...
1•radimm•23m ago•0 comments

Two-thirds of vaping's gene-expression changes tied to flavor and device type

https://keck.usc.edu/news/e-cigarette-flavor-and-device-type-play-a-key-role-in-vaping-related-mo...
2•berlianta•23m ago•0 comments

Cold Start DNS

https://blog.apnic.net/2026/06/02/cold-start-dns/
1•SVI•25m ago•0 comments

Technical Interviews Reject the Wrong Engineers

https://fagnerbrack.com/technical-interviews-reject-the-wrong-engineers-a8e78ca04b2e
2•buffer_overlord•31m ago•0 comments

Save money on A/C costs with handy tool

https://mnqprimo.com/nowcast/
1•chooklay•31m ago•0 comments

World models need exponentially less data than LLMs

https://twitter.com/MatthieuWyart/status/2061317203857739846
2•MrBuddyCasino•32m ago•0 comments

OpsGrid: Cloud Stack at a Glance

https://opsgrid.hirawat.in/dashboard
1•hirawat•33m ago•1 comments

Steph Curry: NBA star signs shoe deal with Chinese brand Li-Ning

https://www.bbc.com/news/articles/cj9pky3ldddo
1•doppp•35m ago•0 comments

Adding my blog and book to my Obsidian vault via symlinks

https://www.ssp.sh/brain/add-external-folders-git-blog-book-to-my-obsidian-vault-via-symlink/
2•zazuke•37m ago•1 comments

Hey London! Making a list of X accounts worth following in the AI scene here

https://x.com/i/lists/2032117580790468859
1•hellodarknessmy•37m ago•0 comments

EU is set to join US-led chip alliance 'Pax Silica' to counter China's AI race

https://www.euronews.com/my-europe/2026/06/01/the-eu-is-set-to-join-us-led-chip-alliance-pax-sili...
2•doener•39m ago•0 comments

Researchers able to spy on your browsing by measuring SSD activity

https://www.tomshardware.com/tech-industry/cyber-security/researchers-say-they-can-spy-on-your-br...
1•My_Name•43m ago•0 comments

The Messy Reality of Building an Empire in Space

https://www.wsj.com/tech/blue-origin-spacex-rivalry-cebe1bc0
2•ironyman•52m ago•1 comments

ChatGPhish: The Page Is the Payload

https://permiso.io/blog/chatgpt-markdown-rendering-vulnerability
1•hereticles•53m ago•1 comments

Florida sues OpenAI and Sam Altman over alleged safety lapses

https://www.npr.org/2026/06/01/nx-s1-5843132/openai-florida-lawsuit-safety-chatgpt
2•isaacfrond•54m ago•0 comments

A Resonant Hierarchy of Everything – one recursive formula across all scales

https://hierarchyofeverything.com
1•DementD•55m ago•0 comments

OpenAIRE AI Hackathon

https://www.openaire.eu/announcement-openaire-ai-hackathon
1•T-A•55m ago•0 comments

VW cuts owners' access to their own vehicle data with API change

https://www.heise.de/en/news/VW-cuts-owners-access-to-their-own-vehicle-data-with-API-change-1131...
3•doener•1h ago•0 comments

Dear USA: When You Were Awesome

https://ifloz.substack.com/p/dear-usa-when-you-were-awesome
1•testrun•1h 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.