frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ERPNext's Document Follow feature exposed unauthorized data

https://robinroy.xyz/blog/frappe-document-follow-vulnerability/
2•robinroy03•2m ago•1 comments

Brave DevTools MCP – Control Brave from Claude, Codex, and Cursor

https://github.com/triuzzi/brave-devtools-mcp
2•triuzzi•3m ago•0 comments

Congressional Letter to Sam Altman demanding HuggingFace incident transparency [pdf]

https://casar.house.gov/sites/evo-subsites/casar.house.gov/files/evo-media-document/oversight-let...
2•reasonableklout•5m ago•0 comments

The global fertility freefall: trends, drivers and uncertainties

https://www.sciencedirect.com/science/article/abs/pii/S147264832600372X
1•barry-cotter•6m ago•1 comments

Mistral to host Z.ai's GLM-5.2

https://mistral.ai/news/regional-inference-open-models-new-compute/
1•true_JhumanJ•8m ago•1 comments

How do you decide that an agent's output is good enough to stop iterating?

1•mathieu_aithos•12m ago•0 comments

JuliaCon live: Simon Peyton Jones keynote

https://www.youtube.com/watch?v=MQeIerDsReA
1•ViralBShah•12m ago•0 comments

Building an AI music tool taught me the model wasn't the hard part

https://www.musegen.ai
2•Xuuu•16m ago•0 comments

Kryptos: Encrypt messages right inside any messenging app

https://github.com/swisslite/Kryptos
1•hamburgererror•16m ago•1 comments

I solved 823 LeetCode problems by age 18. Here is why LeetCode is broken

1•dima853•18m ago•0 comments

The Taming of the Screw (2000)

https://americanhistory.si.edu/subs/anglesdangles/taming.html
1•downbad_•18m ago•0 comments

European transmission system operators prepare for solar eclipse

https://www.pv-magazine.com/2026/08/10/european-transmission-system-operators-prepare-for-solar-e...
3•leonidasrup•25m ago•0 comments

Large-scale study finds no link between crime and unauthorized immigration

https://phys.org/news/2026-08-large-scale-link-crime-unauthorized.html
2•robtherobber•26m ago•1 comments

The shock revelation that light bulbs are wrecking your metabolism

https://www.newscientist.com/article/2582914-the-shock-revelation-that-light-bulbs-are-wrecking-y...
1•jdnier•26m ago•1 comments

A Politician Built an AI Version of His Rival. It Didn't Go as Planned

https://ai-updates.net/a-politician-built-an-ai-version-of-his-rival-it-didnt-go-as-planned/
1•ashurandi•27m ago•1 comments

Thesis for AI Recursion

1•abaraxadac•28m ago•1 comments

Why Does Claude.md Keep Growing? Catastrophic Remembering in Agentic Coding

https://arxiv.org/abs/2608.11095
2•sbulaev•29m ago•0 comments

China bypasses shipping chokepoints with 'Ice Silk Road' through Arctic

https://www.ft.com/content/4456f475-f2c8-4cb7-8312-0c47c5f781b8
1•e12e•32m ago•1 comments

AI and quantum computers will be frenemies

https://www.economist.com/science-and-technology/2026/07/29/ai-and-quantum-computers-will-be-fren...
1•rbanffy•34m ago•0 comments

Chrome adopts what may be the best protection yet against account takeovers

https://arstechnica.com/security/2026/08/chrome-adopts-what-may-be-the-best-protection-yet-agains...
2•joozio•34m ago•0 comments

Show HN: Execution Intelligence AI Accelerator

https://geekyants.com/ai-accelerator/execution-intelligence-ai-signal-bot
2•vanessa1211•35m ago•0 comments

Industry Brief: Private 5G for Fixed Wireless Access FWA [pdf]

https://framerusercontent.com/assets/0D2QnYUrf5XYlE1yfpUz3YKTw.pdf
1•y2so•36m ago•0 comments

500'000€ Prize for Compressing Human Knowledge

http://prize.hutter1.net/
1•cosmojg•38m ago•0 comments

What Your Manager Is Thinking When You Complain

https://adlerhsieh.com/p/what-your-manager-is-thinking-when-you-complain
1•fagnerbrack•41m ago•0 comments

Speak in the affirmative: "Do this" versus "Don't do that"

https://newsletter.weskao.com/p/speak-in-the-affirmative-do-this
4•fagnerbrack•41m ago•0 comments

Ask HN: Developer looking for freelance or contract work(400 USD/week)

2•need_a_work23•42m ago•0 comments

AI agent hacks gym to get its user a spot in pilates class

https://www.bbc.com/news/articles/cn0nww2qlp7o
2•ashurandi•43m ago•0 comments

Detailed animation of today's solar eclipse trajectory

https://dojo.amcharts.com/solar-eclipses/
2•trakkstar•46m ago•0 comments

Quibble

https://en.wikipedia.org/wiki/Quibble_(plot_device)
1•soupspaces•48m ago•0 comments

Reuters Climate Monitor

https://www.reuters.com/graphics/CLIMATE-AUTOMATED/MONITOR/akpeykqqapr/
5•T-A•51m 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.