frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google sued for firing staff who tried to follow 'Don't be evil' motto (2021)

https://www.theregister.com/on-prem/2021/12/01/google-sued-for-firing-staff-who-claim-they-tried-...
1•gurjeet•1m ago•0 comments

Show HN: League of Early Adopters – Give product feedback, get product feedback

https://sitenote.ai/league-of-early-adopters
1•sarim•4m ago•1 comments

AI Agents Are Tools, Not Replacements

https://derogab.com/2026/05/15/AI-Tools-Not-Replacements/
1•derogab•10m ago•0 comments

My Mom taught me HTML (and the rest was history)

https://ascii-tweezers.bearblog.dev/my-mom-taught-me-html-and-the-rest-was-history/
1•speckx•11m ago•0 comments

Show HN: A chess.com profiler that runs Stockfish in the browser

https://the-law-1.github.io/chess-insights/
1•the_law•12m ago•0 comments

Microsoft Exchange, Windows 11 hacked on second day of Pwn2Own

https://www.bleepingcomputer.com/news/security/pwn2own-day-two-hackers-demo-microsoft-exchange-wi...
1•Brajeshwar•12m ago•0 comments

Frink – programming language designed to make physical calculations simple

https://frinklang.org/#AboutFrink
1•gurjeet•13m ago•0 comments

Auto-Improving Software

https://twitter.com/ashpreetbedi/status/2053885390717890757
1•gmays•16m ago•0 comments

Bluesky Radio – Hosted by Opus 4.7

https://bskyrad.io/
1•wilted-iris•16m ago•0 comments

Ruby-charts: Generate pie, bar, and line charts from data files

https://github.com/ggerman/ruby-charts
1•thunderbong•17m ago•0 comments

iOS-Linuxkit: Linux on iPad, the Hard Way

https://taoofmac.com/space/blog/2026/05/16/1130
2•rcarmo•18m ago•0 comments

Do you spend 1h+ time a week just reading?

https://grops.biz/app
1•filippo_ciprian•18m ago•1 comments

Is the Secret to Men's Longevity a Great Butt?

https://www.wsj.com/lifestyle/fitness/glutes-men-longevity-hockey-butt-9c02666d
1•rawgabbit•20m ago•0 comments

Redux maintainer's thoughts on AI

https://blog.isquaredsoftware.com/2026/05/ai-thoughts-part-1-fears-opinions-journey/
1•newbie578•23m ago•0 comments

OpenAI seals deal in Malta to give all Maltese access to ChatGPT Plus

https://www.reuters.com/business/openai-seals-deal-malta-give-all-maltese-access-chatgpt-plus-202...
1•T-A•25m ago•0 comments

Recent Developments in LLM Architectures: KV Sharing, MHC, Compressed Attention

https://substack.com/@rasbt/p-197933886
1•eigenBasis•25m ago•0 comments

I spent my whole career building passive income. Here's what I got wrong

https://dariusforoux.com/i-spent-my-whole-career-building-passive-income-heres-what-i-got-wrong/
2•speckx•27m ago•0 comments

Rikkahub-agent OpenClaw/hermes for Android phones

https://github.com/ExTV/rikkahub-agent
1•ExTv•28m ago•0 comments

What it would have been like to experience the dinosaur-killing asteroid

https://theconversation.com/what-it-would-have-been-like-to-experience-the-dinosaur-killing-aster...
1•akkartik•28m ago•0 comments

The Changing Landscape of CTF-Based Learning

https://exploiting.systems/posts/2026-05-15-the-changing-landscape-of-ctf-based-learning
2•ropbear•32m ago•0 comments

Show HN: A Claude Skill to render resume templates. CV/Resumes are HTML and JSON

https://github.com/farhan0167/cv-claw
1•farhan0167•35m ago•0 comments

Repositories Are Human/Agent Knowledge Factories – Sigplan Blog

https://blog.sigplan.org/2026/04/21/repositories-are-human-agent-knowledge-factories/
1•rbanffy•35m ago•0 comments

GitHub takes aim at Claude Code and Codex with its new Copilot app

https://thenewstack.io/github-copilot-desktop-app/
1•Brajeshwar•36m ago•0 comments

How to Use LLMs as Teachers?

1•KneeAwn•37m ago•0 comments

UFO files nod to growing belief in aliens and mistrust in institutions

https://www.washingtonpost.com/opinions/2026/05/15/ufo-files-nod-growing-belief-aliens-mistrust-i...
1•bookofjoe•40m ago•3 comments

The Protein Shortage Is Coming

https://www.theatlantic.com/culture/2026/05/protein-powder-shortage/687193/
2•fortran77•41m ago•0 comments

Accelerate

https://github.com/AccelerateHS/accelerate
8•tosh•41m ago•0 comments

Using static websites for tiny archives

https://alexwlchan.net/2024/static-websites/
2•lemonberry•47m ago•0 comments

It's OK to want to have a good time [pdf]

https://drops.dagstuhl.de/storage/01oasics/oasics-vol134-programming2025/OASIcs.Programming.2025....
1•surprisetalk•48m ago•0 comments

MCP-stdio-guard – MCP stdio sanity checks

https://github.com/1Utkarsh1/mcp-stdio-guard
1•utkarsh4995•55m 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.