frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Breakout List

https://breakoutlist.com/
1•cjbarber•23s ago•1 comments

Show HN: Pixel Agents – A pixel-art mission control for your Claude Code agents

https://mateovalle.github.io/pixel-agents/
1•mateovalle•26s ago•0 comments

A Trump-backed crypto bill just suffered a bruising defeat in the Senate

https://www.npr.org/2026/09/15/nx-s1-5968711/clarity-act-crypto-senate-vote
1•paulpauper•44s ago•0 comments

Oil Prices Could Hit Highest Levels in Months After Saudi Pipeline Attacks

https://www.nytimes.com/2026/09/16/business/saudi-pipeline-houthi-attacks.html
1•ViktorRay•2m ago•0 comments

The first (public) System One Model; Jev gives AI the properties of code

https://typesafe.ai/
1•Anon84•5m ago•0 comments

Iran strikes on Amazon data centers caused permanent loss of customer data

https://arstechnica.com/gadgets/2026/09/iran-strikes-on-amazon-data-centers-caused-permanent-loss...
3•rbanffy•6m ago•1 comments

Amazon bumps minimum starting pay to $20/hour, adds new discount for employees

https://thehill.com/business/6092725-amazon-increases-minimum-starting-pay-adds-new-discount-for-...
2•ilamont•7m ago•0 comments

Google confirms Pixel phones exploited in 'targeted' modem based attack

https://9to5google.com/2026/09/16/google-pixel-targeted-zero-day-modem-attack/
1•fork-bomber•7m ago•0 comments

AI Compilers Are Not Just Compilers for AI

https://aicompilers.github.io/2026/09/06/ai-compilers-are-not-just-compilers-for-ai.html
1•matt_d•8m ago•0 comments

History of the BBC TV Idents

https://www.bbc.com/historyofthebbc/research/bbc-idents/global-ambition
1•nickt•9m ago•0 comments

A mouse whose brain cortex is made up of human cells

https://www.technologyreview.com/2026/09/16/1144210/meet-a-mouse-whose-brain-cortex-is-made-up-of...
1•joozio•11m ago•0 comments

Ask HN: AI Panic, you buying it?

1•elai-intelligen•11m ago•2 comments

The FBI Doubles Down on Easing 'Bestiality' Hiring Standards

https://www.wired.com/story/the-fbi-doubles-down-on-easing-bestiality-hiring-standards/
2•ferryth•12m ago•0 comments

Show HN: Smarter Shell History for Zsh

https://github.com/overflowy/zhist
1•overflowy•12m ago•0 comments

OSRS Wiki and RuneLite are under strain from low-effort AI development

https://oldschool.runescape.wiki/w/User:Cook_Me_Plox/OSRS_Wiki_and_RuneLite_are_increasingly_unde...
1•i2talics•13m ago•0 comments

CO3: Toward the Optimal FFI

https://mversic.github.io/co3/
1•mversic•14m ago•0 comments

Training Text-to-Image Models 3.6× Faster

https://www.linum.ai/field-notes/jit-ddt
4•schopra909•14m ago•0 comments

Gnome 51 Released with Improved Frame Scheduling, Many App Improvements

https://www.phoronix.com/news/GNOME-51-Released
1•tuhtah•14m ago•1 comments

We killed our in-app AI chat and made the agent a first-class user

https://sensefold.app/blog/agent-as-first-class-user
1•gomilesfd•15m ago•0 comments

Omarchy on Mac

https://github.com/omacom/omarchy-mac
1•popzxc•16m ago•0 comments

Whiteboard Defense

https://twitter.com/mitchellh/status/2100249348345057389
1•tosh•16m ago•0 comments

Show HN: Ivx/AI Chat, AI client that doesn't track you (with a better GUI imo)

https://ai.ivx.run/
1•0xcrypto•16m ago•0 comments

As Someone Who Has Written This Blog Post,

https://zachholman.com/posts/llm-writing
1•holman•17m ago•0 comments

Numerical Tours

https://www.numerical-tours.com/python/
1•efavdb•20m ago•0 comments

IPC Panic, a 4-call kernel panic in Apple XNU, up to macOS and iOS 26 included

https://seriot.ch/security/ipc_panic.html
2•beefburger•21m ago•0 comments

Inside the MIT Report on How AI Is Eroding Campus Culture

https://learningcurve.fm/episodes/inside-the-mit-report-on-how-ai-is-eroding-campus-culture/trans...
2•learningcurv•23m ago•1 comments

GitMir just released Vibe, it's like Claude on steroids

https://gitmir.com/products/vibe
2•venediktov•23m ago•0 comments

Mercury Books – Accounting Software Built into Your Bank Account

https://mercury.com/books
1•tortilla•23m ago•0 comments

Hacking a Xiaomi Mi Band 4 to Run Super Mario Bros

https://blog.qwertyforce.dev/posts/miband4_nes
1•qwertyforce•23m ago•0 comments

Fedora 45 beta drags the Linux console into the 21st century

https://www.theregister.com/software/2026/09/16/fedora-45-beta-drags-the-linux-console-into-the-2...
1•DemiGuru•24m 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.