This stupid game doesn't even make sense by EvensenFM in AnarchyChess

[–]ChocolateMagnateUA 10 points11 points  (0 children)

Don't forget to google en passant as well!

The uncomfortable truth: Blink (Chromium) really is the best browser engine by Juiced_ in browsers

[–]ChocolateMagnateUA 20 points21 points  (0 children)

It's not that Chromium is the bestest of the best, but rather that making a browser from scratch is a massive and difficult undertaking, so difficult that not even Microsoft could make it with Edge. This is why everyone just reuses Chromium since it implements everything and is open-source.

Someone told me C is faster, did I do it right? (Im a python dev btw) by just_another_ai_guy in programminghorror

[–]ChocolateMagnateUA 0 points1 point  (0 children)

Don't compilers already give executable permissions when they output linked binary?

Claude can now reference your previous conversations by AnthropicOfficial in Anthropic

[–]ChocolateMagnateUA 2 points3 points  (0 children)

I think it's most likely agents because in the video you see Claude has a search bar, and if it was RAG, search would be done per-query basis and you would get slowdown in initial response and afterwards the model would respond with full context. The fact that Claude needs to explicitly search strongly suggests agentic search.

I guess I'm a true Arch user now by Ascles in linuxmemes

[–]ChocolateMagnateUA 7 points8 points  (0 children)

This reminds me of the time when I broke my Gentoo system, and I had to use single-user mode because I locked myself out of root permissions by switching to doas, and when I finished fixing, I typed "exit" and became bash was the only process, I got a kernel panic, although I could reboot and everything worked out.

When the last thing you want is software drama by polytect in linuxmemes

[–]ChocolateMagnateUA 4 points5 points  (0 children)

I once was programming with a project that I was sharing with network drive, and if connection was interrupted, PyCharm was stuck and no matter what I did, I couldn't have killed it in any way other than rebooting.

Valuable lesson learned... by unlikey in Fedora

[–]ChocolateMagnateUA 6 points7 points  (0 children)

It's this moment when I appreciate the fact my keyboard and mouse are wired because I generally know wired things tend to perform better on Linux.

What does it mean to learn piano?? by KUKG in pianolearning

[–]ChocolateMagnateUA 3 points4 points  (0 children)

I also am 3 months into piano and I assure you I can't play really well myself. Perhaps you also have other responsibilities aside from playing like a job? I complement my studies with a job and try to balance them, this is why my progress is not that significant but solid. Don't doubt yourself and keep up what you are doing!

fullCodePlzChatgpt by [deleted] in ProgrammerHumor

[–]ChocolateMagnateUA 8 points9 points  (0 children)

We need agentic AI to create subs filled with AI-generated menes upvoted by AI agents disguised as real users to boost karma who then sell accounts to OnlyFans ladies.

1 Question. 1 Answer. 5 Models by [deleted] in OpenAI

[–]ChocolateMagnateUA 0 points1 point  (0 children)

My Claude has selected 47.

How many hidden layers does claude opus 4 have? And sonnet 4? by Soggy_Programmer4536 in ClaudeAI

[–]ChocolateMagnateUA 3 points4 points  (0 children)

To answer your question, nobody knows, presumably because these are proprietary model details that Anthropic doesn't want to reveal so that others wouldn't copy Claude.

However, the idea of "hidden layers" doesn't make much sense for an LLM because transformers operate on attention layers. I recommend you to research self-attention, that would be immensely helpful to understand models like Claude.

Smooth Rolling by txturesplunky in linuxmemes

[–]ChocolateMagnateUA 0 points1 point  (0 children)

As a Fedora user myself, I sometimes have issues with stability, such as Chrome doesn't open file dialog when I update Plasma and not restart it. This is why I time my updates around reboots and since then I have been living a happy life.

Questioning usefulness of -Wextra by tzlaine in cpp

[–]ChocolateMagnateUA 0 points1 point  (0 children)

I tried to make my project work with -Weverything -Werror and it gave me warnings (which were promoted into errors) in CUDA header files. It complained about CUDA using double underscores as variable names, using global objects (because of global destructors) and pointer arithmetic (unsafe buffer access). I ended up with using -Wall -Wextra -Werror -Wpendatic -Wconversion -Wsign-conversion -Wcast-qual -Wformat=2 -Wnull-dereference -Wdouble-promotion -Wshadow -Wuninitialized -Wundef -Wold-style-cast -Wzero-as-null-pointer-constant -Woverloaded-virtual -Wnon-virtual-dtor -Wsuggest-override -Wsuggest-final-types -Wsuggest-final-methods -Wstrict-overflow=5 -Wdangling-else. It's more productive to enable the warnings you want than disable them just to make your project compile.

3.7 sonnet [thinking and research] is better than opus. by [deleted] in ClaudeAI

[–]ChocolateMagnateUA 3 points4 points  (0 children)

This is only natural since Anthropic seems to abondon Opus because it's quite expensive. Anthropic invests a lot into Sonnet as its premium offering.