frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: WMTrace – See how LLM text watermarks work (Anthropic just adopted one)

https://github.com/gtesei/llm-watermark
1•isacco•4m ago•0 comments

Someone is publishing a trove of zero-days

https://0day-rubbish.com/
1•dclavijo•6m ago•0 comments

OpenAI ditches Recall-style screenshot surveillance for friendly keylogging

https://www.theregister.com/ai-and-ml/2026/08/14/openai-ditches-recall-style-screenshot-surveilla...
1•sbulaev•12m ago•0 comments

An Infamous Math Problem Closer to Being Solved by Encouraging AI

https://www.wsj.com/tech/ai/ai-math-riemann-hypothesis-anthropic-openai-22f98a87
1•RyanShook•13m ago•0 comments

What I Learned from Playing "Spelling Bee"

https://www.mooreds.com/wordpress/archives/3750
1•mooreds•13m ago•0 comments

Show HN: Nakso – Your Desktop Sketchpad

https://github.com/niklauslee/nakso
1•niklauslee•14m ago•0 comments

A coalescent model reveals deep ancestral structure shared by all modern humans

https://www.nature.com/articles/s41588-025-02117-1
1•lawrenceyan•14m ago•0 comments

Federal agents surveilled Minnesota unions in hunt for Antifa conspiracy case

https://www.startribune.com/federal-agents-led-by-jan-6-participant-surveilled-minnesota-unions-i...
1•hn_acker•30m ago•1 comments

Thank you to the people building these AI tools

1•bgilly•32m ago•0 comments

Yester World Asking for Help from Google De-Monitization and AI [video]

https://www.youtube.com/watch?v=z9QiBMdvgRE
2•InTheArena•36m ago•2 comments

AI productivity gains drive net CO₂ increase in global energy–economy model

https://www.nature.com/articles/s44168-026-00411-0
3•littlexsparkee•37m ago•0 comments

Spaceship Service Outage Update

https://www.spaceship.com/blog/spaceship-service-outage-update/
2•anonu•48m ago•0 comments

Haitians in Springfield are required to report to ICE and wear ankle monitors

https://ohiocapitaljournal.com/2026/08/14/haitians-in-springfield-are-required-to-report-to-ohios...
13•hn_acker•53m ago•3 comments

Youngest Black professor at Cambridge who faced plagiarism claims is found dead

https://apnews.com/article/jason-arday-cambridge-professor-london-dead-reports-9036e2b405f5849415...
8•petethomas•1h ago•0 comments

Magnitude 7.7 Earthquake – 68 km NNW of Ende, Indonesia

https://earthquake.usgs.gov/earthquakes/eventpage/us6000tkt2/executive
51•Bender•1h ago•8 comments

A New Alzheimer's Therapy – Or Is It?

https://www.science.org/content/blog-post/new-alzheimer-s-therapy-or-it
3•maxall4•1h ago•1 comments

Yes, Code Review Is Still Necessary

https://mattmccormick.ca/yes-code-review-is-still-necessary/
3•mattm•1h ago•1 comments

Nvidia Downsizes Plans for $250B Guarantee of OpenAI Data Center

https://www.wsj.com/tech/nvidia-downsizes-plans-for-250-billion-guarantee-of-openai-data-center-b...
3•JumpCrisscross•1h ago•0 comments

Deliverance from 27,000 feet (2017)

https://www.nytimes.com/interactive/2017/12/18/sports/everest-deaths.html
2•ValentineC•1h ago•0 comments

Ramabana – Rama's Arrow

https://github.com/vedicreader/ramabana
2•karthikrajgopal•1h ago•0 comments

Nvidia discloses $21B stake in SpaceX

https://www.ft.com/content/6f66a76d-0b2d-4301-886c-87ecc046731b
9•JumpCrisscross•1h ago•2 comments

Show HN: Dictata – Local Whisper dictation with LLM cleanup

https://github.com/AntoineChatry/Dictata
2•AntoineC_•1h ago•0 comments

Can LLMs work in the wet lab?

https://www.benchling.com/blog/can-llms-work-in-the-wet-lab
2•geneticdrifts•1h ago•0 comments

The Ploopy A+ Trackball Is Here

https://blog.ploopy.co/the-aplus-is-finally-here-499
25•big_toast•1h ago•10 comments

NSA and IETF, Part 9

https://blog.cr.yp.to/20260814-update.html
11•libroot•1h ago•0 comments

Clawtopus

https://clawtopus.com
2•gajus•1h ago•1 comments

Show HN: Nikon F100 Film Camera Repair Notes

https://github.com/enthdegree/f100
3•enthdegree•1h ago•1 comments

The Commons – experiments in inherited knowledge and errors between LLM agents

https://github.com/coladul/the_commons/tree/main
2•coladul•1h ago•0 comments

Annual Summary Report of Coral Reef Condition 2025/26

https://www.aims.gov.au/monitoring-great-barrier-reef/gbr-condition-summary-2025-26
4•thunderbong•1h ago•0 comments

ShieldFont: Bludgeoning AI Scrapers That Disrespect Robots.txt

https://hackaday.com/2026/08/14/shieldfont-bludgeoning-ai-scrapers-that-disrespect-robots-txt/
2•anonymousiam•1h 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.