Readit News logoReadit News
BoingBoomTschak commented on IQ tests results for AI   trackingai.org/home... · Posted by u/stared
cedilla · 13 days ago
"The Bell Curve" is, let's say, highly controversial and not a good introduction into the topic. Its claim that genetics are the main predictor of IQ, which was very weakly supported at the time, has been completely and undeniably refuted by science in the thirty years since it's publication.
BoingBoomTschak · 13 days ago
How much of that controversy is manufactured, though? https://en.wikipedia.org/wiki/The_IQ_Controversy,_the_Media_... (if even Wikipedia can't drag this through the mud...)
BoingBoomTschak commented on Anthropic's CEO says in 3-6 months, AI will write 90% of the code (March 2025)   businessinsider.com/anthr... · Posted by u/amarcheschi
JCM9 · 14 days ago
Probably a bit ambitious, but I do see a future not too far off where junior and mid-tier developer roles basically disappear.
BoingBoomTschak · 14 days ago
Thing is that experiencde programmers must start at "junior" like any other...
BoingBoomTschak commented on Coalton Playground: Type-Safe Lisp in the Browser   abacusnoir.com/2025/08/12... · Posted by u/reikonomusha
taeric · 16 days ago
The big miss here is that "compile time" is typically understood to be "batch compilation" time for languages. For Common LISP, macros run at read time. Which is often doable during runtime.
BoingBoomTschak · 16 days ago
No, macros run at compile time (cf https://www.lispworks.com/documentation/HyperSpec/Body/03_bb...), you may be confusing macros and reader macros.
BoingBoomTschak commented on AI is killing the web – can anything save it?   economist.com/business/20... · Posted by u/edward
sameerds · a month ago
Come on, it can't be that bad! If such small nerdy groups existed, what are the chances that their membership does not overlap with places like HN? It would only be a matter of time before we heard about them.

> I am now older and more burned out and less prone to chasing after cool new things.

Yeah, mostly true for me too. I hear about cool new things, but rarely choose to chase after them.

BoingBoomTschak · a month ago
People having lived through one or more eternal Septembers are the reason you don't hear about them much. And also because there are few such places that haven't succumbed to the mainstream politics mind virus.
BoingBoomTschak commented on AV1@Scale: Film Grain Synthesis, The Awakening   netflixtechblog.com/av1-s... · Posted by u/CharlesW
crazygringo · 2 months ago
This fails to acknowledge that synthesized noise can lack the detail and information in the original noise.

When you watch a high-quality encode that includes the actual noise, there is a startling increase in resolution from seeing a still to seeing the video. The noise is effectively dancing over a signal, and at 24 fps the signal is still perfectly clear behind it.

Whereas if you lossily encode a still that discards the noise and then adds back artificial noise to match the original "aesthetically", the original detail is non-recoverable if this is done frame-by-frame. Watching at 24 fps produces a fundamentally blurrier viewing experience. And it's not subtle -- on old noisy movies the difference in detail can be 2x.

Now, if h.265 or AV1 is actually building its "noise-removed" frames by always taking into account several preceding and following frames while accounting for movement, it could in theory discover the signal of the full detail across time and encode that, and there wouldn't be any loss in detail. But I don't think it does? I'd love to know if I'm mistaken.

But basically, the point is: comparing noise removal and synthesis can't be done using still images. You have to see an actual video comparison side-by-side to determine if detail is being thrown away or preserved. Noise isn't just noise -- noise is detail too.

BoingBoomTschak · 2 months ago
Don't want to sound too snarky, but aren't you just saying that good denoisers must be temporal in addition to spatial? Something like an improved V-BM3D (cf https://arxiv.org/abs/2001.01802) and even traditional V-BM3D works fine even on non-Gaussian noise.

Together with external noise generation (something like https://old.reddit.com/r/AV1/comments/r86nsb/custom_photonno...) that'd support external denoising (pass the reference and denoised video to get the grain spec), the whole FGS thing would be much more interesting.

BoingBoomTschak commented on Smalltalk, Haskell and Lisp   storytotell.org/smalltalk... · Posted by u/todsacerdoti
auggierose · 3 months ago
> CL still got symbols, the reader (and its macros), gradual typing and user available runtime compilation (compile and compile-file).

TypeScript has all of these, too.

BoingBoomTschak · 3 months ago
Really? You can `(compile nil my-lambda)` without having to write a JIT yourself?

I meant reader macros, by the way: can it do that?

  ; A comment
  (set-macro-character #\% (get-macro-character #\;))
  % Also a comment

BoingBoomTschak commented on Smalltalk, Haskell and Lisp   storytotell.org/smalltalk... · Posted by u/todsacerdoti
wk_end · 3 months ago
There's a lot in this article that I really identify with: the preference for a functional style (even if I'm just not smart enough to do the whole ultra-abstract symbol soup Haskell thing); the comfort I feel leaning on the compiler; "it also always feels like I’m tricking Lisp into doing what I want, rather than simply expressing what I want" feels like it came right from my brain.

God, Lisp...the core language isn't exactly that interesting in this day-and-age. Dynamic typing, garbage collection, anonymous functions, this has been the bread-and-butter of Python, JS, Ruby, etc. developers for like 20 years now. It's got some really powerful features like conditions and CLOS. But then the bulk of the language and library built on top is such a mess: it's missing so much basic functionality, but also has so many niche functions that can be configured every which way with niche keyword arguments, and they all turned out to be evolutionary dead-ends and much worse than what the rest of the world settled on (actually CLOS probably falls into this category too). I think it's this, more than anything, that makes programming in Lisp feel like an act of trickery rather than clear thinking.

But I'll also say that I've been hobby programming in Lisp a bit recently and, despite that, I've been finding it immensely pleasurable, the first time I've really enjoyed working with a computer in years. The highly interactive, image-based workflow is just so much smoother than my day job, where I'm constantly jumping between VSCode and Chrome and a console and manually rebuilding and sitting around waiting...

Macros may be a double-edged sword - they encourage monstrosities like LOOP, rather than building more powerful/regular/comprehensible language features like iterators or comprehensions. BUT when paired with that interactive development experience, it really feels like you're in a dialogue with the computer, building out a little computational universe.

BoingBoomTschak · 3 months ago
>God, Lisp...the core language isn't exactly that interesting in this day-and-age. Dynamic typing, garbage collection, anonymous functions, this has been the bread-and-butter of Python, JS, Ruby, etc.

CL still got symbols, the reader (and its macros), gradual typing and user available runtime compilation (compile and compile-file).

I find the core language itself near perfect (mostly the historic stuff like threads/atomics/unicode missing, the whole divide between normal CL and CLOS and lack of recursive and parametric typing") but the standard library quite baroque and lacking; still infinitely more serviceable than C's, though.

BoingBoomTschak commented on Using Ed(1) as My Static Site Generator   aartaka.me/this-post-is-e... · Posted by u/BoingBoomTschak
BoingBoomTschak · 3 months ago
The quite cool journey of a hacker trying to find his favourite SSG itch scratching position.

What inspired me to post it is that I cobbled a fun HTML preprocessor using cpp to someone today: https://git.sr.ht/~q3cpma/html-cpp (I use a Common Lisp contraption for myself).

u/BoingBoomTschak

KarmaCake day578April 22, 2024
About
Mail: smug.lisp.weenie@posteo.net | Website: https://world-playground-deceit.net | Country: France
View Original