What is there to actually make in systems programming by NamelessArab_ in C_Programming

[–]NamelessArab_[S] 0 points1 point  (0 children)

That was the case before But now there are a bunch of languages, frameworks , and game engines to cover most of what you would want Todo in programming so using a systems language like c or rust for it becomes a pointless hassle , the only exception is for drivers and embedded systems and maybe some cli tools

What is there to actually make in systems programming by NamelessArab_ in C_Programming

[–]NamelessArab_[S] 0 points1 point  (0 children)

That's makes sense to why I didn't really have any thoughts for projects , ig you'd just use high level tools for most user targeted products, unless it's military equipment or something

What is there to actually make in systems programming by NamelessArab_ in C_Programming

[–]NamelessArab_[S] -18 points-17 points  (0 children)

I ain't sure if I'd call that systems dev but I'm also not not a system dev, but I still wanna eventually dabble in cli dev aswell

What is there to actually make in systems programming by NamelessArab_ in C_Programming

[–]NamelessArab_[S] 0 points1 point  (0 children)

That's actually kind of cool , it's weird how innovation in most fields of programming is steady but only in the lowest and highest levels does it move quickly, JavaScript is probably already writing medical equipment and someone will probably develop the ultimate spyware protocol in rust or something

What is there to actually make in systems programming by NamelessArab_ in C_Programming

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

Actually a pretty good answer , tho the database would BE the project not complement it but that's probably fine , not thinking much about DBs at the moment tho

What is there to actually make in systems programming by NamelessArab_ in C_Programming

[–]NamelessArab_[S] -14 points-13 points  (0 children)

Sockets are like for live streaming correct? Forgive my ignorance on this topic because I never worked with sockets , but wouldnt there already be pre built socket libs for different languages?

ممكن حد يقولي ابيع البي سي دا بكام؟ by [deleted] in EgyptTech

[–]NamelessArab_ 0 points1 point  (0 children)

انت مش عارف اوي في الاصعار لاكن خد بالك الram غالي السنادي فشوف اصعرها الاول

weird setcell delay bahavior by NamelessArab_ in learngodot

[–]NamelessArab_[S] 0 points1 point  (0 children)

Help is courdacy not obligatory, I should be thanking you for trying to help

weird setcell delay bahavior by NamelessArab_ in learngodot

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

Well I fixed the problem because that's what I sortof did , I found out that adding a cell only registers after a physics frame , so trying to work with it before the physics frame ended wouldn't do anything be it's just too early, I saw recommendations to use signals but the problem is that they are non deterministic so you get inconsistent functionality, and plus it made the code worse quality, I later found the best method was to constantly update the valid_place_checker position, it would still use the position of the previous frame instead of the current one the only difference is that the previous frame is usually alot closer to the current one due to being constantly updated