frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: HackerBa – Hacker News with a Baidu Tieba UI

https://github.com/sha2kyou/HackerBa
2•sha2kyou•2m ago•0 comments

Ask HN: How do you handle iOS app submissions?

1•tedmundy•3m ago•0 comments

Suggestions on how to develop a tech recruitment platform using Claude?

1•zerodollar•4m ago•1 comments

Context Engineering in an LLM Harness

https://udnes.dev/posts/context-engineering-harness-part-1-ontology/
2•udnes•4m ago•0 comments

Mark Zuckerberg Blasts Centralization of A.I. Power

https://www.nytimes.com/2026/07/28/technology/mark-zuckerberg-meta-ai.html
1•danielcallahan•7m ago•0 comments

Show HN: Clark code – open-source IDE for OSS coding and free tier

https://github.com/clark-labs-inc/clark-code
1•stan_kirdey•7m ago•1 comments

The Code Review Paradox

https://dromeas.ai/blog/pr-vs-trunk-what-code-review-actually-looks-like
1•manos-saratsis•7m ago•1 comments

AMD Instinct Coder

https://www.amd.com/en/ecosystem/oem/supermicro/amd-instinct-coder.html
2•narism•8m ago•0 comments

Test

https://www.google.com/
1•snikolaev•8m ago•1 comments

The Three-Stroke Problem

https://penpot.app/blog/the-three-stroke-problem/
1•elenathor•12m ago•0 comments

How can a junior dev get better when they have to use AI in their job?

1•yogesharc•15m ago•1 comments

Finding the right price for a weather API

https://www.meteosource.com/blog/weather-api-pricing
1•Thunder_rumbles•16m ago•0 comments

Kikuha – A privacy-first, zero-tracking social network built with Flask and Htmx

https://kikuha.com/
1•koniakAra•24m ago•0 comments

Grokipedia stopped updating three months ago

https://www.lawfaremedia.org/article/grokipedia-stopped-reviewing-edits-in-april.-it-didn-t-tell-...
2•BlueBerry2001•26m ago•0 comments

Servers can be backdoored by exploiting buggy motherboard controll

https://arstechnica.com/security/2026/08/thousands-of-servers-can-be-backdoored-by-exploiting-bug...
1•joozio•28m ago•0 comments

Fedora Approves a Smaller Grub

https://lwn.net/Articles/1085609/
2•pykello•32m ago•0 comments

A Vision for Cargo

https://epage.github.io/blog/2026/08/cargo-vision/
1•ingve•33m ago•0 comments

Mathematicians make a breakthrough on Gauss's riddle, unsolved for 200 years

https://www.scientificamerican.com/article/mathematicians-make-a-breakthrough-on-gausss-riddle-un...
1•pykello•33m ago•0 comments

For Chinese LLMs, do you care about mainland-hosted vs. overseas endpoints?

https://api.realitypatch.net/
1•yangzhou-tech•36m ago•0 comments

Meta's Mac Coding Agent Costs Up to 20x Less If You Let It Train on Your Data

https://www.macrumors.com/2026/08/05/meta-muse-code-for-mac/
1•thm•38m ago•0 comments

Journey to Robbers Cave – Behavioral Scientist

https://behavioralscientist.org/journey-to-robbers-cave/
1•pulkonet•39m ago•0 comments

I built a postpartum recovery app after reading many stories from new mothers

https://play.google.com/store/apps/details?id=com.matrabloom.app&hl=en_IN
1•rahulsinghhh•42m ago•0 comments

Obsidian debuts Airtable to local Markdown file importer rescue tool

https://obsidian.md/help/import/airtable
1•thoughtpeddler•44m ago•0 comments

Dissection of Flock Safety Camera

https://www.cehrp.org/dissection-of-flock-safety-camera/
1•sandebert•45m ago•0 comments

Let's all meet up in the Y2K

https://blog.gingerbeardman.com/2026/08/06/lets-all-meet-up-in-the-y2k/
2•msephton•46m ago•0 comments

Design Test

1•ccbakla•47m ago•0 comments

You Can't Optimize for Rest (2021)

https://theconvivialsociety.substack.com/p/you-cant-optimize-for-rest
1•downbad_•47m ago•0 comments

Own-Goal Football (2022)

https://generalist.academy/2022/06/07/own-goal-football/
2•downbad_•48m ago•0 comments

The American Age in the Persian Gulf Is Over

https://phillipspobrien.substack.com/p/midweek-update-22-the-american-age
2•JumpCrisscross•50m ago•0 comments

Britain will soon be Europe's energy powerhouse

https://www.telegraph.co.uk/business/2026/08/04/britain-will-soon-be-europes-energy-powerhouse/
1•sbyse•55m ago•1 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.