frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

In the Footsteps of Robert Moses

https://aresluna.org/in-the-footsteps-of-robert-moses/
1•throwaway270925•1m ago•0 comments

Mother of Invention

https://www.economist.com/1843/2018/02/27/mother-of-invention
1•geneticdrifts•3m ago•0 comments

Show HN: Keep batch LLM jobs from starving interactive traffic (TypeScript)

https://github.com/janbalangue/async-bulkhead-llm
1•janbalangue•3m ago•0 comments

Show HN: Xpt – minimalist C package manager

https://git.sr.ht/~juanvel400/xpt
1•juanvel400•6m ago•0 comments

Contributing to the Lean Mathlib Library – Tanner Duve

https://www.youtube.com/watch?v=GqsBVW3d_vc
1•abaradwaj•8m ago•1 comments

Ask HN: Why Connected Home Appliances?

1•ripe•9m ago•0 comments

circle rain sin

https://openprocessing.org/@u141185/2376570
1•bookofjoe•11m ago•0 comments

Beer Nuts

https://en.wikipedia.org/wiki/Beer_Nuts
1•reaperducer•11m ago•0 comments

Senior Scala/Java Developer

1•ali_rezvani•11m ago•1 comments

A simple fix for LLM tail latency

https://engineering.myhoai.com/posts/a-simple-fix-for-llm-tail-latency/
1•zhixuan•12m ago•0 comments

Cats and dogs are missing meals after a popular smart feeder went down

https://www.theverge.com/tech/979295/petlibro-outage-smart-pet-feeders
1•speckx•14m ago•0 comments

Solo founder, non-technical, $100M raised

https://solofounders.beehiiv.com/p/solo-founder-non-technical-100m-raised
1•spking•14m ago•0 comments

Chestnut

https://blog.comma.ai/chestnut/
2•simonpure•16m ago•0 comments

87-Webcam Multiview of the 2026 Eclipse

https://ostwilkens.se/blog/eclipse
1•ostwilkens•19m ago•0 comments

Show HN: VolumeM8 – Volume Control for Chrome

https://chromewebstore.google.com/detail/volumem8-volume-control/nacgakdfnhfmoipjhfbbpicfpkdajomg
1•louisblythe•20m ago•0 comments

ICE equipping agents with gloves that deliver electric shocks

https://www.bbc.com/news/articles/c20d292gdp4o
1•dabinat•20m ago•0 comments

Turning molecules into reliable electronic devices

https://news.mit.edu/2026/turning-molecules-into-reliable-electronic-devices-0803
1•signa11•22m ago•0 comments

Unless nderstanding std:counting_semaphore and std:binary_semaphore from C++20

https://www.cppstories.com/2026/semaphore/
1•signa11•23m ago•0 comments

The End of Mathematics

https://www.daniellitt.com/blog/2026/8/11/the-end-of-mathematics
1•rzk•23m ago•0 comments

Rubber Chicken AI

https://teambuildingschool.com
1•tylerhayden•25m ago•1 comments

My Ten Years in No Man's Sky

https://nmsspot.com/2026/08/09/my-ten-years-in-no-mans-sky/
2•blakespot•26m ago•1 comments

Show HN: TimeM8 – Time Tracking and Invoicing

https://chromewebstore.google.com/detail/timem8-–-time-tracking-in/mchhcaboohohmhedhmghenjnfjgk...
1•louisblythe•26m ago•0 comments

Show HN: DarkM8 – Dark Mode Chrome Extension

https://chromewebstore.google.com/detail/darkm8/ilhmpipdbgkiogeiicdjcmpgijeicpdb
1•louisblythe•28m ago•0 comments

Elasticsearch Hybrid Search Recipes – Benchmarked (2025)

https://softwaredoug.com/blog/2025/03/13/elasticsearch-hybrid-search-strategies
1•softwaredoug•30m ago•0 comments

Anyone play the Half-Life games recently?

2•Singular_Child•33m ago•0 comments

Why Wall Street and Nvidia Are Building an Exotic Money Pipeline for the AI Boom

https://www.wsj.com/tech/ai/why-wall-street-and-nvidia-are-building-an-exotic-money-pipeline-for-...
1•lesbarclays•34m ago•1 comments

I never changed careers, only systems

https://www.silvestri.cloud/blogs/i-never-changed-careers-only-systems/
1•dev_marco•37m ago•0 comments

ByteDance launches SeedRealtime: native full-duplex audio-video model

https://ainexusdaily.vercel.app
1•qrify_app•37m ago•0 comments

Initial Listing of Two Compute Futures Contracts

https://www.cmegroup.com/notices/ser/2026/08/ser-9785.html
1•JumpCrisscross•39m ago•0 comments

Cerebras Hardware Business Declines After 'Lumpy' Orders

https://www.bloomberg.com/news/articles/2026-08-12/cerebras-hardware-business-declines-in-sign-of...
1•lesbarclays•39m 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.