frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPT-6 Astra is now out to all Plus, Business, Pro, and Enterprise users

https://twitter.com/sama/status/2096008528834244741
1•tedsanders•3m ago•0 comments

The White House is making arcade games racist

https://www.theverge.com/policy/990520/trump-arcade-games-maga-copyright
2•OxO4•5m ago•0 comments

Show HN: Personal Context MCP

https://lanes.sh/showcase/personal-context-mcp
3•s-xyz•6m ago•0 comments

Show HN: Agent-to-agent payment. Your agents can pay each other

https://openspender.com/agent-to-agent
2•firatcan•6m ago•1 comments

GPT-6 Astra on Vercel AI Gateway

https://vercel.com/ai-gateway/models/gpt-6-astra
1•brbcoding•9m ago•0 comments

Moadim.io a Scheduler for Agents

https://moadim.io/
1•tupe12334•10m ago•1 comments

Why wait? Business grads buying firms to install themselves as CEO

https://www.bbc.com/news/articles/czxqpqrzq01o
3•BiraIgnacio•18m ago•0 comments

Portal by Spotify cut my Claude Code token usage by 90%

https://engineering.atspotify.com/2026/9/portal-by-spotify-cut-my-claude-code-token-usage-by-90
3•cebert•22m ago•0 comments

Ask HN: What's Going on with Web.archive.org

1•1vuio0pswjnm7•25m ago•0 comments

Apple's iPhone Event Early [video]

https://www.youtube.com/watch?v=4nC_YTAVmls
1•Cider9986•32m ago•0 comments

Build your own benchmark masterclass

https://www.youtube.com/watch?v=IUmomwsgRN0
1•rvialep•32m ago•0 comments

The Decade of Decline in Seattle Public Schools

https://www.educationprogress.org/p/the-decade-of-decline-in-seattle
3•barry-cotter•35m ago•0 comments

Fontra – The browser-based Font Editor

https://fontra.xyz
2•zahrevsky•37m ago•1 comments

The 33-Year-Old AI Hotshot Taking Silicon Valley Swagger Back to Beijing

https://www.wsj.com/tech/ai/moonshot-ai-yang-ceo-china-6f12ddbf
2•megacorp•45m ago•1 comments

Connecting every app to every other app

https://blog.val.town/connectors
3•Chidiebere229•51m ago•0 comments

Gimlet's Series B

https://gimletlabs.ai/blog/announcing-series-b
4•bigcat12345678•52m ago•1 comments

Columbo should model CoT reasoning

https://hollisrobbinsanecdotal.substack.com/p/just-one-more-thing
1•HR01•53m ago•0 comments

Oracle Health Execs Subpoenaed After VA Contract Costs Nearly Triple

https://medcitynews.com/2026/09/oracle-healthcare-ehr-va/
3•sbulaev•54m ago•1 comments

Diffusion as a Training Curriculum for Timestep-Free Iterative Reasoning

https://arxiv.org/abs/2609.01449
1•E-Reverance•55m ago•0 comments

Are Fewer Children the Future?

https://newrepublic.com/article/215004/fewer-children-future-global-fertility-decline
2•littlexsparkee•1h ago•3 comments

GPT-6 Astra proves Berge Fulkerson for C(20) graphs

https://twitter.com/fcesco/status/2096001522312085724
3•fcesco•1h ago•0 comments

Thoughts on Twitterviewer.net?

2•orange999•1h ago•3 comments

Claude Code skills for advanced context engineering techniques and patterns

https://github.com/NeoLabHQ/context-engineering-kit
1•leovs09•1h ago•0 comments

Show HN: TimerVana a Local-first scheduler for real world routines

https://timervana.net/browse
1•granto•1h ago•0 comments

This Month in Ladybird – August 2026

https://ladybird.org/newsletter/2026-08-31/
7•exploraz•1h ago•0 comments

Ask HN: Why isn't there a cursor for video games development

1•JimsonYang•1h ago•1 comments

NextDNS: fully configurable DNS, accepts money from customers as business model

https://nextdns.io/
1•Arubis•1h ago•1 comments

Can guitar frets perform multiplication?

https://www.charlespetzold.com/blog/2026/09/Can-Guitar-Frets-Perform-Multiplication.html
11•wibbily•1h ago•0 comments

Christmas Village shoppers no longer will be allowed to enter booths

https://www.phillyvoice.com/christmas-village-booths-ada-compliance/
7•josephcsible•1h ago•3 comments

What Tech Titans Don't Understand About Sci-Fi

https://www.theatlantic.com/newsletters/2026/09/the-books-briefing-tech-titans-sci-fi-asimov-lepo...
4•cisc•1h 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.