frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Building a 350M Transformer from Scratch in PyTorch

https://john463212.substack.com/p/building-a-350m-transformer-from
1•Johnene•31s ago•0 comments

Ask HN: Are OSS projects allowing vibe-coding?

1•raphaelj•1m ago•0 comments

Celebrating 15 years of SAP's involvement in the OpenJDK

https://mostlynerdless.de/blog/2026/07/07/celebrating-15-years-of-saps-involvement-in-the-openjdk/
1•Tomte•3m ago•0 comments

Beijing is looking at curbing overseas access to China's top AI models

https://www.reuters.com/world/beijing-is-looking-curbing-overseas-access-chinas-top-ai-models-sou...
3•eis•3m ago•1 comments

Are We AI Yet?

https://data.stackexchange.com/stackoverflow/query/1953321/are-we-ai-yet#graph
1•pelagicAustral•5m ago•0 comments

HTTP Status Codes and SEO

https://urlwatch.io/blog/http-status-codes.php
1•mssblogs•6m ago•0 comments

An allegory on technical debt, hiring, and product requirements

https://carette.xyz/posts/a_story_of_screwdriver_drivers/
1•weird_trousers•7m ago•0 comments

Top researchers leave USA for the Netherlands (in Dutch)

https://www.nwo.nl/nieuws/eerste-internationale-wetenschappers-via-het-tulp-fonds-naar-nederland
1•28304283409234•7m ago•0 comments

Transforming Wild

https://wild.gr/story/2
1•djnaraps•8m ago•0 comments

A Script for Mark Zuckerberg

https://stratechery.com/2026/a-script-for-mark-zuckerberg/
1•chrisvalleybay•9m ago•0 comments

Why migrants come to Germany for work and then leave again

https://www.dw.com/en/germany-migrants-skilled-workers-integration-labor-market-bureaucracy-langu...
4•theanonymousone•12m ago•0 comments

Money Magician – AI financial co-pilot for founders (not a budgeting app)

https://moneymagician.eu
1•carolinev•12m ago•0 comments

Tamp – shows when another app is keeping your Mac awake

https://tamp.kybernaut.cz/
1•vyskoczilova•14m ago•0 comments

Show HN: A simple random animal generator

https://randomanimalgen.com
1•mark_literacy•14m ago•0 comments

Search movies across all your streaming services

https://memovee.com/posts/search-across-your-streaming-services
1•zacksiri•15m ago•0 comments

Introduction to Algorithms and Machine Learning from Sorting to Strategic Agents [pdf]

https://www.justinmath.com/files/introduction-to-algorithms-and-machine-learning.pdf
1•Anon84•17m ago•0 comments

Show HN: A read-only MCP server for WooCommerce

https://github.com/wppoland/woocommerce-mcp
1•motylanogha•21m ago•0 comments

The hard part was never the model

https://jenniferjiangkells.substack.com/p/the-hard-part-was-never-the-model
1•adjks•24m ago•0 comments

Top banking watchdogs issue stark warning over AI-driven cyber attacks

https://www.ft.com/content/304cdbb9-c161-4e40-af4d-6df1d2ff5363
2•thm•26m ago•0 comments

Show HN: Formester – a form builder with no limits on forms or submissions

https://formester.com/
1•whitefang•30m ago•1 comments

Missing women on Indian streets [pdf]

https://gsood.com/research/papers/missing_women.pdf
1•like_any_other•33m ago•1 comments

ABC Australia will trial using AI for journalism

https://theconversation.com/abc-will-trial-using-ai-for-journalism-what-are-the-risks-and-benefit...
1•Alien1Being•34m ago•0 comments

Ask HN: Is Email Marketing Dead?

2•akashwadhwani35•35m ago•2 comments

The first American autonomous ground vehicles are fighting in Ukraine

https://techcrunch.com/2026/07/07/the-first-american-autonomous-ground-vehicles-are-fighting-in-u...
1•arnejenssen•36m ago•0 comments

Prevail – open-source AI "life OS" (not for your job)

https://prevail.sh/
2•mrlou•38m ago•0 comments

Shell Has a Forth-Like Quality

https://www.oilshell.org/blog/2017/01/13.html
1•ingve•42m ago•0 comments

Show HN: Brianni – AI chat on GPT/Claude/Gemini that we can't read (provable)

https://brianni.co/blog/prove-were-not-lying
1•iosazee•45m ago•0 comments

Ask HN: What are your favorite games?

3•freedomben•46m ago•1 comments

Never ask a model to do something a deterministic system can do reliably

https://cacm.acm.org/blogcacm/what-platform-security-taught-me-about-trusting-llm-agents/
2•visha1v•48m ago•1 comments

The EU Wants Its Own Tech Supply Chain

https://spectrum.ieee.org/europe-tech-sovereignty-package
2•sscaryterry•48m 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.