frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

DLPack

https://dmlc.github.io/dlpack/latest/
1•tosh•1m ago•0 comments

CS146S: The Modern Software Developer

https://themodernsoftware.dev/
1•pramodbiligiri•5m ago•0 comments

Card Modeling FAQ (2002)

https://www.cardfaq.org/faq/
1•exvi•6m ago•0 comments

Custom Paper Pocket Yachts

https://custompaperpocketyachts.k-j-g.com/
1•exvi•11m ago•0 comments

How to Improve Task Switching Without Dremeling Holes in Your Skull

https://pravles.substack.com/p/writers-block-is-a-process-defect
1•pravles•12m ago•0 comments

Power Tools

https://jorviksoftware.cc/notes/2026/04/06/power-tools
1•jonathan_hollin•13m ago•0 comments

Show HN: Turn photos into Wordle puzzles with AI that runs 100% in your browser

https://momentsgame.com/
1•ud0•14m ago•0 comments

Haunted Paper Toys

http://ravensblight.com/papertoys.html
1•exvi•14m ago•0 comments

The internet blackout in Iran is entering its 38th day

https://mastodon.social/@netblocks/116356615846320587
1•us321•16m ago•0 comments

Hello

https://hacker-news.firebaseio.com/v0/newstories.json?print=pretty
1•madagha•24m ago•1 comments

Show HN: Free AI Business Name Generator with Domain Screening

https://noetron.ai/namegen
1•noetron•27m ago•1 comments

Auto read and summarize bookmarked X posts and Substack newsletters – feedback?

https://readingnotes.ai/producthunt
1•secondmod•34m ago•0 comments

How Paris swapped cars for bikes – and transformed its streets

https://www.theguardian.com/world/2026/apr/05/how-paris-swapped-cars-for-bikes-and-remade-its-str...
3•vrganj•39m ago•0 comments

On the brink of disaster

https://www.taxresearch.org.uk/Blog/2026/04/06/on-the-brink-of-disaster/
2•only_in_america•39m ago•0 comments

Number in man page titles e.g. sleep(3)

https://lalitm.com/til-number-in-man-page-titles-e-g-sleep-3/
2•thunderbong•44m ago•0 comments

Verbatim 140W GAN: One of the first chargers with USB PD 3.2 AVS (SPR) support

https://charge-test.com/verbatim-mini-gan-charger-140w-review-one-of-the-first-chargers-with-full...
2•StainX•45m ago•0 comments

Show HN: I built an Open-source Dropbox/Google Drive BOYB(Bring your own bucket)

https://github.com/zmeyer44/Locker
1•Zm44•45m ago•1 comments

Talk about PPU (Parallel Processing Unit) increasing CPU speeds exponentially

https://www.youtube.com/watch?v=ZiQxxzCHLvo
1•openhw•48m ago•0 comments

Industrial Policy for the Intelligence Age

https://openai.com/index/industrial-policy-for-the-intelligence-age/
1•salkahfi•50m ago•0 comments

Avoid Concatenation in Log Statements

https://blog.bonnieeisenman.com/blog/avoid-concatenation-in-log-statements/
1•luu•51m ago•1 comments

Show HN: Beat Darwin

1•ecosystemj•52m ago•0 comments

Show HN: I built lightweight LLM tracing tool with CLI

https://github.com/SKE-Labs/lightrace
2•skele•52m ago•1 comments

GlueClaw: Use Claude subscription in OpenClaw again

https://github.com/zeulewan/glueclaw
1•zeulewan•53m ago•1 comments

Show HN: Browser-based EXIF remover – no upload, runs offline via WASM

https://picshift.app/metadata-remover/
2•pod4g•57m ago•0 comments

Drug safety intelligence API – 1M+ FDA adverse events in one call

https://pharma-signal.com
1•Niteowlpt•59m ago•0 comments

Show HN: I just built a MCP Server that connects Claude to all your wearables

https://pacetraining.co/
3•anton_salcher•1h ago•4 comments

Tips and tricks to avoid cloning in Rust

https://antoine.vandecreme.net/blog/avoiding-clone/
1•avandecreme•1h ago•0 comments

Ask HN: How do you escape golden handcuffs at FAANG?

2•oumua_don17•1h ago•6 comments

RISC-V Linux BusyBox Single Board Notebook

https://tomlarkworthy.github.io/lopebooks/notebooks/@tomlarkworthy_linux-sbc.html
1•tlarkworthy•1h ago•2 comments

Career-Ops: How I Built My Own AI Job Search Tool

https://santifer.io/career-ops-system
1•futurecat•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•11mo ago

Comments

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