frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Are ChatGPT and other AI chatbots politically biased? We tested them

https://www.washingtonpost.com/technology/interactive/2026/06/24/are-ai-chatbots-like-chatgpt-pol...
1•thm•48s ago•0 comments

NSA Lost Access to Powerful A.I. Model Amid Anthropic Dispute

https://www.nytimes.com/2026/06/23/us/politics/nsa-lost-access-anthropic-tool.html
1•thm•53s ago•0 comments

Tech stock slump could be a reality-check moment

https://www.axios.com/2026/06/24/ai-stocks-chips-selloff
1•1vuio0pswjnm7•1m ago•0 comments

Autoops: Multi-region data and service mesh operated by a Makefile

https://github.com/neospe/autoops
2•leschak•1m ago•0 comments

Agents.md Decision Guide – open-source tool for choosing agentic workflows

https://www.groundwork.md
1•sebbzz•2m ago•0 comments

Show HN: Codemcp, One MCP tool that lets agents write Python to call many

https://github.com/skymoore/codemcp
1•iamsky•5m ago•0 comments

AirPosture is now open source (AirPods as Posture Coach)

https://github.com/allenv0/AirPosture
1•busymom0•7m ago•0 comments

Ship an Agent Skill That Installs Itself with Your Library

https://stenbrinke.nl/blog/ship-an-agent-skill-that-installs-itself
1•sander1095•9m ago•0 comments

50 Years Ago, Sugar Industry Paid Scientists to Point Blame at Fat(2016)

https://www.npr.org/sections/thetwo-way/2016/09/13/493739074/50-years-ago-sugar-industry-quietly-...
2•downbad_•10m ago•0 comments

Show HN: Vlayer – Open-source HIPAA compliance scanner for your codebase

https://vlayer.app
1•francosimon•11m ago•0 comments

Tuesday 23 June was reported the hottest day since 1947 [in Europe]

https://eu-space.europa.eu/components/earth-observation-copernicus/image-of-the-day/heatwave-affe...
1•slow_typist•11m ago•0 comments

How to Validate Against an Unlabeled Kaggle Test Set

https://medium.com/@alanscottencinas/how-to-validate-against-an-unlabeled-kaggle-test-set-fe5c88b...
1•encinas88•12m ago•0 comments

AES67 Audio-over-IP on the ESP32-P4

https://developer.espressif.com/blog/2026/06/aes67-audio-over-ip-on-the-esp32-p4/
1•sohkamyung•13m ago•0 comments

Your App Should Ship an MCP Server

https://justin.poehnelt.com/posts/ship-mcp-server-native-app/
1•mooreds•14m ago•0 comments

Downed US pilot reported seeing Iranian drones swarm in 'jellyfish' formation

https://www.cnn.com/2026/06/23/politics/iran-drones-f-15-pilot-intelligence
1•wslh•14m ago•0 comments

A deadly fungus that can infect cats and people is spreading

https://www.sciencenews.org/article/deadly-fungus-cats-people-spreading
11•sohkamyung•15m ago•0 comments

9 Weeks to AGI: Accountability and Governance Infrastructure for the EU AI Act

https://assimilatedhuman.github.io/inquisitor-labs/eu-ai-act.html
1•ballista2026•15m ago•1 comments

How are you building confidence in large AI-generated codebases?

1•maniksrr•16m ago•1 comments

A Speaker with a World Inside

https://www.murmur.living/
1•andrewn•17m ago•0 comments

Show HN: Project Cherub – TempleOS Fork. Early Build (ISO) & Future Plans

1•Rubinoslaw•18m ago•0 comments

Fusion Programming Language

https://fusion-lang.org/
1•efrecon•19m ago•1 comments

Show HN: Graphenium, persistent repo memory for AI coding assistants

https://github.com/lambda-alpha-labs/Graphenium
1•Graphenium•19m ago•0 comments

Show HN: I made a Telegram bot that turns a voice note into a live website

https://combobulate.dev
1•almirsarajcic•19m ago•0 comments

AI is turning research into a scientific monoculture

https://www.nature.com/articles/s44271-026-00428-5
2•EndXA•22m ago•0 comments

Haystack: Open-Source AI Framework for Production Ready Agents, RAG

https://haystack.deepset.ai/
1•doener•25m ago•0 comments

Ask HN: How are you finding work/gigs as a SWE?

2•mariopt•26m ago•2 comments

Kamod Hooks – a Preact hooks library ported from ahooks

https://kamod-ch.github.io/kamod-hooks/
1•zahir777•29m ago•0 comments

Show HN: Estimating what users ask ChatGPT about your company

https://github.com/syntropicsignal-ai/ai-visibility-audit
1•biduskamil•30m ago•1 comments

Ask HN: How should human overrides of AI agent outputs be recorded?

https://github.com/BrightbeamAI/chap
1•arsalanshahid•32m ago•0 comments

Apache Pulsar 5.0.0-M1: Introducing Self-Managing Scalable Topics

https://pulsar.apache.org/blog/2026/06/23/announcing-apache-pulsar-5-0-m1/
1•birdculture•33m 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.