frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Humanoid Robot Actuators: The Complete Engineering Guide

https://www.firgelli.com/pages/humanoid-robot-actuators
2•ofrzeta•4m ago•0 comments

IPv4 Tools – IP Lookup, PTR Search, CIDR, ASN

https://worldip.io/tools
1•tuxxin•6m ago•0 comments

Show HN: Maxcred – app to maximise your credit card rewards

https://maxcred.vercel.app
1•theoo21•9m ago•0 comments

BrowserQuest – Mozilla's HTML5 MMO is back

https://korben.info/browserquest-mmo-mozilla-html5-retour.html
3•threejin•9m ago•1 comments

I Automate Everything

https://effective-programmer.com/how-i-actually-automate-everything-0d97ed624a34?sk=f8a15ad7e32cd...
1•naveed125•14m ago•1 comments

StartupLaunchPage – One Page 1500 Fixed Boxes Checkbox Puzzle Game

https://startuplaunchpage.com
1•vnyarongi•15m ago•0 comments

Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins

https://github.com/samchon/ttsc
1•autobe•19m ago•0 comments

Entrepreneurs Flocked to Colorado. Now Red Tape Is Driving Some Away

https://www.wsj.com/business/entrepreneurs-flocked-to-colorado-now-red-tape-is-driving-some-away-...
2•bookmtn•20m ago•1 comments

Real Linux in a Browser Tab

https://linuxontab.com/
1•kilian-ai•21m ago•0 comments

The Scooter and the Bike

https://maxmautner.com/2026/04/12/scooter-vs-bike.html
1•mslate•39m ago•0 comments

HyperList: A powerful TUI for creating, editing, and managing HyperLists

https://github.com/isene/hyperlist
2•thunderbong•41m ago•0 comments

LegalEase – plain-English incorporation guidance for Canadian founders

https://legalease.dev/legalease.dev/
1•margikoca•50m ago•0 comments

The Tech Stack in 2026 (pic)

https://i.imgur.com/w8Ziffp.jpeg
2•ivewonyoung•52m ago•0 comments

Spirit Airlines shuts down; says it can't keep up with higher oil prices

https://apnews.com/article/spirit-airlines-trump-bailout-bankruptcy-37a4818e1b71c0905d022f669d85948c
2•ZeidJ•56m ago•1 comments

Big Tech cut 80k jobs, blamed AI; experts say firms are overstaffed 25%-75%

https://finance.yahoo.com/sectors/technology/articles/big-tech-cut-80-000-211500038.html
1•ZeidJ•59m ago•0 comments

Show HN: Sync agent skills across devices, projects or teams

https://privateaiskills.com/
1•arewethereyeta•1h ago•0 comments

Cozy.Talk – Old web inspired discussion community

https://cozy.talk/
2•rickcarlino•1h ago•0 comments

Ex-DeepMind David Silver Raises $1.1B for AI Startup Ineffable

https://www.cnbc.com/2026/04/27/deepmind-ineffable-intelligence-record-seed-funding-nvidia-google...
1•gmays•1h ago•0 comments

Coffee appears to rewire the gut-brain connection

https://www.sciencedaily.com/releases/2026/05/260502233911.htm
12•loh•1h ago•3 comments

Show HN: Interactive Marimo Moss Ball

https://github.com/ledhieu/imoss
1•ldhieu•1h ago•0 comments

Nerves in Skin Can Slow Melanoma Growth

https://news.weill.cornell.edu/news/2026/04/nerves-in-skin-can-slow-melanoma-growth
1•gmays•1h ago•0 comments

Ask HN: Do you feel reading AI generated readme tiring?

4•maytc•1h ago•2 comments

Verleer – Learn a language from any content

https://verleer.com
1•CallMePapi-_-•1h ago•0 comments

Pilots Shut Off Both Engines Before China Eastern 737 Crash

https://viewfromthewing.com/pilots-shut-off-both-engines-before-china-eastern-737-crash-china-cit...
3•qsi•1h ago•5 comments

Letters from Steve

https://davidgelphman.wordpress.com/2013/03/29/2-letters-from-steve/
2•prawn•1h ago•0 comments

ChatGPT Wrestles with Its Most Chilling Conversation: How Do I Plan an Attack?

https://www.wsj.com/us-news/chatgpt-mass-shooting-openai-78a436d1
2•Brajeshwar•1h ago•2 comments

OpenAI Codex system includes explicit directive to "never talk about goblins"

https://arstechnica.com/ai/2026/04/openai-codex-system-prompt-includes-explicit-directive-to-neve...
4•randycupertino•1h ago•3 comments

Checkpoint/Restore in Userspace (CRIU)

https://criu.org/Main_Page
1•htfy96•1h ago•0 comments

OpenJDK 25 Security Update Released

https://tux.re/forum/viewtopic.php?t=222
2•sys3000•1h ago•0 comments

Enabling Monoglot Programming

https://www.humprog.org/~stephen/blog/research/enabling-monoglot-programming.html
2•htfy96•2h 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•12mo ago

Comments

mcfriendsy•12mo 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.