frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

VulnHunter: Capital One's agentic AI code security tool

https://www.capitalone.com/tech/open-source/announcing-vulnhunter/
1•medina•56s ago•1 comments

Alzheimer's trial results lend momentum to strategies targeting tau

https://www.science.org/content/article/alzheimer-s-trial-results-lend-momentum-strategies-target...
1•lonelyasacloud•58s ago•1 comments

The API Report Card: 1,323 Platforms Graded

https://supergood.ai/api-report-card
1•rafaelc•1m ago•0 comments

Show HN: Flutter Agent Kit – Build production grade Flutter code using AI agents

https://flutteragentkit.com
1•tapeo•1m ago•0 comments

Show HN: Qelvora, a local Mac writing tool I built by directing Codex

https://qelvora.app/
1•CDieumegard•2m ago•0 comments

If a model can vanish overnight, you never owned it. You were renting it

https://www.vladsnewsletter.com/p/open-source
1•Belkins•6m ago•0 comments

Ask HN: Is the ngrok AI gateway for real?

1•tybnty•6m ago•0 comments

Something weird is happening with airline pricing

https://milesforadventures.bearblog.dev/something-weird-is-happening-with-airline-pricing/
1•freediver•10m ago•0 comments

SpacetimeDB: A Short Technical Review

https://strn.cat/posts/spacetime/
1•courtcircuits•11m ago•0 comments

Measuring Milk Globule Sizes

https://chillphysicsenjoyer.substack.com/p/measuring-milk-globule-sizes
1•surprisetalk•12m ago•0 comments

Show HN: Swacn – Pause CLI tutorial and jump into a live VM. Need early testers

https://swacn.com
1•joshikarthikey•13m ago•0 comments

Project CETI – Listen to the sound, language, song of whales

https://listen.projectceti.org/#player-section
1•felipevb•13m ago•0 comments

The AI may have a spot in it's Jacobian representing YOU

https://author2vec.com/jlens
1•tristenharr•14m ago•0 comments

Cobble_stone (The Texture of Your Childhood)

https://github.com/Render96/Render96Wiki/wiki/cobble_stone-%28The-Texture-of-Your-Childhood%29
1•pjerem•15m ago•0 comments

Show HN: The AWS CDK, in Ruby (generated from jsii)

https://rubygems.omarqureshi.net/docs
1•omarqureshi•15m ago•0 comments

Guide to help people Transplant to the Bay from the Midwest

https://transplantfrommissouri.com/
1•tristenharr•17m ago•0 comments

Ask HN: Are you teaching your kids to program?

1•abstractbill•20m ago•0 comments

Trump Media to sell high-speed access to president's social media posts

https://www.ft.com/content/32db576f-4f53-47d2-b00c-2ad4e906952c
4•sega_sai•23m ago•0 comments

Xkcd 3109 – Dehumidifier

https://xkcd.com/3109/
3•basilikum•23m ago•0 comments

Body Bags Found Outside OpenAI HQ as Execs Increasingly Fear for Their Lives

https://gizmodo.com/body-bags-found-outside-openai-hq-as-execs-increasingly-fear-for-their-lives-...
2•bookofjoe•26m ago•0 comments

AI in scientific publishing: Slower, worse, and more expensive

https://www.science.org/doi/10.1126/science.aek5570
1•anujbans•27m ago•0 comments

I got tired of writing decisions on paper or notepad

https://dcyde.app/
1•morigar•27m ago•0 comments

Browser automation CLI built for AI agents

https://github.com/browser-act/skills
1•aanthonymax•29m ago•0 comments

AI isn't destroying entry-level jobs

https://www.ft.com/content/6cb9570b-dccd-46f5-b42a-4d0b7b5de35a
1•merksittich•30m ago•0 comments

Show HN: A hook that stops Claude Code from re-trying fixes that failed

https://github.com/anlor1002-alt/regressionledger
2•anlor1002-alt•33m ago•0 comments

Are there words LLMs won't say?

https://samermakes.com/blog/WCS/
1•SamerIA•33m ago•0 comments

US Corporate Insiders Are Selling Stocks at a Near Record Pace

https://finance.yahoo.com/markets/stocks/articles/corporate-america-pumping-1-trillion-173100033....
1•akyuu•37m ago•0 comments

Proposed spec to share SKILL and "loop"/"Workflow" by OCI registry

https://github.com/stumpyfr/loop-spec
1•stumpyfr•40m ago•1 comments

How vibe coding a game made me design an AI agent protocol

https://blog.carlid.dev/game-vibe-coding-to-protocol-design
1•carlid•40m ago•0 comments

Apple targets dozens of OpenAI employees with legal letters

https://www.ft.com/content/1b8c9d52-88a9-426b-ba47-f1811f859166
13•merksittich•40m ago•4 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.