frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Behind fiery attack on OpenAI's Altman, a growing divide over AI

https://www.adn.com/nation-world/2026/04/14/behind-fiery-attack-on-openais-altman-a-growing-divid...
1•rolph•33s ago•0 comments

Claude Sucks

1•TheIrishman2000•1m ago•0 comments

RedMonk Top Languages over Time: January 2026

https://redmonk.com/rstephens/2026/04/14/top20-jan2026/
1•mooreds•2m ago•0 comments

Object Oriented Programming in Ada

https://entropicthoughts.com/object-oriented-programming-in-ada
1•baranul•4m ago•0 comments

A sufficiently comprehensive spec is not (necessarily) code

https://buttondown.com/hillelwayne/archive/a-sufficiently-comprehensive-spec-is-not/
1•BerislavLopac•5m ago•0 comments

Claude Universe: teach Claude Code to think systematically

https://github.com/mbwsims/claude-universe
1•simsisaki•6m ago•0 comments

Gemini 3.1 Flash Live

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-1-flash-live/
1•pylotlight•6m ago•1 comments

Gartner: AI is not a silver bullet for mainframe exit

https://www.heise.de/en/news/Gartner-AI-is-not-a-silver-bullet-for-mainframe-exit-11259157.html
1•layer8•9m ago•0 comments

Show HN: Hormuz Trail

https://hormuztrail.com/
1•sstradling•9m ago•0 comments

CRISPR takes a bold leap toward silencing Down syndrome's extra chromosome

https://medicalxpress.com/news/2026-04-crispr-bold-silencing-syndrome-extra.html
1•amichail•9m ago•0 comments

What's Happening to Beyond Meat?

https://www.foodpolitics.com/2026/04/whats-happening-to-beyond-meat/
2•speckx•10m ago•1 comments

Ask HN: How do you prepare for a mid career Research Engineer role at neo Labs

1•sameersegal•10m ago•0 comments

If you ignore soft skills, you'll be taken for a ride

https://togetherlondon.com/insights/ignore-soft-skills-at-your-peril
1•algebracare•10m ago•0 comments

AI Coding Agents get better at functional code, but not security

https://www.endorlabs.com/research/ai-code-security-benchmark
1•EwokAmbassador•11m ago•0 comments

Minimal Viable Programs (2014)

https://joearms.github.io/published/2014-06-25-minimal-viable-program.html
2•bachmeier•16m ago•1 comments

What we talk to when we talk to language models

https://philarchive.org/rec/CHAWWT-8
1•Anon84•16m ago•0 comments

Chrome Extension for Google Search Console that auto request URL indexing

https://github.com/ogamaniuk/GSC-URL-Indexer/
1•alexander-g•17m ago•1 comments

Lyra 2.0: Explorable Generative 3D Worlds

https://research.nvidia.com/labs/sil/projects/lyra2/
2•pretext•18m ago•0 comments

Ask HN: Any one use Haskell to paractise their algorithm skill

2•JasonHEIN•18m ago•2 comments

Show HN: Moxn – Git-like version control for collaborative docs

https://moxn.dev/
2•mark-weiss•18m ago•1 comments

Wispr Flow Is Tracking Every App/URL You Visit and Taking Screenshots

https://wensenwu.com/thoughts/wispr-flow-investigation
4•Cveinnt•19m ago•0 comments

We built our AI agent, for analyzing CI logs

https://www.mendral.com/blog/how-we-built-our-ai-agent
1•shad42•20m ago•0 comments

Ask HN: Plenty of organic traffic but struggling to make sales

1•abysmalconvers•21m ago•0 comments

Strategic advantage opportunity – next-gen. observability layer 29 min earlier

https://ravensystems.group
1•ravensystems•22m ago•0 comments

Convert every software into an RL environment

https://cmu-l3.github.io/gym-anything/docs/
2•pHequals7•26m ago•0 comments

Orange Pi 4 Pro Review

https://boilingsteam.com/orange-pi-4-pro-review/
3•ekianjo•26m ago•1 comments

The first spark: what we learned during our first Hackathon

https://www.float.com/blog/first-spark-float-hackathon
1•mooreds•26m ago•0 comments

What's the deal with Alzheimer's disease and amyloid?

https://arstechnica.com/science/2026/04/whats-the-deal-with-alzheimers-disease-and-amyloid/
2•quapster•29m ago•1 comments

Netgear wins first U.S. approval to keep selling foreign-made routers

https://qz.com/netgear-fcc-exemption-foreign-router-ban-041526
1•sbuttgereit•29m ago•0 comments

Allbirds Now Says It's an AI Company, Stock Jumps 800%

https://www.forbes.com/sites/zacharyfolk/2026/04/15/shoemaker-allbirds-suddenly-says-its-an-ai-co...
2•gmays•30m ago•1 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.