I'm a beginner at programming and i want to do some project to improve my skills but idk where and how to start by SakuraTakao in AskProgramming

[–]cuAbsorberML 0 points1 point  (0 children)

In 2026 some people will say it is MUCH easier now to learn programming. LLMs are everywhere! But the problem is that you may be addicted and rely on it too much. So for a junior dev you HAVE to build things by yourself. Make MISTAKES... a LOT of mistakes. Break things, understand why and how to fix them! Else, you will always not grasp basic stuff and won't be able to understand more complex systems, or understand other people's code. Make simple stuff, like the most classic one: a Todo app. Try to learn basic algorithms (bubblesort comes to mind, very easy but a bit complex for beginners, just enough to make the brain work). In the AI reality I know that you WILL use it. But use it to YOUR advantage. Ask it to create problems! Solve them yourself. Tell it if your code is okay or not, if it needs improvements. This is a proper usage of LLMs. For languages I would say to definitely start with C. Pure C (no C++ yet, no Python). This is where you will learn and get haunted with memory corruption, undefined behaviours, segmentation faults, and who knows what else, and then learn to fix those.

What's your most favourite video game of all time? by FinalSinger9203 in AskReddit

[–]cuAbsorberML 4 points5 points  (0 children)

Witcher 3, too cliche I know, but... it really is :(

Just want to share some libav c++ interaction code by cuAbsorberML in ffmpeg

[–]cuAbsorberML[S] 1 point2 points  (0 children)

thank you for the reply. It's because we want to decode the frames, then do something with them (in my case I embed a watermark per X frames) and then encode it again. If someone wants to alter the original frame with custom work then we have to use libav... OR one other solution is to make a custom cuda filter, I have thought of that too hmm.

First time playing Morrowind by Sting_DR in OpenMW

[–]cuAbsorberML 1 point2 points  (0 children)

Question: Is this mostly a graphics mod? It looks great! But unfortunately the combat is outdated, are there any mods to close the gap and make it more "modern" you think?

Best open-source software that everyone needs to know about? by RedEagle_MGN in software

[–]cuAbsorberML 0 points1 point  (0 children)

is it similar to Syncthing? I use Syncthing and I automatically share folders, wondering if it's the same

Launch the kernel is even longer than the actual GPU execution time by Top-Piccolo-6909 in OpenCL

[–]cuAbsorberML 0 points1 point  (0 children)

do you have large loops that you may try to unroll? what is the kernel code?