frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Manob: A social media plaform without algorithm, ads, or data-tracking

1•Iamahmedsalman•1m ago•0 comments

Show HN: Dont lose your friends, use a Kadoodle to plan your next event

https://kalerum.com/en/tools/kadoodle
1•mailforge•4m ago•0 comments

OpenAI Considers Drastic Price Cuts, Anticipating War for Users With Anthropic

https://www.wsj.com/tech/ai/openai-considers-drastic-price-cuts-anticipating-war-for-users-with-a...
2•jbk•11m ago•0 comments

The end is not nigh

https://ckarchive.com/b/0vuwh9h96eg98i7mggrmzhv7orr2eunhx8g7n
3•bigfudge•17m ago•0 comments

Show HN: Sentinel Den – Zero-back end, on-device iOS security SDKs

https://sentinelden.com/
1•iamuhammadkhan•19m ago•0 comments

Ask HN: At what point does a codebase become too large to understand?

1•visha1v•20m ago•0 comments

Are jobs and the world going to be like this, moving forward?

5•chand190•23m ago•1 comments

Louis Rossmann is suing Samsung after firm offers $330 refund

https://www.tomshardware.com/pc-components/ssds/louis-rossman-threatens-to-take-samsung-to-court-...
2•iancmceachern•24m ago•0 comments

AI Agent Bankrupted Their Operator While Trying to Scan DN42

https://lantian.pub/en/article/fun/ai-agent-bankrupted-their-operator-scan-dn42lantian.lantian/
5•xiaoyu2006•24m ago•1 comments

Show HN: Kickbacks.ai – pays you for Claude Code spinner impressions

https://kickbacks.ai
2•devtoolsguides•26m ago•0 comments

Show HN: Proton – A easy CGO-free immediate-mode GUI framework for Go

1•CzaxTanmay•26m ago•0 comments

Asciline – real-time ASCII video rendering engine

https://github.com/YusufB5/ASCILINE
1•godot•28m ago•0 comments

Largest AI Data Center: Doubling every 7 months

https://epoch.ai/data-insights/largest-data-center-compute
2•ilreb•28m ago•0 comments

Show HN: VeloIQ – An internal OS to build full-stack FastAPI apps in minutes

https://veloiq.dev
1•cesarlugos1s•36m ago•0 comments

DevRel is becoming a freelance job now? (India specific)

3•arpansac•41m ago•0 comments

Study Finds Competitors Share Directors More Often Than Previously Known

https://law.stanford.edu/press/award-winning-antitrust-study-finds-competitors-share-directors-fa...
1•toomuchtodo•41m ago•1 comments

Foreign business owners are scrambling to raise capital to stay in Japan

https://tokyopaladin.substack.com/p/foreign-business-owners-are-scrambling
2•zdw•42m ago•0 comments

Device Clock Generation

https://zipcpu.com/blog/2025/12/17/devclk.html
3•mfiguiere•43m ago•0 comments

Git v2.55 will release with Rust support enabled by default

https://lore.kernel.org/lkml/xmqqik7pqeiq.fsf@gitster.g/
2•tapanjk•47m ago•0 comments

AppList – Minimalist App Launcher for iPhone

https://sxp.studio/apps/applist
1•gurjeet•47m ago•0 comments

Ask HN: Is anyone running AI agents in production reliably – what's your stack?

3•nehpets•57m ago•1 comments

I built a fast, edge-native personal site with Astro, Cloudflare D1, and R2

https://www.noahhan.com/
1•Felomeng•57m ago•0 comments

InkyCap – Typst-based PKM for academics, writers, and everyone

https://inkycap.org/
1•nikolay•58m ago•1 comments

The Normalization of Deviance in AI

https://embracethered.com/blog/posts/2025/the-normalization-of-deviance-in-ai/
2•gurjeet•1h ago•0 comments

Koalas at risk of death once seven-day temperatures rise beyond 27C

https://www.abc.net.au/news/science/2026-05-27/koala-deaths-linked-to-a-few-extra-degrees-of-heat...
6•bryanrasmussen•1h ago•0 comments

Linear Coding Sessions

https://linear.app/docs/coding-sessions
3•samtheprogram•1h ago•0 comments

Reading Is a System

https://docs.google.com/presentation/d/1rPX2rZ80CmHJCKZBziS1BtdodQM4NJhkNIz8EhF9nHM/edit?usp=sharing
2•_bramses•1h ago•2 comments

Tesla gets go-ahead to sell self-driving technology in Belgium

https://www.reuters.com/business/autos-transportation/tesla-gets-go-ahead-sell-self-driving-techn...
1•andsoitis•1h ago•0 comments

Blindzone Glare Elimination Mirror Method [pdf]

https://www.nhtsa.gov/sites/nhtsa.gov/files/blindzoneglaremirrormethod.pdf
1•thunderbong•1h ago•0 comments

Sophia NLU Home Assistant – On Device, Low Compute, No Internet, Voice Assistant

2•aquila416•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•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.