frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Package Managers Need to Cool Down

https://nesbitt.io/2026/03/04/package-managers-need-to-cool-down.html
1•zdw•29s ago•0 comments

Every AI code review vendor benchmarks itself, and wins

https://deepsource.com/blog/ai-code-review-benchmarks
1•dolftax•1m ago•0 comments

Hey ChatGPT write me a fictional paper: LLMs willing to commit academic fraud

https://www.nature.com/articles/d41586-026-00595-9
1•bookofjoe•1m ago•1 comments

Show HN: A rec.us CLI for your Claw

https://github.com/jakajancar/recus
1•JakaJancar•2m ago•0 comments

Code Mode: Giving AI Agents an API in 1k Tokens (With Demos) [video]

https://www.youtube.com/watch?v=-ZikRWR1Gb4
1•emot•4m ago•0 comments

The Death of the Downvote

https://nathankyoung.substack.com/p/the-death-of-the-downvote
1•mitka_y•7m ago•0 comments

Computer run on human brain cells learned to play 'Doom'

https://www.popsci.com/technology/human-brain-cell-computer-plays-doom/
1•wjb3•8m ago•0 comments

The Thucydides Trap Is Coming for America

https://www.nytimes.com/2025/11/21/opinion/america-china-trump-g20.html
3•KnuthIsGod•10m ago•0 comments

Workers: Autonomous Agents in Slack

https://www.tagworkers.com/
1•handfuloflight•10m ago•0 comments

48x32, a 1536 LED Game Computer

https://jacquesmattheij.com/48x32-introduction/
1•duck•11m ago•0 comments

We can't launch our trash into the sun. But why?

https://www.popsci.com/science/launch-trash-into-the-sun-video/
1•wjb3•14m ago•0 comments

Tim Sweeney signed away his right to criticize Google until 2032

https://www.theverge.com/news/889595/tim-sweeney-signed-away-his-right-to-criticize-google-until-...
1•0in•17m ago•0 comments

Our AI code reviewer found a CVSS 10.0 authentication bypass in pac4j-JWT

https://www.codeant.ai/security-research/pac4j-jwt-authentication-bypass-public-key
1•Amartya_jha•18m ago•1 comments

Setting Up Preview Envs to Test Agent PRs Without Ever Pulling Locally

https://www.piersonmarks.com/posts/testing-agent-written-prs-in-the-cloud
1•PiersonMarks•21m ago•0 comments

Anthropic CEO calls OpenAI's messaging around military deal 'straight up lies'

https://techcrunch.com/2026/03/04/anthropic-ceo-dario-amodei-calls-openais-messaging-around-milit...
12•SilverElfin•30m ago•3 comments

Jeffrey Epstein: The Transhumanist Pedophile Who Hoped to Live Forever

https://www.truthdig.com/articles/jeffrey-epstein-the-transhumanist-pedophile-who-hoped-to-live-f...
4•cdrnsf•31m ago•0 comments

Apparently chardet got Claude to rewrite the codebase from LGPL to MIT

https://chaos.social/@Foxboron/116170859737134271
1•gaius_baltar•32m ago•0 comments

Pike – Solving the "should we stop here or gamble on the next exit" problem

https://tomjohnell.com/pike-solving-the-should-we-stop-here-or-gamble-on-the-next-exit-problem/
3•tjohnell•34m ago•1 comments

Gemini 3.1 Flash-Lite

https://twitter.com/GoogleDeepMind/status/2028872381477929185
1•pat2man•36m ago•0 comments

Altman admits OpenAI can't control Pentagon's use of AI

https://www.theguardian.com/technology/2026/mar/04/sam-altman-openai-pentagon
5•albumen•36m ago•0 comments

European pensions are a $30T missed opportunity

https://www.economist.com/finance-and-economics/2026/03/04/european-pensions-are-a-30trn-missed-o...
1•vinni2•39m ago•0 comments

JSE: A Structural Expression Protocol for AI Agents

1•mars_liu•39m ago•1 comments

Unveiling the Weaponized Web Shell EncystPHP

https://www.fortinet.com/blog/threat-research/unveiling-the-weaponized-web-shell-encystphp
1•WeaklingOra•40m ago•0 comments

Extending single-minus amplitudes to gravitons

https://openai.com/index/extending-single-minus-amplitudes-to-gravitons/
5•telotortium•40m ago•0 comments

Show HN: Residuum | Agentic AI with continuous context

https://github.com/Grizzly-Endeavors/residuum
1•BearFlinn•40m ago•0 comments

Platform Designed for Motorists and Law Enforcement for Safety

https://www.traafik.com/
1•fcpguru•41m ago•0 comments

Rules for Pricing Client Engagements

https://b2bs.substack.com/p/op-note-3-rules-for-pricing-client
1•ohjeez•45m ago•0 comments

TakeoutReader – Turn your Google Takeout JSON into a readable report

1•martinZak•46m ago•1 comments

Show HN: One provider starts lying at request 50. The quorum catches it

https://github.com/sbw70/verification-constraints/blob/main/modules/integrated-constraint-demos/t...
1•sbw70•47m ago•0 comments

Roundup of Events for Bootstrappers in March 2026

https://bootstrappersbreakfast.com/2026/02/24/roundup-of-march-bootstrapper-events/
1•skmurphy•49m 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•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.