frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Firefox-WASM: Firefox in WebAssembly

https://github.com/HeyPuter/firefox-wasm
1•thunderbong•1m ago•0 comments

Triton Plugin Extensions

https://pytorch.org/blog/triton-plugin-extensions-enabling-tlx-and-custom-compiler-passes-out-of-...
1•zer0zzz•2m ago•0 comments

Linus Torvalds on AI usage in Linux development

https://lore.kernel.org/linux-media/CAHk-=wi4zC+Ze8e+p3tMv8TtG_80KzsZ1syL9anBtmEh5Z40vg@mail.gmai...
2•tosh•10m ago•0 comments

I built a tool to get comments in CSV format from YouTube videos

2•cristyg0101•10m ago•0 comments

Sheetz Chooses StorMagic SvHCI to Replace VMware Across 830 Retail Stores

https://finance.yahoo.com/technology/articles/sheetz-chooses-stormagic-svhci-replace-120000659.html
2•gnabgib•12m ago•0 comments

Show HN: Kosh – a self-hosted personal finance app

https://github.com/kzekiue/kosh/
2•kzekiue•12m ago•0 comments

Don't make one LLM call do retrieval and interpretation

https://ffilm.org/astro/
2•tobywhy•12m ago•0 comments

Lightweight Ukrainian drones flew for a record 12h to hit refinery 1,500M away

https://www.telegraph.co.uk/world-news/2026/07/13/ukrainian-long-range-drones-stretching-russia-a...
4•giuliomagnifico•14m ago•0 comments

Sheetz is quitting VMware, migrating 11,000 virtual machines

https://arstechnica.com/information-technology/2026/07/sheetz-moves-838-stores-off-vmware-broadco...
2•jimt1234•20m ago•0 comments

Ode with Anthropic – AI meets reality

https://www.ode.com
2•car•20m ago•0 comments

DJB Netstrings

https://cr.yp.to/proto/netstrings.txt
3•signa11•22m ago•1 comments

Easy Acceleration with Distributed Arrays

https://arxiv.org/abs/2508.17493
2•teleforce•26m ago•0 comments

Whale – 98% Cache Hit with DeepSeek

https://github.com/usewhale/Whale
2•arikrahman•29m ago•1 comments

AI That Never Forgets – Dendritron Transformer Explained [video]

https://www.youtube.com/watch?v=6zwuTqGweJE
3•ilaksh•29m ago•1 comments

Google and Epic Abandon Settlement

https://www.macrumors.com/2026/07/15/google-third-party-app-stores/
4•tosh•31m ago•0 comments

DeepCleanAudio AI-powered audio denoising that restores clarity in seconds

https://steelsoft.site/software/DeepCleanAudio_home.html
2•billqu0001•32m ago•0 comments

Precociality and Altriciality

https://en.wikipedia.org/wiki/Precociality_and_altriciality
2•num42•33m ago•0 comments

Chaos and confusion bring US no closer to resolution on Strait of Hormuz

https://www.theguardian.com/world/2026/jul/15/chaos-confusion-no-closer-resolution-strait-hormuz-...
3•hebelehubele•37m ago•0 comments

What happened to our climate extinction?

https://cerebusthefirst.substack.com/p/what-happened-to-our-climate-extinction
2•joanwestenberg•38m ago•0 comments

The First Compiler: How Alan Jay Perlis Made Programming Human

https://nirmalutwani.substack.com/p/the-first-compiler-how-alan-jay-perlis
2•nutwani91•39m ago•1 comments

Emil and the Detectives (1929)

https://www.gutenberg.org/ebooks/79102
2•petethomas•40m ago•0 comments

Ex-Fed advisor gets over three years in prison for lying about China ties

https://www.cnbc.com/2026/07/16/ex-fed-adviser-gets-jailtime-lying-about-china-ties-economic-espi...
4•shinryudbz•44m ago•0 comments

Open source voice runtime with WebRTC and semantic endpointing

https://github.com/byte271/Openlive
1•byte1•45m ago•0 comments

GSAP – A robust JavaScript animation library built for professionals

https://gsap.com/
1•gurjeet•46m ago•0 comments

Locals and Tourists

https://www.flickr.com/photos/walkingsf/albums/72157624209158632/
2•phreeza•46m ago•0 comments

EU officials peeved after Anthropic sends junior staffer to testify about safety

https://www.politico.eu/article/anthropic-european-parliament-donny-greenberg-artificial-intellig...
3•intunderflow•48m ago•0 comments

A Universe from Three Sectors: Recovering TradeWars 2002's Map from Its RNG Seed

https://mattmichie.com/2026/07/14/a-universe-from-three-sectors/
2•influx•54m ago•0 comments

Looking for a remote internship (Fall/Winter/Spring 2026)

1•cnnadozi•54m ago•1 comments

Jobcv.io - Free Resume Maker Online – Build Your Professional CV

https://jobcv.io/en
1•grossos•54m ago•1 comments

Cross sectioning insects in an electron microscope with a femtosecond laser

https://www.youtube.com/watch?v=NwhVJ7cv9B4
3•fallinditch•55m 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.