HN user

erichocean

5,380 karma

CTO at Xy Group

Posts85
Comments2,537
View on HN
www.youtube.com 7d ago

Programming Thinking [video]

erichocean
2pts0
www.youtube.com 17d ago

Home made GPU escalated quickly [video]

erichocean
182pts69
www.youtube.com 1mo ago

Building Hollywood Motion Capture from Scratch [video]

erichocean
2pts0
en.wikipedia.org 1y ago

Z3 (Computer) (1941)

erichocean
5pts0
twitter.com 2y ago

Paul Graham's Twitter account targeted by IDF

erichocean
138pts64
www.youtube.com 2y ago

The Tau Manifesto – With Michael Hartl [video]

erichocean
2pts1
www.youtube.com 3y ago

Pineapple: 32-bit RISC-V CPU that you can make at home

erichocean
14pts1
www.bogdandeac.com 3y ago

Hands-On: Exploit RISC-V CPU Using Return-Oriented Programming

erichocean
1pts0
github.com 3y ago

Stable Diffusion GUI with a graph/nodes interface

erichocean
3pts0
github.com 3y ago

Hugging Face Deep Reinforcement Learning Class

erichocean
3pts0
blog.pimaker.at 3y ago

Linux in a Pixel Shader – A RISC-V Emulator for VRChat

erichocean
4pts0
twitter.com 3y ago

Poaster app raises $2M after just a few weeks of coding

erichocean
2pts1
www.bloomberg.com 3y ago

Top Apple Executive Is Leaving Apple

erichocean
5pts0
www.youtube.com 3y ago

Projects with Most Lines of Codes Comparison

erichocean
1pts0
www.reuters.com 3y ago

Judge orders Twitter to give Elon Musk former executive's documents

erichocean
1pts1
news.ycombinator.com 4y ago

Tell HN: Amazon.com is limiting purchases of Audio CDs to four-per-week

erichocean
145pts96
www.youtube.com 4y ago

Bryan Cantrill – The Coming Firmware Revolution

erichocean
2pts0
www.telegraph.co.uk 4y ago

Scientists discover link between AstraZeneca vaccine and lethal blood clots

erichocean
8pts0
www.youtube.com 4y ago

GhostCell: Separating Permissions from Data in Rust

erichocean
1pts1
www.youtube.com 4y ago

HotOS 2021: Cores That Don’t Count (Fun Hardware)

erichocean
2pts0
developer.nvidia.com 5y ago

Rendering Dynamic Global Illumination with One Tiny Neural Network in Real-Time

erichocean
1pts0
research.nvidia.com 5y ago

Megakernels Considered Harmful: Wavefront Path Tracing on GPUs (2013)

erichocean
1pts0
news.ycombinator.com 5y ago

Show HN: Apple no longer repairing older MacBook Pros

erichocean
16pts32
newatlas.com 5y ago

AI learns from brain signals to create personalized attractive faces

erichocean
103pts46
news.ycombinator.com 5y ago

Ask HN: How does a private, nearly-inactive Twitter account get suspended?

erichocean
12pts15
github.com 5y ago

WireGuard Implementation for LwIP

erichocean
2pts0
fee.org 5y ago

Democrats Just Reintroduced a Labor Law That Would Destroy Uber

erichocean
3pts0
www.tabletmag.com 5y ago

Everything Is Broken

erichocean
4pts0
graymirror.substack.com 5y ago

2020, the Year of Everything Fake

erichocean
27pts24
www.youtube.com 5y ago

MIT PhD Analysis of Michigan Votes Reveals Unfortunate Truth of US Voting System

erichocean
2pts0

I mean if you're going to be that pedantic, then Clojure is "native" since all Clojure functions "compile to machine code" via the JVM's JIT.

Since Java 25/Project Panama, I have that kind of relationship with C from Clojure as well.

Codex can one shot the bindings flawlessly, and the interface is significantly faster for downcalls vs. JNI.

AI 2040: Plan A 12 days ago

Are there examples of where we have collective decided not to pursue knowledge? Successfully?

Studying human bio-diversity since WW2 is the most obvious example, though it hasn't been entirely successful.

Genomics is what finally broke the barrier, especially in the last decade or so.

GPT-5.6 13 days ago

I think the key is to get two LLMs looking at the same problem.

I use Codex because it's better at the kind of code I need written (math-heavy, 3D geometry code).

But if I was doing mainly UI code, I would do the opposite.

The arguments presented to a macro don't have to be valid code. Your "function evaluating functions" are all individually valid functions you've composed at runtime.

    (defmacro foo [code] ,,,)
    (foo "<some totally different language in a string>")
=> actual, compiled Clojure function built up by `foo` parsing the string, producing a Clojure list, and calling `(eval the-list)` and returning it.

I passed a string to `foo` in the example, but it could actually be anything the Clojure reader can parse even if it is semantically invalid—arbitrary Clojure data.

this just isn't the kind of professionalism needed for a serious project

It hasn't stopped Rust's growth, so I doubt this is true.

Most people don't care about this kind of interpersonal drama unless it impacts the actual technology itself.

GPT-5.6 13 days ago

I use Claude for planning, writing CRs, and code review.

Codex writes all of the code, no exceptions.

Works great, especially when you ask Claude to break up large CRs into roughly 10 minutes of Codex work each.

That's the approach I've taken with a bunch of legacy OpenCL code I've mechnically translated to Metal, worked great.

Even at $165K, it's worth it to have a better base to build on top of—especially since it didn't take a year's worth of time for three programmers.

It's 100% opt-in at the call site and doesn't affect existing code, so no?

Many people (including myself) already have checked key variants for maps; this mainly extends the syntax to destructuring too.

The only time I ever really found that GA was actually a benefit to me was performing rotations.

Maybe that's why I've found it so useful when doing rigging for animation—that's the entire job!

Personally, I've got a line of mileage out of using GA to express animation rigs.

I don't know about the rest of the article—I'm not a mathematician—but I certainly enjoying using GA a lot more compared to linear algebra, I find it way more intuitive and being able to visualize intermediate products on my rig is like a super power.

If it was that easy, I wouldn't have commented.

It's not, which is why it would be nice if they did the actual work (on your hardware).

I would 100% pay $16/hr to run a self-hosted instance, but I won't spend thousands of dollars to (maybe) get it working (my time + the hardware).

Half the code was written in a language you didn't understand. The other half was written using libraries you never heard of.

The author already describes himself as "not a rockstar developer", but if this is the definition of "rockstar" I need to recalibrate.

Being able to learn new languages and libraries, to me, is completely normal.

(Also: how funny is it to suggest rewriting code you self-admit you can't even read.)