Hacker Newsnew | past | comments | ask | show | jobs | submit | Trung0246's commentslogin

Maybe Mac Mini M5 this year?

Maybe Mac Mini M5 this year?

Does this use pretext?


It does. The original version didn't, but I decided to throw it in in the end to see what the fuss was all about. It gave nice resize responsiveness which is cool, but pretext is not a requirement for this effect


Wikipedia have a pretty good Z combinator demo: https://en.wikipedia.org/wiki/Fixed-point_combinator

---

const K = <A, B>(a: A) => (_b: B) => a; const S = <A, B, C>(a: (x: C) => (y: B) => A) => (b: (x: C) => B) => (c: C) => a(c)(b(c));

const I = S(K)(K); const B = S(K(S))(K); const C = S(B(B)(S))(K(K)); const W = C(S)(I); const T = C(I); const V = B(C)(T); const I1 = C(C(I)); const C1 = B(C); const R1 = C1(C1); const V1 = B(R1)(C1); const I2 = R1(V);

const Z = B(W(I1))(V1(B)(W(I2)));


Unfortunately it still unable to handle to context sensitive language which is a deal breaker for me (like C++ raw string as an example).

https://github.com/ohmjs/ohm/issues/158


Hi, can you DM the firmware?


I'm not sharing the firmware for legal reasons, but IIRC https://lunars.dev/ does provide them


Actually you don't even need ASM at all. Just need to have smart use of compiler built-in to make it truly portable. See my composable continuation implementation: https://godbolt.org/z/zf8Kj33nY


Can't edit the link but this is the official tweet: https://x.com/soraofficialapp/status/2036546752535470382


Does Live Caption Translate available? I think that feature is only available for Google Pixel which is unfortunate.


Here's my very funny implementation of delimited continuation in plain C with zero ASM usage (with help from a specific compiler built-in)

https://gist.github.com/Trung0246/8f801058212d3bbbef82690a31...

Demo (old version with outdated compile flag but still works): https://godbolt.org/z/n9ch4TM3s

It works for gcc/clang/msvc with -O0, -O1, -O2, and even -O3


Consider applying for YC's Summer 2026 batch! Applications are open till May 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: