frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ActHub – EU AI Act compliance toolkit for small businesses (PHP, no framework)

https://sevinhub.com/acthub/
1•sergiuv•36s ago•0 comments

EPP spreading false claims on Chat Control

https://digitalcourage.social/@echo_pbreyer/116866154678577185
1•latexr•42s ago•0 comments

All Your Favorite Gadgets Are Getting More Expensive Again

https://www.wired.com/story/we-are-in-the-knockout-round-of-price-increases-for-consumer-electron...
1•joozio•2m ago•0 comments

Show HN: PES Benchmark v0.2 – Detecting AI-generated motion (Cohen's d=10.4)

https://github.com/myshapeprotocol/myshape-protocol
1•myshapeprotocol•3m ago•0 comments

Europe's air conditioning culture wars heat up

https://www.theguardian.com/environment/2026/jul/05/europe-air-conditioning-culture-wars-heat-up
1•tosh•5m ago•0 comments

Confidential computing's core trust mechanism is broken. The fix may not exist

https://www.theregister.com/security/2026/07/04/confidential-computings-core-trust-mechanism-is-b...
1•Logans_Run•8m ago•1 comments

Codex ticket: first-class Jujutsu support

https://github.com/openai/codex/issues/31167
2•xlii•9m ago•1 comments

Returning to Zig after losing trust in Rust's governance

https://gracefulliberty.com/articles/return-to-zig/
2•jonathandeamer•9m ago•0 comments

Instagram running ads promoting child abuse material in India [video]

https://www.youtube.com/watch?v=6-y726qvZ6Q
1•mgh2•12m ago•0 comments

Show HN: Open-source phone calling infra for AI agents

https://github.com/AgentLineHQ/AgentLine
1•sameersri2004•14m ago•0 comments

Pi square is nearly 10

https://mihai.page/pi-square-is-10/
2•freediver•15m ago•0 comments

Ukraine striking Russian energy infrastructure at unprecedented rate

https://www.ft.com/content/13687b48-9e54-44a1-bd4d-600bbc052baf
1•JumpCrisscross•22m ago•0 comments

Ford rehires human engineers after AI fails to match quality checks

https://www.bbc.com/news/articles/cgrkd41n2v9o
1•JumpCrisscross•23m ago•0 comments

Suezmax

https://en.wikipedia.org/wiki/Suezmax
1•thunderbong•28m ago•0 comments

Show HN: Design Patterns for AI

https://verificationdesign.com/
1•verify-ai•29m ago•1 comments

OpenAI's apparent failure to visit key site raises questions over UK investment

https://www.theguardian.com/technology/2026/jul/04/openai-apparent-failure-visit-key-site-questio...
1•YeGoblynQueenne•30m ago•0 comments

Show HN: Pixtrava – Public Profiles for Our Persistent 3D Voxel World

https://pixtrava.com/blog/public-profiles-launch
1•sbcom•31m ago•0 comments

Common 3D Benchy Problems, Causes and Fixes

https://bambu3design.com/13-common-3d-benchy-problems-causes-fixes/
2•ehsanamel•32m ago•1 comments

Japan's Hayabusa2 probe to conduct flyby of Torifune asteroid

https://www3.nhk.or.jp/nhkworld/en/news/20260705_01/
1•dvh•32m ago•0 comments

Show HN: Selbstbild – What Fable 5 thinks of your HN comment history

https://selbstbild.eu
2•Topfi•44m ago•1 comments

Skill > ~2.5-3X PNG > OCR > paint in QR

https://github.com/YogiSotho/dense-image-gen
2•yogisotho•51m ago•0 comments

New Weekly Space and Hypersonics Engineering Newsletter

https://buttondown.com/MaxQFrontier/archive/from-orbital-data-farms-to-hypersonic-prints-this/
2•chadsutter•54m ago•1 comments

Teaching Claude to Write Like Zweig

https://rornic.dev/posts/teaching-claude-to-write-like-zweig/
4•rornic•55m ago•1 comments

Sedentarism Exhibits a Distinct Mitochondrial Bioenergetic Phenotype

https://www.mdpi.com/3042-5158/2/3/10
2•bookofjoe•55m ago•0 comments

Self Hosted NAS Platform

https://github.com/benjaminjaklic/NAS_readme
2•user1256•56m ago•1 comments

Diffflow.com: Visual-Selector

https://diffflow.com/blog/visual-selector/
2•7rin0•57m ago•0 comments

If You Can Write Acceptance Criteria, You Can Write an AI Routing Policy

https://age-of-product.com/ai-routing-policy/
2•swolpers•58m ago•0 comments

Show HN: ChartsPrintables – printable conversion charts and reference tables

https://chartsprintables.com
2•robot1996•1h ago•0 comments

Harvey AI started with a Reddit thread. Now it's worth $11B

https://freemalta.com/hub/library/they-named-a-11-billion-company-after-harvey-specter-then-they-...
2•ilhaniremyuce•1h ago•0 comments

The New 'Bootstrap' to the American Dream: Deep Cleaning Cars

https://www.wsj.com/business/entrepreneurship/why-some-workers-are-trading-desks-for-car-detailin...
3•JumpCrisscross•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.