frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Who Pays for the High-Powered Grid That Data Centers Need?

https://www.texasobserver.org/who-pays-for-texas-grid-upgrades-data-centers/
1•cdrnsf•1m ago•0 comments

"The Search Results Are Poisoned"

https://chris-parmer.com/the-search-results-are-poisoned/
1•chriddyp•2m ago•0 comments

Traces of Two Extinct 'Ghost' Ancestors Were Found Hiding in Modern Human DNA

https://www.smithsonianmag.com/smart-news/traces-of-two-extinct-ghost-ancestors-were-found-hiding...
1•bookofjoe•3m ago•0 comments

Open AI models hacked into HuggingFace

https://www.instagram.com/p/DbGS8_0FmKx/
1•zlu•4m ago•0 comments

AI Is Dead. Organoids Are Alive

https://www.wired.com/story/organoids-lab-grown-brains-neural-networks/
1•Logans_Run•7m ago•0 comments

The closing of the U.S. economy's K-shaped gap

https://www.axios.com/2026/08/11/spending-growth-income
1•toomuchtodo•7m ago•0 comments

Playcall is the open-source alternative to Gong

https://github.com/Dphenomenal101/playcall
1•mooreds•8m ago•0 comments

Geoffrey Hinton's Bad AI Prediction Became a Legend [video]

https://www.youtube.com/watch?v=mv4EAR0jAUU
1•rossdavidh•10m ago•0 comments

We know that splitting up the MMR vaccine could be dangerous

https://www.statnews.com/2026/08/11/how-we-know-splitting-up-mmr-vaccine-could-be-dangerous/
2•EA-3167•14m ago•0 comments

Nobody Banned Private Rockets in India. That Was the Problem

https://liftoffasia.com/posts/vikram-india-private-rocket/
2•ridiculous_leke•15m ago•0 comments

AbstractSingletonProxyFactoryBean

https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/aop/framewor...
2•Svetlitski•18m ago•0 comments

Lessons learned from the fate of AstraZeneca's drug pipeline

https://pubmed.ncbi.nlm.nih.gov/24833294/
1•brandonb•21m ago•0 comments

Eclipse locator: find the best place to see the eclipse

https://jdlm.info/eclipse-locator/
1•jdleesmiller•21m ago•1 comments

Killed for Inventing, Except He Wasn't

https://www.minid.net/2003/12/9/killed-by-inventing
1•meerita•23m ago•0 comments

Watching Roku's AI channel is like eating from a trough

https://www.theverge.com/entertainment/976939/roku-fairground-ai-fast-channel
2•pavel_lishin•24m ago•0 comments

Introducing Unsloth Desktop

https://unsloth.ai/docs/desktop
1•kgwgk•25m ago•0 comments

Elevator Music [video]

https://www.youtube.com/watch?v=jj0ChLVTpaA
1•doener•27m ago•0 comments

Jiffies: The Heartbeat of the Linux Operating System

https://blogs.oracle.com/linux/jiffies-the-heartbeat-of-the-linux-operating-system
1•ankitg12•29m ago•0 comments

mmiotic: Latency x-ray for undocumented hardware

https://github.com/xoreaxeaxeax/mmiotic
2•matt_d•30m ago•0 comments

Hoover Dam Is Losing Power as the Colorado River Crisis Deepens

https://www.popularmechanics.com/science/energy/a73357713/hoover-dam-power-crisis/
1•tortilla•30m ago•0 comments

MonoMap – Minimalist mind mapping app

https://monomap.app/
1•saturn5k•31m ago•0 comments

We use prototyping only for storytelling

https://app.productnow.ai/public/doc/dbxb-jsqz-jven
1•kadhirvelm•31m ago•1 comments

US hires over 2k video gamers as air traffic controllers

https://www.cbsnews.com/news/video-gamer-air-traffic-controllers-faa-recruitment-sean-duffy/
15•shagie•32m ago•2 comments

AI Adoption Is a Myth

https://twitter.com/vasuman/status/2085806422072418632
1•gmays•35m ago•0 comments

To Improve Student Mental Health, University of Michigan Eases Grading

https://www.nytimes.com/2026/08/11/us/university-michigan-grades-freshmen-pass-fail.html
1•ilamont•36m ago•0 comments

How Distressed Are Consumers? Reconciling Credit Card Delinquency Measures

https://libertystreeteconomics.newyorkfed.org/2026/08/how-distressed-are-consumers-reconciling-di...
1•jnord•37m ago•0 comments

Dark mode toggles: two states are enough

https://lea.verou.me/blog/2026/dark-mode-toggles/
1•birdculture•38m ago•0 comments

Chrome Manifest V2 extensions stop working August 31 – what breaks

https://news.ycombinator.com/submit
1•FrontBuffer_FB•39m ago•0 comments

2026 Solar Eclipse Airbnb effect

https://www.airroi.com/blog/eclipse-2026-spain-iceland-airbnb-occupancy
1•airjason•40m ago•0 comments

Japanese authorities use new tool to identify initial torrent uploaders

https://www.tomshardware.com/tech-industry/cyber-security/initial-seeder-on-popular-anime-torrent...
2•debo_•40m 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.