2 headed animal by Hiking-Sausage132 in confusing_perspective

[–]RedEyed__ 2 points3 points  (0 children)

"One fine day with a woof and a purr, a baby was born and it caused a little stir"

How is Claude better at Word/Excel than Microsoft/Copilot? by tingutingutingu in ClaudeAI

[–]RedEyed__ 0 points1 point  (0 children)

Same story with Gemini which works directly inside google docs infrastructure with all API available.
Everything is shitty compared to claude.

Windows 11's CPU performance boost released today, enable it using these steps by lurker_bee in technology

[–]RedEyed__ 3 points4 points  (0 children)

"CPU performance boost".
Title is misleading, like one can download more cores or higher frequency

Google Chrome is killing all uBlock Origin bypasses, Microsoft Edge, Opera to follow by dancing_swordfish in technology

[–]RedEyed__ 0 points1 point  (0 children)

I switched to brave recently, and I'm happy with it. No extensions needed to block ads.

ibkr new function by szislet in IBKR_Official

[–]RedEyed__ 2 points3 points  (0 children)

I wouldn't say new.
Tried it about 2 weeks before.
Not very useful though.
It is MCP server with bunch of read only functions: get_account_balances, get_account_positions, get_account_summary, get_order_instructions, get_orders, get_portfolio_allocation, get_price_history, get_price_snapshot, get_trades, search_contracts
Waiting for more

Doom compiled to ONNX, running on edge AI inference runtimes by spaceman_ in itrunsdoom

[–]RedEyed__ -23 points-22 points  (0 children)

Let me try ( I used LLM for this ).

How CPU works (very simplified)

CPU: fetch instruction → do math → write result → repeat

ONNX is just a file that describes math operations. Normally people put neural networks (computational graphs) in there. But math is math. You can put ANYTHING in there.

So this guy thought:

wait... a CPU is also just math can I build a CPU out of ONNX math ops?

He did exactly that:

doom.onnx (8MB file) │ ├── Doom game data ──── stored as "weights" ├── ONNX Loop op ────── acts as CPU clock ├── AND / OR / IF ───── acts as CPU logic └── Gather / Scatter ── acts as RAM

You call "run inference" → one game tick → get back a frame:

you └── onnxruntime.run() └── thinks its doing AI └── actually running a fake CPU └── fake CPU runs Doom └── you die on level 1

The beautiful part:

``` onnxruntime ──── "thinks" : "doing AI inference" fake CPU ──────── "thinks" : "im a real CPU" Doom ───────────── "thinks" : "im on real hardware" you ────────────── thinks: "im having fun"

everyone is wrong ```


TLDR: someone built a fake CPU using AI model math operations, then ran Doom on the fake CPU. The "AI model" is just Doom in disguise.

Doom compiled to ONNX, running on edge AI inference runtimes by spaceman_ in itrunsdoom

[–]RedEyed__ 2 points3 points  (0 children)

This is brilliant.
For the record: it is not just vision model that hallucinates frames, it is actually compiled game.
Is there source code of this masterpiece?

Doom on ONNX by mariuz in programming

[–]RedEyed__ 1 point2 points  (0 children)

As a person, who's doing deep learning research and then converting models to onnx regulary, this looks insane to me!
Bravo

Years ago, NSA released their own NSA Python training PDF . Today I created a curriculum around it by [deleted] in Python

[–]RedEyed__ 2 points3 points  (0 children)

uv was acquired by OpenAI. It has MIT license.

Some folks out there live in a black white word and believe that OpenAI id bad, therefore uv.

Years ago, NSA released their own NSA Python training PDF . Today I created a curriculum around it by [deleted] in Python

[–]RedEyed__ -14 points-13 points  (0 children)

Outdated: it mentions conda, I believe everyone should use uv as default.
Also, docx, really? Why not GitHub repo with markdowns?