frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bet on Centaurs

https://ajkprojects.com/bet-on-centaurs.html
1•ashleynewman•17s ago•0 comments

The Leading Deepfake Expert No Longer Trusts His Own Eyes

https://www.nytimes.com/2026/06/14/us/ai-deepfake-hany-farid.html
1•gmargari•3m ago•0 comments

Sigil – tamper-evident audit and signed scopes for LLM prompts

https://github.com/mr-gl00m/sigil
1•mr_gl00m•6m ago•0 comments

GitSwitcher – a macOS menu bar app for switching Git identities

https://www.botworker.org/
1•easonxia•9m ago•0 comments

Vulnerability Disclosure: Stealing Emails via Firefox's AI Features

https://insinuator.net/2026/06/vulnerability-disclosure-stealing-emails-via-firefoxs-ai-features/
2•_____k•9m ago•0 comments

Show HN: I built a tool which turns any website into promo video in minutes

https://www.clickcast.tech/
1•modulusme•12m ago•1 comments

An event-driven AI pipeline using FastAPI, Redpanda, and Docker

https://github.com/Infodatamatrix/AIKafkaPipelineDemo
1•infodatamatrix•12m ago•0 comments

Cervical cancer mortality trends following HPV vaccination in England, 2001–24

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(26)00918-9/fulltext
2•asplake•19m ago•1 comments

BBC to axe Radio 4's The World Tonight after more than 50 years

https://www.theguardian.com/media/2026/jun/17/bbc-boss-compulsory-redundancies-cuts
2•mellosouls•21m ago•2 comments

YaFF – High-performance C++ serialization library

https://github.com/yandex/yaff
1•Hixon10•23m ago•0 comments

The Next Computing Revolution May Come from Stacking Chips Like Skyscrapers

https://scitechdaily.com/the-next-computing-revolution-may-come-from-stacking-chips-like-skyscrap...
1•g-b-r•26m ago•0 comments

'Most famous tree in the world': Sherwood Forest's 1000-year-old Major oak dies

https://www.theguardian.com/environment/2026/jun/18/most-famous-tree-world-sherwood-forest-ancien...
5•mellosouls•27m ago•0 comments

GLM-5.2 is probably the most powerful text-only open weights LLM

https://simonwillison.net/2026/Jun/17/glm-52/
2•lumpa•29m ago•0 comments

Simpler, older version of Stonehenge found three miles from famous site

https://www.bbc.co.uk/news/articles/clyxw8550y8o
3•mellosouls•32m ago•2 comments

Interesting Google AI Results

https://www.google.com/search?q=nvm
2•throwaway_7678•35m ago•2 comments

SteamOS Linux 3.8 released as stable

https://store.steampowered.com/news/app/1675200/view/697641379212298072
11•jrepinc•42m ago•0 comments

Privacy-Preserving Age Verification–and Its Limitations [pdf]

https://www.cs.columbia.edu/~smb/papers/age-verify.pdf
1•wmf•44m ago•0 comments

Trading Places (2023)

https://www.tabletmag.com/sections/news/articles/trading-places
1•like_any_other•46m ago•0 comments

EPFL launches the first open medical LLMs

https://actu.epfl.ch/news/epfl-launches-the-world-s-first-fully-open-medical/
1•ponsfrilus•47m ago•0 comments

Remote Code Execution in Libssh2

https://vuldb.com/cve/CVE-2026-55200
1•walrus01•51m ago•0 comments

FP8 GEMM Optimization on AMD CDNA4 Architecture

https://rocm.blogs.amd.com/software-tools-optimization/cdna4-gemm-kernels/README.html
1•skidrow•56m ago•0 comments

Occupancy Math on the AMD MI355X: A From-First-Principles Guide

https://indianspeedster.github.io/blog/occupancy-math-mi355x/
1•skidrow•56m ago•0 comments

Remembering Robert A.F. Thurman (1941-2026)

https://www.lionsroar.com/robert-thurman-and-the-karmic-kingdom-of-buddhology/
2•fredski42•58m ago•0 comments

What competitor signal has been most useful for you?

3•IndustryLens•1h ago•0 comments

Show HN: We cut >60% of tokens from agentic tasks by removing repeated context

https://parcle.ai/
1•longtermop•1h ago•0 comments

Nim Conf 2026 (Online, Sat June 20)

https://conf.nim-lang.org/
4•pietroppeter•1h ago•1 comments

Apple has started replacing macOS names with version numbers

https://9to5mac.com/2026/06/16/apple-has-started-replacing-macos-names-with-version-numbers-in-se...
2•soheilpro•1h ago•1 comments

Apple boss Tim Cook says prices to rise due to memory chip costs

https://www.bbc.com/news/articles/c3wyxvqdx1zo
6•ilreb•1h ago•0 comments

I built a budgeting app that never connects to your bank

https://budjo.app
2•fabiozanchi•1h ago•2 comments

AI Agents for Contractors

https://dolfyn.ai/
1•khollow•1h ago•1 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.