frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

An attempt at explaining bipolar disorder and psychosis

https://osf.io/preprints/psyarxiv/w28g9_v1
1•anon1253•1m ago•0 comments

Quarkdown – Markdown with Superpowers

https://quarkdown.com/
1•amai•7m ago•0 comments

Show HN: Defeating AI by making knowledge accessible to Humans

https://github.com/tnelsond/peakslab
1•tnelsond4•7m ago•0 comments

China Blocks Meta's $2B Acquisition of AI Firm Manus

https://www.bloomberg.com/news/articles/2026-04-27/china-blocks-meta-s-2-billion-acquisition-of-a...
2•limoce•7m ago•0 comments

China blocks Meta's $2B purchase of AI startup Manus

https://finance.yahoo.com/sectors/technology/articles/china-blocks-foreign-acquisition-ai-0825482...
1•jmsflknr•8m ago•0 comments

Notes on Serial Experiments Lain

https://jordanmatthiass.net/essays/serial_experiments_lain
1•lilytweed•8m ago•0 comments

Open Source Mintlify Alternative

https://doccupine.com
1•luangjokaj•8m ago•1 comments

Open CoDesign: Open-source, local-first alternative to Claude Design and v0

https://firethering.com/open-codesign-ai-design-tool-open-source/
1•steveharing1•11m ago•0 comments

Tell HN: Ebay.com Is Down

2•NKosmatos•12m ago•1 comments

Enhancing Server Availability and Security Through Failure-Oblivious Computing [pdf]

https://people.csail.mit.edu/rinard/paper/osdi04.pdf
1•pabs3•22m ago•0 comments

The "Connectivome Theory": A New Model to Understand Autism Spectrum Disorders

https://pmc.ncbi.nlm.nih.gov/articles/PMC8892379/
1•AndrewDucker•23m ago•0 comments

Recursive Acronym

https://en.wikipedia.org/wiki/Recursive_acronym
1•Quizzical4230•25m ago•0 comments

Soulful Sites

https://app.paradigmai.com/sheets/76210606-6ce4-4ccc-a005-fb1cf6984a45
1•sauravmaheshkar•27m ago•0 comments

LLMs are not a higher level of abstraction

https://www.lelanthran.com/chap15/content.html
2•lelanthran•28m ago•3 comments

Ask HN: RedHat for Personal Use

2•bozdemir•29m ago•2 comments

The Truth About China's Green Energy Industry [video]

https://www.youtube.com/watch?v=Ff0AYRWrnGY
1•mpweiher•29m ago•0 comments

"Grandma, get on": Ukrainian robot carried 77-year-old from grey zone near Lyman

https://euromaidanpress.com/2026/04/25/grandma-get-on-ukrainian-robot-carried-77-year-old-from-gr...
1•eternalreturn•30m ago•0 comments

Claude Code Opus-4-7 VS Codex GPT-5-5

1•rashidae•30m ago•0 comments

MobED: Mobile Eccentric Droid – A robotic platform from Hyundai (2022) [video]

https://www.youtube.com/watch?v=uQqXbXpmkc0
1•num42•31m ago•1 comments

Ask HN: Paid ambient/background noise for focus?

2•deaux•34m ago•1 comments

A Website, Hosted on an ESP32

https://helloesp.com/
1•agilek•35m ago•1 comments

Show HN: AI voice screens for hiring managers to save time

https://worksignal.com/demo
1•cdnsteve•37m ago•0 comments

Show HN: AI agents that learn from their own failures each week

https://www.deployinfra.ai/
1•dkarigi•37m ago•0 comments

French teen who licked vending machine straw faces years in jail in Singapore

https://www.bbc.com/news/articles/cjw8w849g6go
5•jb1991•41m ago•1 comments

Was sind und was sollen die unendlichdimensionalen Supermannigfaltigkeiten

https://mathoverflow.net/questions/510716/was-sind-und-was-sollen-die-unendlichdimensionalen-supe...
1•jjgreen•41m ago•0 comments

Mapping the dreamworld: inside Le Guin's unseen cartographies of myth and mind

https://www.designboom.com/art/mapping-the-dreamworld-inside-ursula-k-le-guins-unseen-cartographi...
1•bryanrasmussen•43m ago•0 comments

Ask HN: Are you concerned by TLS-terminating proxies like Cloudflare Tunnels?

2•thom-gtdp•45m ago•2 comments

Identifying the topographic signature of early Martian oceans

https://www.nature.com/articles/s41586-026-10381-2
1•bryanrasmussen•46m ago•0 comments

What even is a Programming Language?

https://medium.com/invisible-lab/what-even-is-a-programming-language-725eba75fc10
1•jotaalvim•46m ago•0 comments

It's OK to abandon your side-project

https://robbowen.digital/wrote-about/abandoned-side-projects/
27•hisamafahri•50m ago•7 comments
Open in hackernews

ExWrap: Turn any application written built in any language into an executable

https://github.com/mcfriend99/exwrap
3•mcfriendsy•11mo ago

Comments

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