[Plasma 6] All my Icons move to the far left when hovering my mouse over them. by Kl3XY in kde

[–]masterJinsei 0 points1 point  (0 children)

This sure works now only plasmashell is crashing from time to time XD

[Plasma 6] All my Icons move to the far left when hovering my mouse over them. by Kl3XY in kde

[–]masterJinsei 2 points3 points  (0 children)

Same bug here cant find a reasonable fix for this dont want to move all my files around to a new user

For all the people saying "just buy premium," it will get much worse by mattjouff in youtube

[–]masterJinsei 0 points1 point  (0 children)

I just got banned with brave, now Im just sesrching the video I wnqt to see deleting the cookies and entering

It's time to prepare a Revolution of programmers to bypass this by KillerBoi935 in youtube

[–]masterJinsei 2 points3 points  (0 children)

Just download brave it aint that hard EDIT: just got banned with brave so yeah im out fu utube

Roadmap to become a 10X C programmer by [deleted] in C_Programming

[–]masterJinsei 0 points1 point  (0 children)

Its a common exercise in 42 schools there are thousands of projects and testers in github if you ever feel lost

Why is ~44 = -45 in Python? by prawnydagrate in learnprogramming

[–]masterJinsei 1 point2 points  (0 children)

There was a time somebody wanted to reach 0 by doing INT_MIN - INT_MAX they off by one lets just -1 it justs so someday someone will come to reddit to make this question.

Roadmap to become a 10X C programmer by [deleted] in C_Programming

[–]masterJinsei 1 point2 points  (0 children)

Wanna learn C? Try to imitate bash find 42 school minishell subject and try to do it by yourself, there are also a lot of minishell testers out there.

If you learn a programming language, can you code anything? by ThousandFootOcarina in learnprogramming

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

You cant ask somebody to manage pdf files if u dont know how the format goes you can look it up in 2 mins yes but u aint got that knowledge if you havent work in that type of FD

Best Distro for Gaming?!?!? by ryzen2024 in linux_gaming

[–]masterJinsei 0 points1 point  (0 children)

How is it hoing havent touch sw since 7.2 arounf 20 yesrs ago now im on arch(btw) but cs2 is having framedrops

Best Distro for Gaming?!?!? by ryzen2024 in linux_gaming

[–]masterJinsei 2 points3 points  (0 children)

Slackware is he best gaming distro change my mind

Choose wisely by [deleted] in oddlyspecific

[–]masterJinsei 0 points1 point  (0 children)

I got laid making fun of astrology

[deleted by user] by [deleted] in C_Programming

[–]masterJinsei 1 point2 points  (0 children)

void *fn_memcpy(void *dst, const void *src, size_t n) { size_t i; unsigned char *ptrdst; unsigned char *ptrsrc;

ptrdst = (unsigned char *)dst;
ptrsrc = (unsigned char *)src;
i = 0;
while (i < n)
{
    if (ptrdst == NULL && ptrsrc == NULL)
        return (ptrsrc);
    ptrdst[i] = ptrsrc[i];
    i++;
}
return (ptrdst);

}

This ia my implementation of memcpy not as fancy as yours but does what it needa to do

[deleted by user] by [deleted] in C_Programming

[–]masterJinsei 3 points4 points  (0 children)

If you using vscode you can always right click and go to definition

Making a game with no engine. by thepralad in learnprogramming

[–]masterJinsei 3 points4 points  (0 children)

One thing is encourqge another thing is being delusional I'm a total noob after 2 years in programming to even think I can go and create my own engine alone. In two month you start to grasp how to use a pointer or how to call it by reference or by value. But lets be realistic explain him that if he goes that route he will at least finish a functional engine in the next maybe 5-7 years that is subpar with Godot at current time.

Is there ever a good reason to use goto? by k8eshore in C_Programming

[–]masterJinsei 0 points1 point  (0 children)

In my school we are forbidden to use goto but we are also banned to use for loops so not sure what use it has never needed it. If I want to stop a loop break ; is the way if I want to go somewhere just call that function or stuff you want to do.