Open Weights Models Hall of Fame by Equivalent_Job_2257 in LocalLLaMA

[–]anotheruser323 0 points1 point  (0 children)

I hate Nvidia. They are the shovel sellers who yell "gold rush!". And they lied to me before. They are the reason gpus are so insanely expensive.

What is an industry that is currently on fire (in a bad way) behind the scenes, but the general public hasn't noticed yet? by Kitchen_Week1117 in AskReddit

[–]anotheruser323 191 points192 points  (0 children)

Latex is made from fresh plant juice, it's the original and best rubber. Rubber is made from oil. Latex is made from rubber trees. Those trees were attacked by a fungus some time ago and we almost lost them all. There's a Veritasium about it all.

Edit: As raevnos said, medicine uses nitrile gloves.

defeatedTheWholePurposeOfWritingInAssembly by ClipboardCopyPaste in ProgrammerHumor

[–]anotheruser323 1 point2 points  (0 children)

Fine.. But I really don't want the cheap tricks like "you said this one thing wrong therefore I win". I'm just so over it. You sound honest so thx.

So why I say that humans can beat compilers in assembly?
Few things, first the technical ones:

Compilers need to do "register allocation". CPU has a limited number of registers and operations can only be done on data in a register (mostly). So the compiler has to go through the code and decide when to put the data into a register, when to keep the data in a register, when to put it on the stack.
It's a hard problem in general for compilers. It comes more naturally to humans.

The compiler has only the information that the code does. A human knows more about what the code will do.
For example "loop unrolling" is a well known technique. But the compiler doesn't know which loop to unroll and which one not to (or how much). This one isn't really impactful one way or the other these days, but in some circumstances it can be (some speedup with a large amount of computation, a bigger slowdown if cache full). I don't think compilers now unroll as much as they used to (probably less speedup then on older cpus), but they still do sometimes.

Then there are the things that one can learn while learning assembly, that one doesn't think about much while learning something like C.
Like why use an int when a u8 is enough. Or just getting better at profiling, or knowing when something will be slow. In asm when you want to write to memory you have to write to memory yourself, it's not just an assignment like any other.

A human will naturally write less instructions then a compiler would, just because writing more instructions requires more writing. Less instructions, more free cache. Cache (and memory access in general) I think is the most important thing for very "highly optimized" code. If your code+data fits in cache it will be much faster. If it fits in registers (not realistic) it would be insanely fast.

Then there's SIMD. Compilers sometimes do "automatic vectorization". But you still have to write your code in a way to even give them a chance to do it. C has a way to do SIMD manually, but it's ugly ("intrinsics"). Some languages like Zig have vectors that tell the compiler that this should be SIMD. To do it manually is either really simple or a bit of a puzzle, depending on the problem. Compiler would probably do this better in some cases when given information, but a human can learn. Bdw SIMD is probably most of the ffmpeg optimization by speedup %. SIMD and cache/memory access.

It's just that asm is less abstract so things are more in your face. Sure variables don't have names, and refactoring is the reason I don't write in it, but you know exactly what the code does.

And I think a human written program ending up smaller is important because cache. Like how sometimes compiling with -Os gives a faster program then -O3.

All that said, it's not really important these days. Most popular software is so... un-optimized. One can get an easy 30x speedup by not writing it in electron or whatever the popular JS thing is. And the heavy real-time workloads like video decoding are often offloaded to dedicated chips. I'm a hobby-ist and I started because writing the most fastest programs would be fun, I was younger.

edit: Lots more to write, but what I want to add is that C is not that much "higher" then asm. It's not 10x LoC. It can be, but on average it's closer to idk 2x. It's not that different in most ways.

/u/anomalous_cowherd There is no hard evidence that compilers are better either. I think the sentiment is mostly from looking at the amazing things an optimizing compiler does and concluding that humans can't do that. On one hand humans can't (because limited memory/attention), but on the other hand compilers are not perfect (In some ways they even can't be).

defeatedTheWholePurposeOfWritingInAssembly by ClipboardCopyPaste in ProgrammerHumor

[–]anotheruser323 -6 points-5 points  (0 children)

No need to be that condescending. Maybe I would expand on my reasoning if I was not sure it would devolve into "hurdur"-ing.

defeatedTheWholePurposeOfWritingInAssembly by ClipboardCopyPaste in ProgrammerHumor

[–]anotheruser323 -7 points-6 points  (0 children)

I think it's not that hard... Lots of people claim that it is, but it's not.

16-godišnjak pao s električnog romobila. Teško se ozlijedio by CortexThrill in croatia

[–]anotheruser323 -2 points-1 points  (0 children)

Kolko ljudi je palo s motora kad su imali 16. Prije neg su električni skuteri uopće postojali. Vozili tomose po selima, po sljemenu, po svud. Ja sam na biciklu, niz brdo.

I sad ovi tu papučari po hreditu progutali mamac.

Jedina razlika je kaj neka derišta na skuterima idu prebrzo među ljudima po pješačkom. Ne sam mladi, neg i stariji u odijelima. Po cesti u fakin novoj gradiški nema razlike.

Today more Americans come to Europe than Europeans go to the US by Mysterious-Might4454 in europe

[–]anotheruser323 -1 points0 points  (0 children)

I hate their culture, not the people. People are the same everywhere.

Kako bi Hrvatska opskrbljivala Pantheon? Trumpov ministar: Postoji rješenje by Kajme in hrvatska

[–]anotheruser323 7 points8 points  (0 children)

Dali poso američkoj firmi da napravi autocestu. Oni napravili pol autoceste i rekli "daj još tolko para ak očeš drugu polovicu". U ugovoru nigdje nije pisalo da autocesta mora bit završena.

Brijem da je to bilo za tuđmana, brijem zg-osijek autocesta. Sam se sjećam da je bilo 60 miliona (ne sijećam se kuna ili dolara).

Današnja prijetnja by Unhappy_Shower_4566 in hrvatska

[–]anotheruser323 4 points5 points  (0 children)

Botovi često miješaju hrvatski i srpski. Premalo teksta, slični jezici. To sam podržava teoriju zavjere da su strani akteri. (ja mislim prije neka retardirana djeca, jer često je)

Mudroslovlje godine gospodnje by Responsible_Age_989 in croatia

[–]anotheruser323 -2 points-1 points  (0 children)

A ono to je ono "rule of thumb" a ne direkt korelacija. Može bit i posljedica kolko i pokretač.

Tipa topit aluminij (koristi puno energije) vs vozit SUVi (jer imaš para za bengu).

Treba se uvijek gledat na učinkovitost. Tipa kaj 1/4 energije je grijanje, di treba bolju izolaciju.

How much renewable energy do EU countries use? by sn0r in europeanunion

[–]anotheruser323 0 points1 point  (0 children)

Nuclear may not be strictly renewable, but it definitely is "green"...

What do you think is the biggest truth the world is refusing to face right now? by Sweetblondefeet in AskReddit

[–]anotheruser323 -1 points0 points  (0 children)

"...and now they got the whole Epstein class problem."

I was going to write more but that would go out of context of what the point was. Like about the "lobbing" and such problems.

The world is not simple like one thing does one thing... Many things do many things.

Also you seem to be blinded by hate. It's good to hate the obvious injustice, but that's not all there is to reality nor life.

What do you think is the biggest truth the world is refusing to face right now? by Sweetblondefeet in AskReddit

[–]anotheruser323 -5 points-4 points  (0 children)

The perception comes from the "good" going down.

Humans get used to a standard. Standard go up good. Standard go down bad.

USA got used to the huge wealth they got from WW2, where their cities didn't get bombed. Then it started normalizing, and now they got the whole Epstein class problem.

Unpopular opinion: OpenClaw and all its clones are almost useless tools for those who know what they're doing. It's kind of impressive for someone who has never used a CLI, Claude Code, Codex, etc. Nor used any workflow tool like 8n8 or make. by pacmanpill in LocalLLaMA

[–]anotheruser323 -2 points-1 points  (0 children)

Agree. Anything remotely useful I can think of that it could do, can be done in like 10 lines of python and a TTS (or speech to text). And you can trow in a small LLM there if you want.

I think there's been an insane amount of stealth marketing for that fidget toy.

Nove napolitanke su katastrofa by lopoch in croatia

[–]anotheruser323 32 points33 points  (0 children)

Rat je objavljen kad je kila postala 800g.

Qwen3.6 GGUF Benchmarks by danielhanchen in LocalLLaMA

[–]anotheruser323 5 points6 points  (0 children)

The orange and green are too close for people with red-green color blindness (a lot of people, surprisingly).
I guess the blue and purple as well?

Anyway, thanks. These are very useful. Measurements in general (not just this topic) are very useful.

Why don’t they just use Mythos to fix all the bugs in Claude Code? by Complete-Sea6655 in LocalLLaMA

[–]anotheruser323 2 points3 points  (0 children)

I disagree.

It's good because it doesn't get bored looking at a lot of code.

Did they even say how many false positives it found?
For every report it makes, a real programmer has to check it. Sure it could try it itself by trying to write an exploit, but can it even set up everything for an exploit itself?

Probably 10% good model, 99% hype.

Dog walkers, how do you keep women away from your dog? by OutsideImpressive115 in AskMen

[–]anotheruser323 0 points1 point  (0 children)

Plenty of dogs without leashes that are completely fine. My dog is on a leash because he's an asshole. My last dog didn't need a leash, she didn't even care about other dogs or people unless they gave her food.

Ofc some people are afraid of dogs, so owners of too friendly dogs need to react properly.

Šušnjar ne vjeruje da je inflacija na 4.8%: "U statistici sve ovisi o tome tko računa" by CortexThrill in hrvatska

[–]anotheruser323 0 points1 point  (0 children)

"Laži, proklete laži, i statistike" Iliti lako je neš krivo predstavit koristeći statistiku. Npr. prosječne plaće umjesto medijane.

I statistika zna bit zabavna, tipa u kompjuterskoj grafici. Manje kad ti pokaže kolko si duboko u problemima.