frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MentalHealthBench

https://openai.com/index/introducing-mentalhealthbench/
1•gmays•43s ago•0 comments

CTNicholas Multiplayer-Coding-Agents

https://github.com/CTNicholas/multiplayer-coding-agents
1•handfuloflight•1m ago•0 comments

Special police to investigate threats to democracy, Swedish election fraud

https://kvartal.se/jesperandersson/artiklar/misstankt-valbrott-i-malmo-flyttar-till-specialenhet/...
1•try-working•2m ago•1 comments

Launching FreeBSD/EC2 Desktop Amis

https://www.daemonology.net/blog/2026-09-24-Launching-FreeBSD-EC2-desktop-AMIs.html
1•cperciva•2m ago•0 comments

Turbocharging Your Python Workflow

https://medium.com/@therealcomtom/turbocharging-your-python-workflow-315dd52e14fe
1•comtom•3m ago•0 comments

Award-Winning French Author Accused of Using AI to Write Debut Novel

https://www.cbc.ca/news/canada/montreal/thelyson-orelien-ai-scandal-9.7355167
1•BiraIgnacio•3m ago•0 comments

Zuse: Open-Source Cloud Agents

https://github.com/swarajbachu/zuse
1•handfuloflight•5m ago•0 comments

Cal Newport: Here's What to Ask A.I. Leaders

https://www.nytimes.com/2026/09/24/opinion/congress-ai-sam-altman.html
1•johnny313•5m ago•0 comments

One API for Frontier Media Models

https://blog.comfy.org/p/introducing-comfy-router-one-api
1•gmays•9m ago•0 comments

Welcome to the Age of Listening Devices

https://finance.yahoo.com/technology/article/welcome-to-the-age-of-listening-devices-144845987.html
2•hn_acker•9m ago•1 comments

Interesting QA Career building book with interview tips

https://link.springer.com/book/10.1007/979-8-8688-2166-0
1•qaprof•9m ago•0 comments

Building an Ultra-High Throughput AI-SQL Engine

https://fsdatalab.github.io/blog/introducing-quail/
1•matt_d•10m ago•0 comments

Goldman reaped more than $200M in fees from hedge fund Situational Awareness

https://www.ft.com/content/bdec4129-ccac-4149-aa53-90ddd50cb925
1•JumpCrisscross•10m ago•0 comments

Bushmen

https://mapwriting.substack.com/p/why-i-cant-stop-thinking-about-the
1•chandlerh•11m ago•0 comments

Mini Test Planning: How to add rigor without slowing down QA

https://www.qawithahmed.com/mini-test-planning-how-to-add-rigor-without-slowing-down-qa-2/
1•qaprof•11m ago•0 comments

Internet domain subprocess.run redirects to the Python docs for subprocess.run()

1•theanonymousone•12m ago•0 comments

Show HN: Sprocket – A bioinformatics workflow engine in Rust, from laptop to HPC

https://sprocket.bio/
1•clmcleod•13m ago•0 comments

DraftKings Is Using AI to Supercharge the Harms of Online Behavioral Advertising

https://www.eff.org/deeplinks/2026/09/draftkings-using-ai-supercharge-harms-online-behavioral-adv...
3•hn_acker•14m ago•0 comments

A24, Sony, or the New York Times May Soon Swallow Letterboxd

https://gizmodo.com/a24-sony-or-the-new-york-times-may-soon-swallow-letterboxd-2000817016
1•rdmuser•15m ago•0 comments

Lessons for Software Developers from Heinlein (2009)

https://www.computerworld.com/article/1449456/7-lessons-for-software-developers-from-heinlein.html
1•mooreds•15m ago•0 comments

How to Own a 3-Year Technical Roadmap (and Get the Time to Execute It)

https://vikmodi.medium.com/how-to-own-a-3-year-technical-roadmap-and-get-the-time-to-execute-it-9...
1•mooreds•16m ago•0 comments

Blondin's Assignment America (1997)

https://www.blondins.com/
1•mooreds•17m ago•0 comments

The Antitrust Problem with Meta's Settlement with the States

https://www.techdirt.com/2026/09/24/the-antitrust-problem-with-metas-settlement-with-the-states/
3•hn_acker•17m ago•0 comments

The model observes, a table decides: keeping an LLM out of pet triage

https://tailstory-app.com/en/blog/model-observes-table-decides
1•Mohsentr•18m ago•0 comments

It's called Luxir, it's open source from Yonik Seeley

https://yonik.com/blog/introducing-luxir/
1•nlllrt90•18m ago•1 comments

BizEmpire – Real-time multiplayer economic SIM with double-entry accounting

https://bizempire.app/
1•gurbhagat•20m ago•0 comments

Intel Total Storage Encryption on Panther Lake [video]

https://www.youtube.com/watch?v=owRK0Dm6Uh4
1•pregnenolone•23m ago•0 comments

Crisis of the Late Middle Ages

https://en.wikipedia.org/wiki/Crisis_of_the_late_Middle_Ages
1•haunter•25m ago•0 comments

Ask HN: Does a startup need both founder and company X accounts?

2•OnionLayers•27m ago•0 comments

Ask HN: Do you cuss at your agent?

1•ak39•28m 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.