frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Geely's AI fast charging 'heals' EV batteries for 20% more cycle life

https://electrek.co/2026/09/25/geely-ai-fast-charging-heals-ev-batteries-pulse-restoration/
1•MilnerRoute•3m ago•0 comments

Marginalia Search

https://marginalia-search.com/
1•thunderbong•4m ago•0 comments

Utilizing Enzymes to Help Treat Tuberculosis

https://www.caltech.edu/about/news/utilizing-enzymes-to-help-treat-tuberculosis
1•gmays•12m ago•0 comments

Sousveillance

https://en.wikipedia.org/wiki/Sousveillance
1•xeonmc•13m ago•0 comments

Agentic Hacker News

https://hackernews-agentic.pages.dev/
2•measurablefunc•16m ago•0 comments

Why Red Hat Dropped Btrfs and Standardized on XFS in RHEL

https://pbxscience.com/why-red-hat-dropped-btrfs-and-standardized-on-xfs-in-rhel/
2•cromka•23m ago•1 comments

I woke up to see 580 CVE's in 16 deployments

https://farshid.co.uk/entry/i_woke_up_to_see_580_cve_s_in_16_deployments
2•rodmena•26m ago•0 comments

Screw Is Needed for Missiles and Planes. Buying One Can Take Years

https://www.nytimes.com/2026/09/26/business/ball-screws-military-production.html
1•jonah•31m ago•1 comments

What do you do now as a software engineer?

2•fawazali•32m ago•2 comments

Fast poker hand evaluation via hardware synthesis and bitslicing

https://roderickgreen.com/posts/fast-poker-hand-eval/
1•rgreen•33m ago•1 comments

Credence – Jev-style typed decisions from a local GGUF model

https://github.com/bulyaki/Credence
1•naughtiusmax•34m ago•0 comments

The history of Big Tech (it's darker that you think)

https://www.youtube.com/watch?v=lLHl1_Sz7A8
1•louwrentius•37m ago•0 comments

Practical lessons on building software with LLMs and automated governance

https://banes-lab.com/
2•jay-baleine•39m ago•0 comments

ShinyHunters hackers say they stole psychiatric and medical records of FBI staff

https://www.reuters.com/world/shinyhunters-hackers-say-they-stole-psychiatric-medical-records-fbi...
1•wyclif•41m ago•0 comments

"can't a guy walk down the street anymore without being harassed by AI" [video]

https://bsky.app/profile/cabel.panic.com/post/3mwgo5kml3r2z
3•LeoPanthera•41m ago•0 comments

Show HN: Detailed Guide to Agent Memory

https://www.cognee.ai/agent-memory
2•vasa_•49m ago•0 comments

What reversing, modernising old games tells us about the economic impact of AI

https://this.os.isfine.org/blog/posts/what-reverse-engineering-and-modernising-an-old-war-game-te...
1•keeda•50m ago•1 comments

344,799 Bible cross-references

https://trekhleb.dev/bible-cross-references/
1•trekhleb•59m ago•0 comments

Universe, Drawn in ASCII

https://gcdatlas.vercel.app/
2•abetusk•1h ago•1 comments

First ever 3D animation (40 year old 3D computer graphics Pixar 1972)

https://www.youtube.com/watch?v=T5seU-5U0ms
3•nmstoker•1h ago•0 comments

Things You Notice Rewatching Ed, Edd N Eddy as an Adult

https://noxluneworld.com/darkest-cartoon-network-episodes/
2•makic•1h ago•0 comments

If Frank Lloyd Wright's Falling Water Was a Tree House (2012)

https://weburbanist.com/2012/03/17/if-wrights-falling-water-were-a-tree-house/
2•WarOnPrivacy•1h ago•1 comments

Top AI companies probing security incidents

https://www.axios.com/2026/09/26/openai-anthropic-thousands-ai-security-incidents
4•Balgair•1h ago•0 comments

react-html-3.2

https://jkosoy.github.io/react-html-3.2/
1•jkosoy•1h ago•2 comments

Laser Weapons Will Be Deployed at Cape Canaveral Spaceport to Take Down Drones

https://www.twz.com/news-features/space-force-getting-lasers-to-kill-drones-over-cape-canaveral-s...
2•cisc•1h ago•0 comments

Interpolating Between Neural Networks

https://flx.ai/2026/interpolating-between-neural-networks
1•flxai•1h ago•0 comments

Allegations of sexual harassment and rape at Bay Area AI party houses

https://www.kron4.com/news/technology-ai/report-details-allegations-of-wild-parties-sexual-harass...
7•lukewarm707•1h ago•0 comments

The Duo. No, the Other Duo

https://morrick.me/archives/10418
2•_Microft•1h ago•0 comments

Ask HN: Any books, list of papers, or articles to understand LLM's

1•forkbomb123•1h ago•0 comments

BubbleRumble: The new social for crypto by Jae Kwon

https://bubblerumble.net
2•arielhavila•1h ago•2 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.