frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Categorical Framework for Agentic Artificial Intelligence

https://arxiv.org/abs/2606.01444
1•ssivark•1m ago•0 comments

Can Mark Carney Get Canadians to Trust AI?

https://www.cbc.ca/news/politics/artificial-intelligence-mark-carney-analysis-9.7225476
3•devonnull•2m ago•0 comments

Yann LeCun Says LLMs Have 2 Years Left

https://www.youtube.com/watch?v=85M0cTnNKCI
1•root-parent•3m ago•0 comments

Who uses the CPU when you type `tail -f`? – SABTI Riad

https://blog.sabti.dev/posts/who-uses-the-cpu-tail-f/
1•rbanffy•5m ago•0 comments

Shunbox: Your inbox, sorted before you open it

https://www.shunbox.app/
1•albertyang•5m ago•0 comments

Why Are Linux I/O Devices Called TTY? [video]

https://www.youtube.com/watch?v=31JBOlrzPXs
2•zdw•6m ago•1 comments

Microbe with tiny genome may be evolving into a virus

https://www.science.org/content/article/microbe-bizarrely-tiny-genome-may-be-evolving-virus
1•stared•8m ago•0 comments

Risk Has an Owner, and It's Not the AI

https://aaddrick.com/blog/risk-has-an-owner
2•aaddrick•13m ago•0 comments

India told millions to get degrees. Now even peon jobs are out of reach

https://www.indiatoday.in/jobs/story/graduate-unemployment-in-india-what-sc-ruling-reveals-about-...
3•rustoo•15m ago•0 comments

Show HN: VPets.net – a cozy pixel pet world

https://vpets.net/start
1•solidarnosc•24m ago•1 comments

Nemotron 3 Ultra is open weight and open data [video]

https://www.youtube.com/watch?v=D8LIIvQVGS4
2•TheJCDenton•26m ago•0 comments

The First AI QFT Textbook

https://www.math.columbia.edu/~woit/wordpress/?p=15735
1•jjgreen•29m ago•0 comments

Data centers consumed 264B gallons of water as drought hits nearly 63% of US

https://www.barchart.com/story/news/2339834/ai-data-centers-water-consumption-breaks-264-billion-...
18•yogthos•29m ago•14 comments

Compression and Intelligence 3blue1brown [video]

https://www.youtube.com/watch?v=l6DKRf-fAAM
3•2bird3•30m ago•0 comments

Painting that made Turner's name gets second public showing since 1799

https://www.thetimes.com/culture/art/article/painting-turner-abergavenny-bridge-rcvx8hglh
1•bookofjoe•31m ago•1 comments

Investing Is Compression

https://arxiv.org/abs/2604.10758
2•lisper•31m ago•0 comments

The Zebra v4.4.1 Chronicles: Independent Audit

https://github.com/Alex74SjS3/THE-ZCASH-ZEBRA-v4.4.1-CHRONICLES
1•Alex74-SjS3•35m ago•0 comments

Spyro the Dragon returns with a new game after almost two decades

https://www.theguardian.com/games/2026/jun/07/spyro-the-dragon-returns-with-a-new-game-after-almo...
2•TechTechTech•38m ago•0 comments

Thoughts on starting new projects with LLM agents

https://eli.thegreenplace.net/2026/thoughts-on-starting-new-projects-with-llm-agents/
2•zdw•39m ago•0 comments

VibeOS: First ever AI-native operating system

https://vibeos.sh/
2•doener•41m ago•0 comments

Flock Safety Price List [pdf]

https://www.omniapartners.com/suppliers-files/E-J/Flock_Safety/Contract_Documents/R250203/5_29_20...
2•ourmandave•43m ago•0 comments

A Portrait of the Software Engineer, 2031

https://jamesjboyer.substack.com/p/a-portrait-of-the-software-engineer
1•aesthetics1•43m ago•0 comments

Ask HN: Is Facebook registration procedure broken?

2•stefanos82•44m ago•0 comments

I built a sentiment analyzer for Hacker News (as an MCP server)

https://mcpize.com/mcp/sentiment-analyzer
1•Lord_Dontavious•45m ago•0 comments

VibeOS – Hallucinated Operating System [video]

https://www.youtube.com/watch?v=z3pV6FHvcgM
2•doener•46m ago•0 comments

Academics set out vision for planetary survival

https://www.theguardian.com/environment/2026/jun/04/world-inequality-lab-equality-academics-plane...
4•worik•49m ago•0 comments

The future is controlled by companies who control the physical bottlenecks of AI

https://silicon-frontier.com/research/silicon-control
1•momentmaker•49m ago•0 comments

Why are there so many canines in fine art?

https://www.theatlantic.com/magazine/2026/07/the-dogs-gaze-thomas-w-laqueur/687312/
1•prismatic•49m ago•0 comments

Got a job, dropped this for 3 months – MaskOps, Polars PII masking in Rust

https://github.com/fcarvajalbrown/MaskOps
1•fcarvajalbrown•51m ago•0 comments

1D Image Tokenizers and Autoregressive Models for Dynamic Resolution Generations

https://arxiv.org/abs/2604.24885
1•PaulHoule•53m 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.