frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

New York City Bans AI from Elementary Schools

https://gizmodo.com/new-york-city-bans-ai-from-elementary-schools-2000806172
1•the-mitr•31s ago•0 comments

Quasi-Bialgebra

https://en.wikipedia.org/wiki/Quasi-bialgebra
1•blizow•5m ago•0 comments

Trump's Lake Ontario push forces tech to pick a side

https://www.politico.com/news/2026/09/02/tech-lake-ontario-01062631
1•JumpCrisscross•7m ago•2 comments

Show HN: Free app for offline image search and smart file renaming

https://ringlochid.me/imagesage/index.html
1•ringlochid•12m ago•0 comments

Ask HN: A tool to share my data

1•roromainmain•18m ago•0 comments

Update on RISC-V Standards and Adoption at Hot Chips 2026

https://www.servethehome.com/update-on-risc-v-standards-and-adoption-at-hot-chips-2026/
1•lumpa•18m ago•0 comments

PromptSonar – Execution path analyzer for AI agents and MCP servers

https://github.com/meghal86/promptsonar
1•meghal86•20m ago•0 comments

Show HN: Vanity Domain Generator

https://vanitydomain.net
2•i3oi3•20m ago•1 comments

Who Survived the Great Dying – and Why, from PBS

https://www.pbs.org/video/who-survived-the-great-dying-and-why-life-and-death-on-pangea-pzs3ev/
1•blizow•21m ago•0 comments

SF's Tech Right Debates the Ideal Dictator

https://bayareacurrent.com/sfs-tech-caesar/
3•hliyan•24m ago•3 comments

What do you think about elastic workload?

https://xflops.io/blog/flame-v0-6/
1•k82cn•25m ago•0 comments

Dutch central bank moves 86 tonnes of gold from US citing 'geopolitical unrest'

https://www.theguardian.com/world/2026/sep/03/netherlands-gold-dutch-central-bank-uk-us-and-canad...
7•Jimmc414•26m ago•1 comments

Show HN: Review-to-rule – Turn accepted review feedback into durable repo rules

https://github.com/vamgan/review-to-rule
1•vamgan•33m ago•0 comments

The Loose: The Coming of Useless Agents

https://twitter.com/deanwball/status/2094794694572015854
1•jjwiseman•35m ago•0 comments

Toxic haze from Indonesia spreads to Malaysia and Philippines as wildfires rage

https://www.bbc.com/news/live/cqevw9y34y34t
1•blondie9x•35m ago•0 comments

We analyzed the code published by 29 frontier AI labs. Here's the data

https://opsera.ai/blog/frontier-ai-software-readiness-benchmark/
1•nassirkhan•37m ago•0 comments

Phased Behaviour in Wrapture

https://grahamdumpleton.me/posts/2026/09/phased-behaviour-in-wrapture/
1•lumpa•37m ago•0 comments

The mission to reach Nepal's underground 'Goldilocks zones'

https://www.abc.net.au/news/2026-09-03/nepal-hydroelectric-tunnels-rescue-interactive/107101108
2•CHB0403085482•37m ago•0 comments

Literate Programming with LLMs? – A Study on Rosetta Code and CodeNet

https://research.chalmers.se/en/publication/549267
1•gurjeet•42m ago•0 comments

Load-Bearing People

https://mikefisher.substack.com/p/load-bearing-people
2•Garbage•47m ago•0 comments

Frontier Act – Federal oversight of the development of frontier AI

https://www.congress.gov/bill/119th-congress/house-bill/9925/text
3•cco•54m ago•1 comments

Show HN: Indicate: Transliterate Indic Languages with PyTorch and LLMs

https://github.com/in-rolls/indicate
1•neehao•57m ago•0 comments

Reactor Live

https://live.reactor.inc/
1•willemhelmet•59m ago•0 comments

An Inflection Point for Prediction Markets

https://www.theatlantic.com/newsletters/2026/09/kalshi-polymarket-insider-trading-santos/688505/
1•paulpauper•1h ago•0 comments

How to Evaluate Diet Gurus

https://www.exfatloss.com/p/how-to-evaluate-diet-gurus
2•paulpauper•1h ago•0 comments

Rootnet: Exponentially Accelerate Advancing the Frontier

https://twitter.com/onrootnet/status/2095349077542342858
1•koopuluri•1h ago•0 comments

Wk. 6 of Vibecoding an MMO

https://eldermyr.com/
10•josiahturnq•1h ago•9 comments

Once you understand how to write a program get someone else to write it

https://engineering.yale.edu/academic-study/departments/computer-science/about/epigrams-programming
3•teleforce•1h ago•0 comments

To opt out of using your X data for Grok training

https://twitter.com/grok/status/2007729382429761905
1•andsoitis•1h ago•0 comments

Late-life semaglutide slows ageing and extends lifespan in female mice

https://www.nature.com/articles/s41586-026-10940-7
1•sbulaev•1h ago•1 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.