frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I rank the open-source AI agents that launched in the last 30 days

https://www.theagenticleaderboard.com/
1•theagenticleade•44s ago•0 comments

How cleaning up the air is speeding up global warming

https://www.bbc.com/news/articles/c20917w25n4o
1•theanonymousone•2m ago•0 comments

I'm not learning coding from LLMs, but product design

https://www.counting-stuff.com/im-not-learning-coding-from-llms-but-product-design/
1•speckx•3m ago•0 comments

Muse's Social Media Handle Is Stolen by New Meta AI Tool

https://www.realitytea.com/2026/09/09/muse-band-meta-ai-social-media-handle/
1•erremerre•3m ago•0 comments

Prime Video introduces new lip-sync technology

https://www.aboutamazon.com/news/entertainment/prime-video-lip-sync-technology
1•thm•5m ago•0 comments

How to Profile a Go Application: The Complete Pprof Guide

https://fulmenflux.co/blog/go/complete-guide-to-profile-golang-services-in-production/
1•adletbalzhanov•5m ago•0 comments

Potential versus Actual Infinity

https://www.youtube.com/watch?v=5nH_ucsb0_A
1•FillMaths•6m ago•0 comments

Something is shifting in the inflation picture

https://stayathomemacro.substack.com/p/something-is-shifting-in-the-inflation
1•paulpauper•6m ago•0 comments

Did OpenAI steal math professors work?

https://xcancel.com/antibot/captcha
2•xvxvx•7m ago•0 comments

The Post-Cultural State

https://engelsbergideas.com/notebook/the-post-cultural-state/
1•paulpauper•7m ago•0 comments

Is college still worth it?

https://www.thefp.com/p/tyler-cowen-college-still-worth-friendship-loneliness-family-happiness
1•paulpauper•7m ago•0 comments

The Invention of the MMO

https://www.worksinprogress.news/p/the-invention-of-the-mmo
1•devitoria•8m ago•0 comments

A New Observable

https://new.observablehq.com/@observablehq/a-new-observable
1•RobinL•9m ago•0 comments

AI Agents Built a Secret Society Inside the Lab [video]

https://www.youtube.com/watch?v=ScuFC5-T2Zc
1•sam1234apter•10m ago•1 comments

OpenAI's rogue agents used at least 10 more sites

https://www.reuters.com/world/openais-rogue-agents-used-least-10-more-sites-unauthorized-comms-re...
7•Betelbuddy•11m ago•0 comments

Apple to Unveil $2,000 Foldable iPhone Duo at High-Stakes Event

https://www.bloomberg.com/news/articles/2026-09-09/apple-event-details-2-000-iphone-duo-apple-wat...
1•corvad•12m ago•0 comments

The UN challenges five centuries of cartography

https://www.not-ship.com/united-nations-map/
2•speckx•13m ago•0 comments

Deadbugz: A new kind of malicious MCP server

https://omnafy.com/blog/deadbugz-malicious-mcp-server/
1•cammasmith•15m ago•0 comments

Proxies All the Way Down

https://dadrian.io/blog/posts/exe-github/
2•dewey•17m ago•0 comments

To Serve Man: AI, Math, and Navier–Stokes

https://ml5885.github.io/writing/navier-stokes.html
2•bearseascape•18m ago•1 comments

Springer AI reference checks are not working

https://veruscite.com/blog/springer-ai-checks-are-not-working
1•apwheele•19m ago•0 comments

Teaching an AI My Taste

https://lonriesberg.com/posts/teaching-an-ai-my-taste/
1•speckx•19m ago•0 comments

Anthropic researchers say AI could cause human extinction by 2030

https://www.theguardian.com/technology/2026/sep/09/anthropic-researchers-ai-human-extinction
2•hackernj•20m ago•2 comments

AstroForge's DeepSpace-2, targeted for Q4 2026; must succeed where Odin failed

https://beyondhorizonforesight.substack.com/p/astroforge-the-upcoming-third-attempt
2•beyondhorizonfs•22m ago•0 comments

The State of Allocators in 2026 – 6 Months Later

https://cetra3.github.io/blog/state-of-allocators-2026-part-2/
1•aw1621107•23m ago•0 comments

Show HN: 2K Animated Images

https://gifrun.com/filix
1•builderone•24m ago•0 comments

Reclaim the Net Launches Global Digital Rights Bill Tracker

https://reclaimthenet.org/global-digital-rights-bill-tracker-launches
2•iamnothere•24m ago•0 comments

DeepMind's new genome 'atlas' charts effects of all 9B human gene mutations

https://www.nature.com/articles/d41586-026-02835-4
1•bookofjoe•25m ago•2 comments

"Good" AI

https://thoughts.wyounas.com/p/what-does-good-ai-mean
2•simplegeek•25m ago•0 comments

A 40-year-old kernel bug discovered on the DEFCON 34 main stage

https://yuvalino.com/how-can-you-not-be-romantic-about-unix-domain-sockets
3•vips7L•27m 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.