frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A New GLP-1 Weight Journey Tracker

https://glp1.psvisual.de/
1•psvisualdesign•55s ago•0 comments

Databricks drove down AI coding spend 70%

https://www.databricks.com/blog/managing-ai-coding-costs-scale
1•moonikakiss•1m ago•0 comments

I Still Write Code by Hand and How AI Is Helping Me

https://semyonsinchenko.github.io/ssinchenko/post/writing_code_with_ai/
1•speckx•1m ago•0 comments

Show HN: Design Engineering as a Service

https://www.designshippers.com
1•krm01•6m ago•0 comments

A Revised Haskell 2010 Language Report

https://blog.haskell.org/revised-haskell-2010-report/
1•matt_d•6m ago•0 comments

'Asimov was right' about rules for robots, says ex-US Cyber Director

https://www.theregister.com/security/2026/08/07/asimov-was-right-about-rules-for-robots-says-ex-u...
2•arto•6m ago•0 comments

An AI agent with $15, 46 hours, and no way to send email

https://write.as/ih3l0kd78lpb1
1•broker_desk•6m ago•0 comments

Hacker News MCP and Debug View

https://github.com/coolvegan/go-hackernews
1•evlute•6m ago•1 comments

Reading Maps – Browse all routes

https://readingmaps.com/maps
1•speckx•7m ago•0 comments

EU AI Act: Second Big Blow, or a Move Toward Sanity?

https://medium.com/@MirArshadTalpur/eu-ai-act-second-big-blow-or-a-move-toward-sanity-3dea3586dbf3
1•Arshad-Talpur•8m ago•0 comments

Managed Deep Agents Is Now in Public Beta

https://www.langchain.com/blog/managed-deep-agents-is-now-in-public-beta
1•cbromann•8m ago•0 comments

ICE will release body cam video only when seen in the agency's 'best interests'

https://apnews.com/article/ice-body-cameras-officers-shootings-dab1b294c8dc412d9ef8557ccbebfd57
3•geox•10m ago•0 comments

The Witness

https://en.wikipedia.org/wiki/The_Witness_(2016_video_game)
2•tosh•11m ago•0 comments

UntitledSource – Watch the VOD on Kick

https://kick.com/untitledsource/videos/019fdc9c-d308-7801-a096-69fdff17311e
1•untiledsource•15m ago•0 comments

Clone latency on FSx for OpenZFS: from 10 minutes to 16 seconds

https://stagdb.com/blog/fsx-openzfs-clone-latency/
1•aayush-kosh•17m ago•0 comments

Planned satellite megaconstellations could generate runaway space debris

https://www.science.org/content/article/planned-satellite-megaconstellations-could-generate-runaw...
2•sbulaev•19m ago•0 comments

New Mexico Survivors' Truth Commission – Jeffrey Epstein at Zorro Ranch [pdf]

https://bloximages.newyork1.vip.townnews.com/santafenewmexican.com/content/tncms/assets/v3/editor...
5•embedding-shape•19m ago•1 comments

Show HN: BotWave – A simple way of playing with FM using Raspberry Pi devices

https://botwave.dpip.lol/
1•douxx•21m ago•0 comments

Dev services, spun up in seconds

https://github.com/sndsabin/servitor
1•havu12•23m ago•0 comments

Talk to Claude Code. Force Yourself to Slow Down and Think

https://github.com/tmshapland/audiochatty-plugin
2•tmshapland•23m ago•1 comments

Bring Back the Paragraph

https://arhan.sh/blog/bring-back-the-paragraph/
1•ArchAndStarch•24m ago•0 comments

A self-improving RLM agent for coding workflows and long-running autonomous task

https://github.com/PrimeIntellect-ai/prime-agent
1•thewolfpaul•24m ago•0 comments

Assembly Hall of Shame

https://github.com/xoreaxeaxeax/asm-hall-of-shame
3•piotrgrabowski•25m ago•0 comments

Polynomial-Time Solution to Quantum-Hard DCP, Lattice Cryptography Implications

https://xenospectrum.com/en/quantum-dcp-algorithm-pqc/
1•u1hcw9nx•27m ago•0 comments

The End of No Code

https://blog.exe.dev/the-end-of-no-code
2•indigodaddy•27m ago•0 comments

Oracle GraalVM Accepts AI-Assisted Contributions

https://www.graalvm.org/community/contributors/
1•sgammon•28m ago•0 comments

How Ham Radio Made Silicon Valley

https://cooperkramer.substack.com/p/how-ham-radio-made-silicon-valley
2•cooperkramer20•29m ago•1 comments

DeepSeek V4 Flash 0731

https://arcprize.org/results/deepseek-v4-flash-0731
49•tosh•30m ago•29 comments

Illinois Institute of Technology cuts 160 faculty and staff before fall semester

https://www.wbez.org/education/2026/07/31/illinois-institute-of-technology-cuts-160-faculty-and-s...
1•amichail•30m ago•0 comments

Your sandbox is only as strong as its weakest link

https://vmg.dev/articles/your-sandbox-is-only-as-strong-as-its-weakest-link
1•vmg12•30m 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.