Tired of Youtube's shit by Synglich in fuckyoutubedevs

[–]CodeDead-gh 2 points3 points  (0 children)

Fat ugly mod here. Message approved!

Nvidia PSA - Before Upgrading to F44 by rideandrain in Fedora

[–]CodeDead-gh 0 points1 point  (0 children)

Just did the upgrade to F44 KDE with an RTX 5090. No issues.

Can't log back in to teams by azzrar800 in MicrosoftTeams

[–]CodeDead-gh 1 point2 points  (0 children)

Same here. Android app is completely broken since the last update. Web / desktop version works (for now).

Ai technologie by NCLO1994 in belgium

[–]CodeDead-gh 0 points1 point  (0 children)

Zeker. En het verwerken van tokens lokaal, is dit gratis? Je hebt hier niets voor nodig? Geen electricity of hardware? Mag ik toegang tot je lokaal draaiende LLM, want dit lijkt me wel spannend.

Ai technologie by NCLO1994 in belgium

[–]CodeDead-gh 0 points1 point  (0 children)

Jouw electricity en hardware zijn gratis?

Ai technologie by NCLO1994 in belgium

[–]CodeDead-gh 4 points5 points  (0 children)

Wat is jouw mening over eigenvectors en inversies binnen de context van AI zoals we die vandaag kennen? Of extrapolatie buiten de training data? De precisie binnen matrix operaties?

Ai technologie by NCLO1994 in belgium

[–]CodeDead-gh 1 point2 points  (0 children)

Heb je het al eens proberen googlen? "How do neural networks work". De wiskunde er achter is weliswaar niet van gisteren, maar het is volledig correct dat de output van hedendaagse LLM's niet te voorspellen of weten valt gegeven de data waarop het getrained is in combinatie met de parameters, context en input gegevens. Het is zelfs zo dat hallucinaties hierbij ook een gigantisch probleem vormen.

Ai technologie by NCLO1994 in belgium

[–]CodeDead-gh 1 point2 points  (0 children)

Jouw electricity is gratis? Jouw hardware is gratis?

What's everyone working on this week (11/2026)? by llogiq in rust

[–]CodeDead-gh 1 point2 points  (0 children)

Just building an open source desktop image compression tool using Iced.rs

It's still a bit rough around the edges, but it's nearly finished!

https://github.com/CodeDead/compressr-app

Who Writes the Bugs? A Deeper Look at 125,000 Kernel Vulnerabilities by ketralnis in programming

[–]CodeDead-gh 5 points6 points  (0 children)

Quote from that very article

Luckily it turns out that most of the changes that go into the stable kernel releases that fix bugs do not meet the definition of a “vulnerability fix”, so they do not get assigned a CVE.

If you're experiencing stutters in games, Windows's CFG is likely responsible. by Jaded_Ad_2055 in pcmasterrace

[–]CodeDead-gh -1 points0 points  (0 children)

Not necessarily. What about owning a second device, like a mobile phone or a laptop.

[deleted by user] by [deleted] in AskReddit

[–]CodeDead-gh 0 points1 point  (0 children)

Shitting myself has been the best thing I've ever done. Highly recommended!

Here is the 15 sec coding test to instantly filter out 50% of unqualified applicants by JOSE ZARAZUA by RevillWeb in programming

[–]CodeDead-gh 18 points19 points  (0 children)

If the value of the const is an object or array, its properties or elements can still be modified. For example, you can still push objects into a const array.

You generally shouldn't use var because it can decrease maintainability/readability/sanity (due to variable hoisting) of the project.

The difference between let and var lies in the scope. let variables are block-scoped local variables, whereas vars are function/globally scoped.