frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What BOYK AI client are you using?

1•yeeyang•1m ago•0 comments

A browser-based automated JavaScript testing framework in one .html file

https://github.com/swans-one/browser-test
1•thunderbong•8m ago•0 comments

AI Mediated Learning

https://substack.com/profile/526971458-yasaswi-yash-kompella/note/c-325001983
1•YasaswiKompella•9m ago•0 comments

Microsoft's Guidance on AI Agents Shared Responsibility Model

https://learn.microsoft.com/en-us/azure/security/fundamentals/shared-responsibility-ai-agent
1•omkarparth•10m ago•0 comments

Obsessing over AI Agent Harnesses

https://www.roderick.dev/writing/2026-08-28-obsessing-harnesses/
1•tomrod•11m ago•0 comments

Welcoming Jess Izen, [AWS], as Engineer in Residence at the Rust Foundation

https://rustfoundation.org/media/welcoming-jess-izen-as-engineer-in-residence-at-the-rust-foundat...
1•shudder•11m ago•0 comments

I built an AI assistant that keeps working after the chat ends

https://shotah.github.io/gantree/
1•christopher-blo•15m ago•0 comments

Meta's Push to Put Robots to Work in Data Centers

https://www.wired.com/story/inside-metas-experiments-with-data-center-robots/
3•newsomix9xl•18m ago•2 comments

LLGo: Go compiler based on LLVM that integrate Go with the C ecosystem

https://github.com/xgo-dev/llgo
1•xushiwei•22m ago•1 comments

Twitterwebviewer.com Service Discontinued

https://twitterwebviewer.com/?
5•nothrowaways•27m ago•0 comments

Revised Rules of Engineering Leadership

https://lethain.com/revised-rules-of-engineering-leadership/
2•fagnerbrack•38m ago•0 comments

Cobalt: Designing a safer C without making it Rust

https://strawberry9.github.io/the-wrong-memory/Appendix_06.html
1•VolatileRegiste•40m ago•0 comments

Censured Administrations – AAUP

https://www.aaup.org/about/programs/protecting-academic-freedom/censured-administrations
1•pcfwik•1h ago•0 comments

KiroCrew

https://github.com/kirodotdev/KiroCrew
1•rainhacker•1h ago•0 comments

Show HN: AppScreenshots – App Store screenshots in minutes, not hours

https://appscreenshots.net
1•horace168•1h ago•0 comments

A/I Collective Propaganda

https://www.inventati.org/propaganda/
1•andsoitis•1h ago•0 comments

Encoding Mod Files Optically on Paper, as Amiga's Legacy Will Outlast M-Disks

https://hackaday.com/2026/08/26/encoding-mod-files-optically-on-paper-because-amigas-legacy-will-...
1•oxonia•1h ago•1 comments

If u need to control a super smart looking slop blob, try Liquid Orb Editor

https://github.com/LerSent001/orb
1•interweb•1h ago•0 comments

Ask HN: LinkedIn, but only for people you've physically met?

2•Riphyak•1h ago•3 comments

Ezducate an AI powered special education platform

https://www.ezducate.ai/
1•alexandertrish•1h ago•0 comments

Vercel Status – Elevated errors for Workflow streams

https://www.vercel-status.com/incidents/ybx6km0j1gwk
1•kyisaiah47•1h ago•0 comments

A Cop's Case for Flock

https://worksinprogress.co/issue/a-cops-case-for-flock/
2•mvlipwig•1h ago•1 comments

Interactive Model View zai-org/GLM-5.3

https://hfviewer.com/zai-org/GLM-5.3
4•ResearchAtPlay•1h ago•0 comments

Andrew Garfield on Playing Sam Altman in "Artifical"

https://variety.com/2026/film/news/andrew-garfield-talks-playing-sam-altman-artificial-open-ai-12...
3•nreece•1h ago•0 comments

Citations in AI-written reports did not exist

https://www.stipple.sh/resources/ai-citation-hallucination-benchmark
4•gcsydney•1h ago•0 comments

Messy

https://www.observed.life/messy
2•andsoitis•1h ago•0 comments

I'm the Guy Who Destroys Antique Books After We Scan Them into Our Company's AI

https://www.mcsweeneys.net/articles/im-the-guy-who-destroys-antique-books-after-we-scan-them-into...
22•9woc•1h ago•13 comments

Debian Votes to Allow "Responsible Use of Generative AI"

https://www.phoronix.com/news/Debian-Votes-Responsible-AI-Use
7•mappu•1h ago•0 comments

OpenAI and Anthropic are ruining San Francisco

https://www.sfgate.com/local/article/open-ai-anthropic-ruining-sf-22404657.php
9•spking•1h ago•3 comments

Agents in IMessages that can do anything

https://hirealpha.chat/
2•Sashank_Singh•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•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.