frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

USA launches "Gold Eagle" clearinghouse for cyber defense

https://www.heise.de/en/news/USA-launches-Gold-Eagle-clearinghouse-for-cyber-defense-11365797.html
1•qwertox•32s ago•0 comments

Inkling: A New Open-Weight 975B Moe with a Few Surprises

https://sebastianraschka.com/blog/2026/inkling-architecture-benchmark-notes.html
1•ModelForge•47s ago•0 comments

OpenAI's first gadget is the $230 Codex Micro macropad

https://thenewstack.io/openai-codex-micro-macropad/
1•gmays•1m ago•0 comments

Show HN: Free 30-second score of your website's traffic-to-sales path

https://www.signalroute.live/tools/traffic-score
1•DeniCJ•1m ago•0 comments

Finding the Last Bottlenecks in json2xml with Flamegraphs

https://vinitkumar.me/json2xml-flamegraph-optimization/
1•Brajeshwar•2m ago•0 comments

Ask HN: Assistive Tech Ideas for Dementia

1•thanksd•2m ago•0 comments

Anthropic runs like Wile E. Coyote into the brick wall of consciousness research

https://www.theintrinsicperspective.com/p/anthropic-runs-like-wile-e-coyote
1•surprisetalk•2m ago•0 comments

Inventing Eliza: The First Chatbot's Hidden Code

https://spectrum.ieee.org/eliza-chatbot-source-code
1•rbanffy•3m ago•0 comments

How to publish to PyPI using GitHub Actions securely

https://snarky.ca/how-to-publish-to-pypi-using-github-actions-securely/
1•rbanffy•3m ago•0 comments

AgentReady – MCP server that makes any docs site queryable by AI agents

https://www.agentready.it.com
1•AshHackerNews•3m ago•0 comments

TSMC plans further $100B US investment to feed AI demand

https://asia.nikkei.com/business/tech/semiconductors/tsmc-plans-further-100bn-us-investment-to-fe...
1•cwwc•6m ago•1 comments

Memories are an anti-pattern for Claude Code

https://keyboardsdown.com/posts/02-memories-are-an-anti-pattern/
1•yammosk•6m ago•0 comments

Why Am I Left-Handed?

https://www.quantamagazine.org/why-am-i-left-handed-20260713/
1•thm•7m ago•0 comments

Show HN: Fireplot – I built a take-home pay map to see if I should leave Belgium

https://fireplot.app
2•lotsoworks•8m ago•0 comments

GitHub banned my account after my projects suddenly spiked on Reddit

2•lpierge•8m ago•1 comments

Beat the Couch

https://beatthecouch.com/
1•msalsas•10m ago•1 comments

We built a customer support agent that learns

https://vectorize.io/blog/how-we-built-a-customer-support-agent-that-actually-learns-with-hindsig...
2•cbartholomew•11m ago•1 comments

Greenland is losing so much ice that its gravity is getting weaker: researcher

https://www.cbc.ca/radio/thecurrent/greenland-melting-ice-1.7089298
2•pseudolus•12m ago•0 comments

Show HN: AI Law Tracker – one audited API for US, EU and global AI law

https://ai-law-tracker.com
3•asm28208•12m ago•0 comments

Show HN: SaaS isn't dead until we all stop using dbeaver

https://getdpt.com/
1•realdjpaulyd•13m ago•0 comments

No Shark Is Safe: Shark Vacuums Are Vulnerable to RCE

https://tokay0.com/posts/millions-of-shark-vacuums-vulnerable-to-rce.html
1•dfc•14m ago•0 comments

Kimi K3 released on web and app

https://old.reddit.com/r/LocalLLaMA/comments/1uy3a0q/kimi_k3_released_on_web_and_app/
3•cmrdporcupine•15m ago•1 comments

8% of images on Discord are scams: Blocking Mr. Beast scams

https://abigail.sh/blog/detecting-and-stopping-mr-beast-scams-discord
4•abigailphoebe•16m ago•1 comments

Interactive map predicts climate-driven farm decline by end of century

https://www.euronews.com/2026/07/16/interactive-map-predicts-climate-driven-farm-decline-by-end-o...
2•mariuz•17m ago•0 comments

ReactBench – evaluation for coding agents on realistic React work

https://www.reactbench.com/
2•nreece•17m ago•0 comments

Micro Web-Framework for COBOL

https://github.com/azac/cobol-on-wheelchair
2•zdkaster•20m ago•0 comments

Celestrak adds catalog digit, fixes Y2K bug

https://www.celestrak.org/satcat/
2•1970-01-01•20m ago•0 comments

Show HN: Cortier – your AI negotiates dinner plans with your friends' AIs

https://cortier.ai/
2•CortierAI•21m ago•0 comments

How to spend 15 years perfecting a product

https://refactoring.guru/email/gbb-rollout2
6•neochief•22m ago•0 comments

Show HN: Companion eBook for The Odyssey audiobook narrated by AI Michael Caine

https://github.com/stoilms/odyssey-ebook-michael-caine-elevenlabs-narration
2•stoilms•23m 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.