frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Run OpenBSD on DigitalOcean for $4/month

https://nil.wallyjones.com/run-openbsd-on-digitalocean-for-4month/
1•speckx•39s ago•0 comments

An MCP 2026-07-28 Server from Scratch

https://data4sci.com/blog/an-mcp-server-from-scratch
1•Anon84•46s ago•0 comments

Back to the Future: Hypertext the Way It Used to Be

https://www.xanadu.net/XanaduSpace/btf.htm
1•GaryBluto•2m ago•0 comments

HotChips 2026 Samsung LPDDR5X-PIM (processing-in-memory)

https://www.servethehome.com/samsung-lpddr5x-pim-at-hot-chips-2026/
1•cmrdporcupine•2m ago•0 comments

Robot Autodocking for Stretch 4

https://binitshah.github.io/blog/stretch-4-autodocking/
1•bshah_•5m ago•0 comments

Anatomy of a credit card rewards program (2024)

https://www.bitsaboutmoney.com/archive/anatomy-of-credit-card-rewards-programs/
1•simonebrunozzi•8m ago•0 comments

Software Firms Deploy Bluster and Buybacks to Counter AI Fears

https://www.bloomberg.com/news/articles/2026-08-21/salesforce-servicenow-fight-ai-fears-with-buyb...
1•toomuchtodo•9m ago•1 comments

Lightweight system monitor for Linux VPS written in Go

https://github.com/leodeim/vpsmon
2•ygagaga•9m ago•0 comments

Faithful, Reproducible, Wrong: Lessons from 900 Data-Agent Runs

https://xorq.dev/blog/faithful-reproducible-wrong/
1•mousematrix•10m ago•0 comments

Nvidia's Groq 3 LPX accelerator enters full production at 3,500 tokens/SEC

https://siliconangle.com/2026/08/24/nvidias-dedicated-inference-accelerator-groq-3-lpx-enters-ful...
1•metadat•10m ago•0 comments

AI/LLM Usage Becoming a "Denial of Service Attack" on Open-Source Maintainers

https://www.phoronix.com/news/AI-DoS-Attack-Maintainers
1•speckx•11m ago•0 comments

QEMU: Single reporter filed over 125 separate bug reports in under 10 minutes

https://hachyderm.io/@berrange/117155755806497654
1•e2le•11m ago•0 comments

Running a Java Spring Boot app on a 512 MB VPS with lightweight monitoring

https://pvrlabs.xyz/articles/spring-boot-512mb-vps.html
1•birdculture•12m ago•0 comments

Project SuperDex

https://projectsuperdex.com/
1•saucesaft•13m ago•0 comments

Nitter project received cease and desist

https://github.com/zedeus/nitter/issues/1442
7•Banditoz•15m ago•1 comments

The AI Hater's Manifesto

https://www.wheresyoured.at/the-ai-haters-manifesto/
7•crescit_eundo•15m ago•1 comments

Basecamp/Hey-CLI: Hey CLI and Agent Skills

https://github.com/basecamp/hey-cli
3•duck•16m ago•0 comments

The AI-coding stack: a map for a landscape that won't sit still

https://mineti.dev/articles/the-ai-coding-stack/
2•mineti•17m ago•0 comments

Show HN: I built a cybersecurity challenge for university students

https://vitb-polimi-cyber-v4.vercel.app/
2•adityainsights•18m ago•0 comments

Meta's custom transport protocol embraces packet chaos to boost AI throughput

https://www.sdxcentral.com/news/metas-custom-transport-protocol-embraces-packet-chaos-to-boost-ai...
2•oavioklein•20m ago•0 comments

Black hole singularity is a surface not a point

https://arxiv.org/abs/2608.21590
14•raattgift•20m ago•2 comments

The Download: smarter AI in schools, and a robot "carnival" in Shanghai

https://www.technologyreview.com/2026/08/25/1142909/the-download-smarter-ai-in-schools-robot-carn...
2•joozio•21m ago•0 comments

Is Foodnevercomes.com a Stolen Idea?

https://dopamine-hits.fandom.com/음식만안와요
2•dhffl•22m ago•1 comments

AI payment rails exist. The rules for dividing value do not (SSRN 7321561)

https://ssrn.com/abstract=7321561
2•MECIP_Protocol•24m ago•0 comments

A new ceiling for Λ: the de Bruijn–Newman constant is at most 0.1787854

https://www.judegomila.com/posts/riemann-lambda-0.1787854
5•judegomila•24m ago•0 comments

Apple's on-device model takes no images. I measured what that rules out

https://tidymacapp.com/on-device-model-takes-no-images
2•sdiazthomas•24m ago•0 comments

Water Behind the Watts: The Hidden Risk of Powering Data Centers

https://www.ceres.org/resources/reports/water-behind-the-watts-the-hidden-risk-of-powering-data-c...
6•hn_acker•25m ago•1 comments

Waymo Is Coming to the EU

https://www.reuters.com/technology/waymo-begin-testing-autonomous-vehicles-munich-2026-08-25/
4•cwoebker•25m ago•0 comments

How the Legal System Is Ruining Plants [video]

https://www.youtube.com/watch?v=ZNWmy0CKePc
3•Teever•26m ago•0 comments

Skinner Box: How to Control People Habits and How Games Abuse This

https://steemit.com/gaming/@ahmadmanga/skinner-box-how-to-control-people-habits-and-how-games-abu...
2•Bluestein•27m 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.