frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Peace? (1814) [video]

https://www.youtube.com/watch?v=CH1oYhTigyA
2•JumpCrisscross•36m ago•0 comments

OpenAI Fires an Employee for Prediction Market Insider Trading

https://www.wired.com/story/openai-fires-employee-insider-trading-polymarket-kalshi/
4•bookofjoe•36m ago•1 comments

How do you repair the crown damaged by the Louvre thieves? I asked an expert

https://anthonyamore.substack.com/p/10-questions-with-an-art-conservator
3•anthonyamore•41m ago•0 comments

Show HN: RTS with known stars and exoplanets can now be played in the browser

https://stardustexile.com
2•apseren•41m ago•0 comments

Show HN: MemoryKit – Persistent memory layer for AI agents URL

https://github.com/0j/memorykit
1•memorykit•43m ago•0 comments

Ask HN: Will AI tools enable mass intelligence gathering?

2•Brysonbw•43m ago•0 comments

Show HN: Paster – A keyboard-first clipboard manager for Vim users

https://pasterapp.com
1•luanderock•45m ago•0 comments

Show HN: CarbonLint – Open-source real-time energy&carbon profiler for software

https://nishal21.github.io/CarbonLint/
2•nishalk•46m ago•0 comments

Ask HN: Why aren't we using "semantic tokenizers"/codebooks for text?

1•gavinray•47m ago•0 comments

Yet another catalogue of fast matrix multiplication algorithms

https://fmm.univ-lille.fr/
1•bmc7505•47m ago•0 comments

Everything Changes, and Nothing Changes

https://btao.org/posts/2026-02-28-everything-changes-nothing-changes/
2•todsacerdoti•47m ago•0 comments

I don't pay for ChatGPT, Perplexity, Gemini, or Claude – I stick to my self-h

https://www.xda-developers.com/i-stick-to-my-self-hosted-llms-instead-of-chatgpt/
1•teembeet•48m ago•0 comments

Analysis of the US and EU's Approach to AI in the Context of Human Rights

https://mervevarli.com/ai-us-eu-analysis/
2•gyokhan•48m ago•0 comments

Show HN: AdaptGauge – I found that adding few-shot examples can make LLMs worse

https://github.com/ShuntaroOkuma/adapt-gauge-core
1•shuntaro-okuma•48m ago•0 comments

I Fixed This EMT 250 [video]

https://www.youtube.com/watch?v=Mi6nTxA1bHU
1•cbzbc•48m ago•0 comments

Show HN: Concryptor – Multi-gigabyte/s file encryption via io_uring and Rayon

https://github.com/FrogSnot/Concryptor
1•FrogSnot•48m ago•0 comments

The state of AI bias benchmarks

https://somaxsoma.substack.com/p/the-state-of-ai-bias-benchmarks
2•somaxsoma•50m ago•0 comments

The Life Cycle of Money

https://doap.metal.bohyen.space/blog/post/complete-life-cycle-of-money/
2•nanacnote•50m ago•0 comments

Are self-driving cars safer than public transit?

https://thenextmile.substack.com/p/are-self-driving-cars-safer-than
2•nkoren•52m ago•1 comments

Writing Crystalized Thinking at Amazon. Is AI Muddying It?

https://www.bigtechnology.com/p/writing-crystalized-thinking-at-amazon
2•herbertl•53m ago•0 comments

Show HN: Now I Get It – Translate scientific papers into interactive webpages

https://nowigetit.us
2•jbdamask•53m ago•0 comments

Why AI bots will never replace human code review

https://codereview.withmartian.com/
2•TheAnkurTyagi•55m ago•0 comments

Customer Update on Simplenote

https://forums.simplenote.com/forums/topic/customer-update-on-simplenote/?view=all
2•0in•56m ago•0 comments

Timeline: Anthropic, OpenAI, and U.S. Government

https://anthropic-timeline.vercel.app
4•vldszn•57m ago•1 comments

Limitations on Safe, Trusted, Artificial General Intelligence

https://arxiv.org/abs/2509.21654
1•cs702•57m ago•0 comments

We Built a Compliant AI Companion Platform

2•aiangels_24•58m ago•0 comments

Show HN: Uback 0.7 – A universal bridge between backup sources and destinations

https://github.com/sloonz/uback
1•slooonz•1h ago•0 comments

Show HN: Reclaim Flowers – A 2D physics-based "Digital Altar" protocol

https://github.com/voice-of-japan/Virtual-Protest-Protocol/blob/main/README.md
2•sakanakana00•1h ago•1 comments

I customized every key on a giant keyboard [video]

https://www.youtube.com/watch?v=293HWHd_Jlc
2•bookofjoe•1h ago•0 comments

Full Interview: Anthropic CEO Dario Amodei on Pentagon Feud [video]

https://www.youtube.com/watch?v=MPTNHrq_4LU
5•Topfi•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•9mo ago

Comments

mcfriendsy•9mo 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.