frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Performant C/CUDA inference engine for Qwen 3.6 35B on RTX 5090 / Blackwell

https://github.com/ambud/q36
2•ambuds•3m ago•0 comments

Claude Code Usage Global Leaderboard

https://www.claudeusage.com
2•bazarkua•3m ago•0 comments

Apple's "Thermonuclear" Response to OpenAI's Threat

https://www.wsj.com/tech/ai/apples-thermonuclear-response-to-the-openai-threat-8d51c814
2•mful•5m ago•0 comments

Tacit Knowledge

https://en.wikipedia.org/wiki/Tacit_knowledge
2•chistev•5m ago•0 comments

Show HN: Let your coding agent iterate by seeing the browser

https://github.com/puffinsoft/peek-cli
5•G3819•8m ago•0 comments

Quintile – keyboard N×M grid tiling for macOS

https://github.com/stefanopineda/quintile
2•stefanopineda•9m ago•0 comments

Universal Learning of Nonlinear Dynamics

https://arxiv.org/abs/2508.11990
2•E-Reverance•10m ago•0 comments

Collections: How to Polis, 101, Part I: Component Parts

https://acoup.blog/2023/03/10/collections-how-to-polis-101-part-i-component-parts/
2•vinnyglennon•11m ago•0 comments

Matthew Effect

https://en.wikipedia.org/wiki/Matthew_effect
3•chistev•11m ago•0 comments

Nuts News

https://news.nuts.services/
2•kordlessagain•20m ago•0 comments

Australia Tops Claude Usage

https://www.forbes.com.au/news/innovation/australia-is-the-worlds-biggest-claude-user-now-anthrop...
2•ishanz•26m ago•0 comments

AI's Biggest Unlock Isn't Productivity. It's Access to Expertise

https://diviv.substack.com/p/ais-biggest-unlock-isnt-productivity
2•divi_vijay•27m ago•0 comments

Mushroom trip: a mycologist's tour of the Tarkine

https://www.theguardian.com/science/ng-interactive/2026/jul/13/mushroom-trip-a-mycologists-tour-o...
2•Anon84•27m ago•0 comments

Sam Altman and Elon Musk Argue over Who's Running the Bigger Scam

https://daringfireball.net/linked/2026/07/12/altman-musk
7•MaysonL•29m ago•0 comments

Quantum Mechanics May Not Need Imaginary Numbers After All

https://scitechdaily.com/quantum-mechanics-may-not-need-imaginary-numbers-after-all/
2•westurner•30m ago•0 comments

Billion Dollar PDFs

https://billiondollarpdf.com/
2•rafaepta•30m ago•0 comments

OneDev AI: Coding Agents as Teammates in Issues, Pull Requests, and CI

https://onedev.io/blogs/ai-teammates
3•timplant•32m ago•0 comments

Student's £30 device 'translates in real time'

https://www.bbc.com/news/articles/ced47540de2o
4•jethronethro•32m ago•0 comments

Circular Obstacle Pathfinding (2017)

https://redblobgames.github.io/circular-obstacle-pathfinding/
2•andsoitis•33m ago•0 comments

Deployment is All You Need: The case for deployment engineering

https://cephos.substack.com/p/deployment-is-all-you-need
3•ism-cep•39m ago•0 comments

Show HN: WA State Tolls tool that shows the best time to take it to save money

https://watolls.danielsada.tech/
2•dshacker•42m ago•0 comments

Micro-JavaScript: A pure Python JavaScript engine, inspired by MicroQuickJS

https://github.com/simonw/micro-javascript
2•nz•53m ago•0 comments

Rashidieh

https://en.wikipedia.org/wiki/Rashidieh
3•vinnyglennon•55m ago•0 comments

AI agent startup uses agent to lead 100M round

https://techcrunch.com/2026/07/09/an-ai-agent-startup-just-let-its-agent-run-its-100-million-fund...
3•noashavit•1h ago•0 comments

Lindsey Graham Dead at 71

https://www.economist.com/united-states/2026/07/12/lindsey-graham-represented-the-arc-of-his-party
6•andsoitis•1h ago•1 comments

Show HN: Hologram, photo management and culling built with Tauri

https://github.com/ThatXliner/Hologram
2•thatxliner•1h ago•0 comments

2028 Could Bring the Most Mind-Bendingly Expensive Apple Product of All Time

https://gizmodo.com/2028-could-bring-the-most-mind-bendingly-expensive-apple-product-of-all-time-...
4•megamike•1h ago•2 comments

The cost of AI-assisted development: cognitive fatigue

https://warpedvisions.org/blog/2025/hitting-the-wall-at-ai-speed/
3•winter_blue•1h ago•0 comments

How to Get What You Want

https://andys.blog/how-to-get-what-you-want/
10•andytratt•1h ago•0 comments

Amicro: Micro-Transitions Library

https://amicro.vercel.app/
2•handfuloflight•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.