frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Medical technology company in Michigan hit by suspected Iran-linked cyberattack

https://www.fox17online.com/news/local-news/kzoo-bc/kalamazoo/stryker-headquarters-in-portage-clo...
2•SteveNuts•38s ago•0 comments

Fitting a Query Engine in Three Cache Lines

https://vertexclique.com/blog/fitting-a-query-engine-in-three-cache-lines/
1•brkydnc•2m ago•0 comments

Free, private social media with Obsidian and Dropbox

https://clairefro.dev/blog/p/free-private-social-media-with-obsidian-and-dropbox
2•marjipan200•2m ago•0 comments

An interactive presentation about the Grammar of Graphic

https://timeplus-io.github.io/gg-vistral-introduction/
1•gangtao•2m ago•0 comments

MkLinux

https://en.wikipedia.org/wiki/MkLinux
1•tosh•3m ago•0 comments

Counting tokens to measure AI ROI is like judging a salesperson by emails sent

https://www.revenium.ai/post/stop-measuring-ai-in-tokens
1•nathanowahl•5m ago•0 comments

Given AI, should I still consider becoming a computer programmer? – Yes, and

https://htmx.org/essays/yes-and/
1•spiffyk•7m ago•0 comments

Hacker broke into FBI and compromised Epstein files

https://techcrunch.com/2026/03/11/hacker-broke-into-fbi-and-compromised-epstein-files-report-says/
7•SilverElfin•7m ago•0 comments

Processed 4M threads, got 200k user pain, comment ur idea, I will validate free

1•losalah•8m ago•0 comments

Crash Course in Deep Learning (For Computer Graphics)

https://gpuopen.com/learn/deep_learning_crash_course/
1•ppew•9m ago•0 comments

Help Vampires: A Spotter's Guide

https://slash7.com/2006/12/22/vampires/
2•Cider9986•11m ago•0 comments

Sidekiq in the Terminal

https://www.mikeperham.com/2026/03/10/sidekiq-in-the-terminal/
1•thunderbong•11m ago•0 comments

The Wiki

http://zqktlwiuavvvqqt4ybvgvi7tyo4hjl5xgfuvpdf6otjiycgwqbym2qad.onion/
2•davidian112•12m ago•2 comments

NASA's Dart Mission Changed Orbit of Asteroid Didymos Around Sun

https://www.nasa.gov/missions/dart/nasas-dart-mission-changed-orbit-of-asteroid-didymos-around-sun/
2•mpweiher•12m ago•0 comments

Everything Was Rational and Nothing Vibed

https://kevinmunger.substack.com/p/everything-was-rational-and-nothing-67d
1•jllyhill•12m ago•0 comments

XR Fragments

https://xrfragment.org/doc/RFC_XR_Fragments.html
1•andybak•12m ago•0 comments

Uggly Belgian Houses

https://www.tumblr.com/uglybelgianhouses/48112450208/dude-your-house-is-melting
1•tcumulus•15m ago•1 comments

Show HN: Making Debates Great Again

https://www.superdebate.org/
1•TheAntiEgo•18m ago•0 comments

TweetyBERT parses canary songs to better understand how brains learn language

https://techxplore.com/news/2026-03-tweetybert-parses-canary-songs-brains.html
1•PaulHoule•19m ago•0 comments

Antidote

https://newsletter.vickiboykis.com/archive/antidote/
1•exolymph•19m ago•0 comments

FBI warns Iran aspired to attack California with drones in retaliation for war

https://abcnews.com/US/fbi-warns-iran-aspired-attack-california-drones-retaliation/story?id=13097...
1•jaredwiener•20m ago•0 comments

IEA to carry out largest ever oil stock release amid market disruptions

https://www.iea.org/news/iea-member-countries-to-carry-out-largest-ever-oil-stock-release-amid-ma...
1•geox•22m ago•0 comments

Marine Hose Cartel (2014)

https://en.wikipedia.org/wiki/Parker_ITR_Srl_v_Commission
1•rglover•22m ago•0 comments

Repotype – Linting for your repository and to clean your Agent's rooms'

https://supernalintelligence.github.io/repotype/
1•supernalai•22m ago•1 comments

LaneConductor – Gemini conductor and Claude Code superpowers meets on Kanban

https://github.com/meller/laneconductor
1•meller_a•23m ago•1 comments

Re: Is Lutris Slop Now

https://github.com/lutris/lutris/issues/6529
2•yamabiko•23m ago•1 comments

Output-Maximizing Long-Context Programming: 14k lines of code for $0.58

https://zenodo.org/records/18963411
1•JasonViviers•24m ago•1 comments

Douglas Adams would love NIS2

https://www.heise.de/en/news/Douglas-Adams-would-love-NIS2-11204397.html
1•doener•25m ago•0 comments

The Evolution of Access: Smarter Profiles, Stronger Security

https://www.cyberark.com/resources/blog/identity-governance-gaps-how-ai-profiles-move-security-be...
2•alokDT•26m ago•1 comments

Nvidia is reportedly planning its own open source OpenClaw competitor

https://arstechnica.com/ai/2026/03/nvidia-is-reportedly-planning-its-own-open-source-openclaw-com...
3•mikece•26m 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•10mo ago

Comments

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