frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Implementing dependent types: how hard could it be? (Part 1)

https://jerrington.me/posts/2025-05-23-depty-impl.html
1•fanf2•4s ago•0 comments

We ask Valve the big questions around the Steam Machine, Frame and Controller

https://youtu.be/yvu66Y2VLq8
1•doener•5m ago•0 comments

Google is starting to bridge OpenAI's product moat with Gemini's "dynamic view"

https://spyglass.org/gemini-vs-chatgpt-product/
1•cesidio•6m ago•1 comments

Git 3.0 Retires Master: What Developers Need to Know

https://jsdevspace.substack.com/p/git-30-finally-retires-master-what
1•javatuts•7m ago•0 comments

Americans are holding onto devices longer than ever and it's costing the economy

https://www.cnbc.com/2025/11/23/how-device-hoarding-by-americans-is-costing-economy.html
1•taubek•11m ago•0 comments

A Proposal for Simplified, Modern Definitions of "Object" and "Object Oriented"

https://web.archive.org/web/20140804162018/http://wcook.blogspot.com/2012/07/proposal-for-simplif...
1•signa11•11m ago•0 comments

Introducing F# (F Sharp) 10

https://devblogs.microsoft.com/dotnet/introducing-fsharp-10/
1•keyle•11m ago•0 comments

Alice the Caml – new build system for OCaml

https://www.alicecaml.org/
1•keyle•12m ago•0 comments

We removed the τ2-bench airline eval because Opus 4.5 was too clever

https://twitter.com/alexalbert__/status/1993068200121213222
2•stared•16m ago•0 comments

Breaking AI Context Silos: A Proposal for a Portable Memory Protocol (PMX)

1•sravanth_thota•18m ago•0 comments

Having Fun with K&R C

https://sbaziotis.com/compilers/having-fun-with-k-and-r-c.html
1•thunderbong•18m ago•0 comments

PGH Transit Atlas

https://rzrizaldy.github.io/pgh-transit-atlas/
1•altilunium•20m ago•0 comments

A Practical Framework for Measuring Impact of AI Coding Assistants

https://www.oobeya.io/blog/ai-measurement-framework
1•emredu•21m ago•0 comments

Show HN: I built the literal Duolingo Killer

https://kanjieight.vercel.app/
7•Mikecraft•24m ago•5 comments

Google Leapfrogged Rivals with New Gemini Rollout

https://www.wsj.com/tech/ai/google-gemini-3-ai-behind-scenes-e1787729
2•tzury•26m ago•0 comments

Vdu_controls – a DDC control panel for monitors

https://github.com/digitaltrails/vdu_controls
2•anewhnaccount2•26m ago•0 comments

NSan: A Floating-Point Numerical Sanitizer

https://arxiv.org/abs/2102.12782
1•anewhnaccount2•27m ago•0 comments

Aussies sell their tech company to US giant for $5B

https://www.afr.com/technology/aussies-sell-their-tech-company-to-us-giant-for-5b-20251124-p5nhv7
1•iamtech•27m ago•0 comments

Unu.ran – Universal Non-Uniform RANdom Number Generators

https://statmath.wu.ac.at/unuran/doc/unuran.html
1•anewhnaccount2•27m ago•0 comments

Introvert – The AI Dating Co-Pilot Launches on Geyser Fund Today

https://geyser.fund/project/introvert
1•shegby•28m ago•1 comments

Michael Burry's Substack

https://michaeljburry.substack.com/
3•mihau•30m ago•0 comments

Jony Ive and Sam Altman say they have an AI hardware prototype

https://www.theverge.com/news/827607/openai-hardware-prototype-chatgpt-jony-ive-sam-altman
2•signa11•31m ago•0 comments

The Mediating Role of Working Memory in ADHD Inattention: A Classroom Study

https://link.springer.com/article/10.1007/s10802-017-0338-x
1•teekert•33m ago•0 comments

Interview with Jan David Nose

https://blog.rust-lang.org/2025/11/25/interview-with-jan-david-nose/
1•quapster•35m ago•0 comments

Architecture no longer considered a "professional degree" in US

https://www.dezeen.com/2025/11/24/architecture-degree-not-professional-usa/
1•Hard_Space•37m ago•1 comments

A Cell So Minimal That It Challenges Definitions of Life

https://www.quantamagazine.org/a-cell-so-minimal-that-it-challenges-definitions-of-life-20251124/
2•isaacfrond•38m ago•0 comments

Talk in Character: simple AI chats with fixed or custom personas

https://www.talkincharacter.com/
1•Nukloop•38m ago•0 comments

Show HN: BreakToGoal – A planner calendar that break big goals into tasks

https://breaktogoal.com
2•jtnt101•39m ago•0 comments

Quick tutorial to get started on Org Social

https://en.andros.dev/blog/ddd78757/quick-tutorial-to-get-started-on-org-social/
1•andros•41m ago•0 comments

Meta knows how bad its sites are for kids, say lawyers

https://www.theregister.com/2025/11/24/meta_sites_kids/
3•beardyw•48m ago•0 comments
Open in hackernews

Universal Intelligence v1.0 is out AI made simple

https://github.com/blueraai/universal-intelligence
1•bluera•6mo ago

Comments

bluera•6mo ago
Hey HackerNews, for the past few years I've been exploring machine learning, from modeling all sorts of things, to language and vision models, all the way up to the other "consumer" end of the spectrum: using and crafting agentic apps. The learning curve has been steep, and the field moves fast. It's a lot for anyone to absorb.

I thought, having gone through this, can I use what I learned to make it easier for the person that comes next? That's where I am today.

With that in mind, I've started with open sourcing a project aimed at *simplifying and standardizing the usage of models, tools and agents*, so anyone can start coding and deploying cross-platform AI apps on day 1, without any prior AI experience, without learning engines or frameworks, and *on any hardware* (model, quantization, engine, backend all dynamically set by default, optimized for your device). The interface is later customizable, so it grows with you as you learn, up to production readiness.

This is all you need to get started:

=====================================================

from universal_intelligence import Model

model = Model()

result, logs = model.process("Hello, how are you?")

=====================================================

- Both local and cloud-based models are available, with the same simple interface. Can be instantly swapped.

- Similar APIs are made available for tools and agents —all of which are composable, interoperable, and capable of sharing hardware resources to scale at virtually no cost.

- Available in Python or JS/Typescript, usable anywhere (desktop, mobile, web, cloud).

- Can work with your favorite agent framework and MCP tools if you'd like.

Also, no more managing tokens or fetching “['choices'][0]['message']['content']”.

I'd love to hear about your experience and challenges, to think about where to take this next.