frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Flawed Routers Flood University of Wisconsin Internet Time Server (2003)

https://pages.cs.wisc.edu/~plonka/netgear-sntp/
1•walrus01•2m ago•0 comments

Show HN: Vehla – the AI command center for macOS

https://vehla.app/
1•ibuhs69•6m ago•0 comments

Godaddy's homepage is currently throwing a 403

https://www.godaddy.com/
1•otherayden•7m ago•1 comments

Apple's Always-Listening Tech: A Nightmare of Constant Surveillance

https://this.weekinsecurity.com/watch-what-you-say-apple-opens-the-door-to-a-nightmare-world-of-a...
2•birdculture•9m ago•0 comments

Agents of Alienation

https://www.jaronlanier.com/agentalien.html
1•andsoitis•10m ago•0 comments

I Built 15 SLOs for an AI Agent. Here's What OpenTelemetry Could Measure

https://medium.com/data-science-collective/i-built-15-slos-for-an-ai-agent-heres-what-opentelemet...
1•tanmaydesh5189•11m ago•0 comments

Why optimistic science fiction is still possible and important

https://fasterplease.substack.com/p/why-optimistic-science-fiction-is
1•andsoitis•11m ago•0 comments

Learn Bash

https://learnbash.vercel.app/
1•agilek•12m ago•0 comments

The LattePanda Sigma

https://taoofmac.com/space/reviews/2026/09/13/1700
1•rcarmo•12m ago•0 comments

Elon Musk's secretive backer builds $40B SpaceX stake

https://www.ft.com/content/c765f312-e698-4d31-bf71-f64a656ad6f4
3•geoffbp•12m ago•1 comments

Show HN: ClientCoded – QA Platform for AI Agents

https://clientcoded.com/environments
1•travishcronin•13m ago•0 comments

Contradiction (1937)

https://redsails.org/on-contradiction/
1•andsoitis•14m ago•0 comments

The Distribution of Users' Computer Skills: Worse Than You Think

https://www.nngroup.com/articles/computer-skill-levels/
1•Spide_r•15m ago•0 comments

GBA Host (PICO-8 to GBA)

https://github.com/natureglass/real8-explorer/tree/main/src/platforms/gba
1•giancarlostoro•16m ago•0 comments

Automattic confirms Mullenweg has returned as CEO after attempted board ouster

https://techcrunch.com/2026/09/12/automattic-confirms-mullenweg-has-returned-as-ceo-after-attempt...
1•ilamont•16m ago•0 comments

Orchflows: You only need 2 skills to make infinitely complex agents

https://github.com/DanMcInerney/orchflows
1•DanMcInerney•17m ago•0 comments

Send Screenshots to Your Clipboard: My #1 macOS Quality of Life Improvement

https://leonaves.com/blog/screenshots-to-clipboard/
2•leonaves•18m ago•0 comments

Why OpenHAB?

https://www.openhab.org/
3•Bluestein•21m ago•1 comments

Pretraining progress is mostly coming from data

https://www.dwarkesh.com/p/pretraining-progress-is-mostly-data
1•gmays•21m ago•0 comments

Autonomy Preservation

https://simonsocolow.com/blog/keeping-autonomy-when-using-ai/
1•ssocolow•27m ago•0 comments

Mark Zuckerberg: "Cambridge Analytica" (2017)

https://twitter.com/TechEmails/status/2099214399840059428
41•mfiguiere•27m ago•2 comments

France announces <€1B in emergency farm support after 2026 summer

https://www.thescottishfarmer.co.uk/news/26534316.france-unveils-eur1-1bn-aid-package-drought-hit...
1•nephihaha•28m ago•2 comments

Predicting and Altering Human Opinions

https://hunchfox.com/blog/predicting-and-changing-human-opinions.html
2•sahil_chaudhary•29m ago•0 comments

Solve the Loop: Attractor Models for Language and Reasoning

https://arxiv.org/abs/2605.12466
1•jerlendds•30m ago•1 comments

A computational constitution to stop LLM agents from bricking servers

https://github.com/misqe/zero-trust-llm
2•misqe•30m ago•0 comments

A Layman's Guide to Linux Distros

https://petrisha.club/a-laymans-guide-to-linux-distros
1•lylo•31m ago•0 comments

Building projects in the AI era for Software Engineers

https://hsnice16.medium.com/building-projects-in-the-ai-era-for-software-engineers-72f3ddcd2a40
1•hsnice16•31m ago•0 comments

Object Storage Costs Compared

https://objectcost.com
1•montyanderson•32m ago•0 comments

Show HN: Credit against tokenised stocks for agents. punish us please

https://vaaya.ai/credit-against-securities-for-agents
2•nakulkelkar•32m ago•0 comments

So software is mostly dead and hardware it is

https://twitter.com/levelsio/status/2099098086035382334
4•acopetkovic•33m 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.