frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dory: Docker and Linux containers, native to your Mac

https://augani.github.io/dory/
1•xyzzy_plugh•4m ago•0 comments

Reconstructing SQLite's float-to-text without reading the source

https://github.com/lucasolopes/haruspex
1•byolopes•5m ago•0 comments

EPA approves pesticides that may be considered forever chemicals

https://thehill.com/policy/energy-environment/5950487-epa-pesticides-forever-chemicals-pfas/
1•OutOfHere•12m ago•0 comments

Show HN: Void test: 6 frontier LLMs go silent on "Be silence." Live proof

https://getswiftapi.com/void-test
1•rayanpal_•18m ago•0 comments

Show HN: SmolSignal – signal copilot for Flipper Zero files

https://github.com/SmolNero/SmolSignal
1•edgar_ortega•21m ago•0 comments

Show HN: I replaced my $500/mo legal SaaS with an AI-generated toolkit

https://maxiporonga.gumroad.com/l/ytruk
1•promptalex53•21m ago•0 comments

Show HN: Earshot, a homebrew Claude Tag

https://github.com/Octember/earshot
1•octember•25m ago•1 comments

Maybe you should learn something

https://www.marginalia.nu/log/a_135_learn/
2•tylerdane•25m ago•1 comments

FemiCore Review 2026 – 7-Second Bladder Reset Method Explained

https://gamma.app/embed/FemiCore-Review-2026-7-Second-Bladder-Reset-Method-Explained-9yahcz6mepth...
1•wildriverreview•26m ago•0 comments

Show HN: Local privacy-first Microsoft Recall alternative with Gemma 4

https://github.com/ayushh0110/ScreenMind/blob/main/README.md
1•skye0110•31m ago•0 comments

MagicBookShelf – A modern reader for classic novels – Crime and Punishment

https://magicbookshelf.org/read/crime-and-punishment/
1•philipfweiss•41m ago•0 comments

Four-Byte Burger [video]

https://www.youtube.com/watch?v=i4EFkspO5p4
1•CharlesW•43m ago•0 comments

A Conflict-Free Multi-Agent Ensemble for Claude and Codex

https://medium.com/@Koukyosyumei/a-conflict-free-multi-agent-ensemble-for-claude-and-codex-0ded61...
1•syumei•43m ago•0 comments

Show HN: Snibble – Snake x Scrabble where every match fits in a QR code

https://snibble.gg/
1•purple-leafy•49m ago•0 comments

Cholibrium Reviews 2026 – Does This Mushroom Blend Work

https://gamma.app/embed/Cholibrium-Reviews-2026-Does-This-Mushroom-Blend-Work-7rsn8kmry09nfdi?mod...
1•wildriverreview•49m ago•0 comments

BrickSlider – TypeScript-first, Tailwind-first carousel

https://sixsrc.github.io/brickslider/
1•marcusloren•1h ago•1 comments

A 2048-spin bulk acoustic wave Ising machine for number partitioning and Sudoku

https://arxiv.org/abs/2607.02112
1•Jimmc414•1h ago•0 comments

How Can Reinforcement Learning Achieve Expert-Level [Chip] Placement?

https://arxiv.org/abs/2604.25191
1•Jimmc414•1h ago•0 comments

Synthesis is harder than analysis

https://surfingcomplexity.blog/2026/07/03/synthesis-is-harder-than-analysis/
9•azhenley•1h ago•3 comments

I watched a flat earth convention

https://theconversation.com/i-watched-an-entire-flat-earth-convention-for-my-research-heres-what-...
1•robertclaus•1h ago•0 comments

The Human in the Loop Essay

https://designedbybruno.net/essays/06-the-human-in-the-loop
1•designedbybruno•1h ago•0 comments

Show HN: A tree-based replacement for PowerPoint

https://presentation.ironactionai.com/
1•nkersting•1h ago•0 comments

US life expectancy on track to reach record high

https://www.cnn.com/2026/07/02/health/us-death-rate-record-low-cdc-report-longevity
2•mbroshi•1h ago•0 comments

Windows App Profiles

https://github.com/lahcim/WindowsAutoProfiles
2•lahcim2000•1h ago•1 comments

Unlocking Windows Notepad: Create Time-Stamped Logs Like a Pro

https://windowsforum.com/threads/unlocking-windows-notepad-create-time-stamped-logs-like-a-pro.34...
2•thunderbong•1h ago•0 comments

Zork in browser with hand-crafted animated pixel-art scenes

https://github.com/posabsolute/zork-ui
1•indigodaddy•1h ago•0 comments

Teams Make Contact with Spacecraft Set to Boost NASA's Swift

https://science.nasa.gov/blogs/swift/2026/07/03/teams-make-contact-with-spacecraft-set-to-boost-n...
2•ChrisArchitect•1h ago•0 comments

Traveler – Scout Motors

https://www.scoutmotors.com/traveler
1•evo_9•1h ago•0 comments

Argentina's plan for AI-run companies can't avoid humans

https://www.reuters.com/world/americas/argentinas-plan-ai-run-companies-cant-avoid-humans-2026-07...
1•tartoran•1h ago•0 comments

The Optimization Trap: Optimization Only Protects What It Measures

https://www.saveneighbor.com/blog/the-optimization-trap
1•JJonesRatio•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.