frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: PolyClaude – Using math to pay less for Claude Code

https://github.com/ArmanJR/PolyClaude
1•armanj•5m ago•0 comments

Perfect Types with `SetHTML()`

https://frederikbraun.de/perfect-types-with-sethtml.html
1•todsacerdoti•6m ago•0 comments

Claude Code – Scheduled tasks (cron) added

https://code.claude.com/docs/en/scheduled-tasks
1•rob•7m ago•0 comments

After Iraq, Kuwait and UAE may be next to cut oil output on Iran crisis

https://www.reuters.com/business/energy/after-iraq-kuwait-uae-may-be-next-cut-oil-output-iran-cri...
2•ParentiSoundSys•9m ago•0 comments

Claude Code for 3D Printing

https://github.com/Patrick0shea/DDD
3•posky0•14m ago•0 comments

Show HN: Help] I run 4 AI-driven companies simultaneously from my terminal

https://github.com/NikitaDmitrieff/auto-co-meta
1•Ndmtrieff•16m ago•1 comments

Show HN: Search 10k paintings by describing them in plain English

https://vecstore.app
1•kencho•17m ago•1 comments

Building an Interactive Conference Badge with Tufty 2040: A Step-by-Step Guide

https://dnsmichi.com/2026/03/07/building-an-interactive-conference-badge-with-tufty-2040-a-step-b...
1•mooreds•17m ago•0 comments

Where is Charles Manson buried?

https://dangerousminds.net/history/battle-corpse-of-charles-manson/
1•Anon84•17m ago•0 comments

I Could Never Work for Anyone Else: A Wiseass Problem

https://harveysawikin.substack.com/p/i-could-never-work-for-anyone-else
1•RickJWagner•19m ago•0 comments

A Schools Chief So Charming That Los Angeles Overlooked His Red Flags

https://www.nytimes.com/2026/03/07/us/alberto-carvalho-lausd-scandals.html
1•bbertucc•20m ago•1 comments

Does Apple‘s M5 Max Really “Destroy” a 96-Core Threadripper?

https://slashdot.org/submission/17345398/does-apples-m5-max-really-destroy-a-96-core-threadripper
20•dkechag•21m ago•3 comments

Bone (B-1 bomber) deployed to the UK

https://www.theguardian.com/world/2026/mar/07/us-bomber-lands-in-uk-after-warning-of-surge-in-str...
1•zabzonk•22m ago•0 comments

Security vulnerabilities I found in high school

https://blog.raed.dev/posts/hacking-stories-from-high-school-days/
1•Raed667•25m ago•0 comments

Microscopes Can See Video on a LaserDisc

https://www.youtube.com/watch?v=qZuR-772cks
2•zdw•26m ago•0 comments

Debunking of inaccurate and misinformed claims being made about GrapheneOS

https://twitter.com/GrapheneOS/status/2030402535463506069
3•hnburnsy•27m ago•0 comments

Show HN: Agentpng – turn agent sessions into shareable images

https://www.agentpng.dev/
2•siegers•28m ago•0 comments

Show HN: Open-source tool turns a site into an MCP by recording the browser

https://github.com/danielthedm/browse2mcp
1•ethantheswe•29m ago•0 comments

Modular Video Transmission Platform

https://mvtp.cesnet.cz/#demovideo
2•clan•32m ago•0 comments

Show HN: Herd – Session-affine process pool for Go

https://github.com/HackStrix/herd
1•sankalpnarula•32m ago•0 comments

Show HN: Brw – Browser automation for Claude Code agent teams

https://github.com/sshh12/claude-plugins/blob/main/plugins/brw/README.md
1•sshh12•33m ago•0 comments

$3T Blind Spot: US nonprofits

https://charitysense.com/insights/the-3-trillion-blind-spot
4•mtweak•33m ago•0 comments

Show HN: Ash – OSS Infra for Running Claude Agent SDK

https://github.com/ash-ai-org/ash-ai
1•nicklo•38m ago•1 comments

Show HN: Send Secret Message in a Maze

https://wordsastray.com/home.html
1•bilkoo•39m ago•0 comments

PhD interrupted by personal safety issues, now publication record is thin

2•qthrwaway•39m ago•0 comments

Git diffs are 40 years old, introducing Semantic diffs

https://twitter.com/i/status/2029992315532759435
1•Palanikannan•41m ago•1 comments

How do you capture decisions made in Slack so they don't get lost?"

1•frankiefrazer•42m ago•1 comments

Roguelike music algorithm showcase by Nifflas

https://www.youtube.com/watch?v=WbgdXalXPus
1•todsacerdoti•42m ago•0 comments

Because Algospeak

https://www.tbray.org/ongoing/When/202x/2026/03/05/Because-Algospeak
1•zdw•42m ago•0 comments

Why do papers get desk rejected?

https://purl.stanford.edu/yb785sx5019
2•paulpauper•43m 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•10mo ago

Comments

mcfriendsy•10mo 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.