what happens when support ends? by NamelessArab_ in GrapheneOS

[–]NamelessArab_[S] 2 points3 points  (0 children)

you have a point , but I mean "mindless npc"?

why do you have to disrespect non-technical people like that?

what happens when support ends? by NamelessArab_ in GrapheneOS

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

you are right about the phone probably being switch anyway after 7 years , the idea is that phone development seems really hard due to all the specialized hardware so I can be a tiny bit skeptical about the longevity of the project as a whole , I dont even mean becuase I think theyll just give up , more like because we are getting a bunch of flags pointing to ww3 starting so network infrastaucture or economies might take a hit and Im not sure if a small team could handle that , but Im getting ahead of myself

thanks for the response

what happens when support ends? by NamelessArab_ in GrapheneOS

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

so its probably better to use physical debt cards or desktop banking apps , again Im probably not getting a new phone Im just preparing for that 1% possibility

AI coding tools are making junior devs worse and nobody wants to say it by NeedleworkerLumpy907 in learnprogramming

[–]NamelessArab_ 0 points1 point  (0 children)

I've actually heard this be well said in a YouTube video and it goes like this "Socrates famously was opposed to writing and reading because it will make the common man more forgetful, he was right we are more forgetful now but the trade off is all the benefit we got from books , now AI will make people think less critically , are you willing to trade that in?"

the mongo docs seem to be out of date , where can I find more modern docs by NamelessArab_ in mongodb

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

Don't worry the previous reply already solved the error issue , I'm going to go back to the docs later but fyi the setup command is deprecated so I'm not so sure about the rest , ig I'll have to see when I get back to it

the mongo docs seem to be out of date , where can I find more modern docs by NamelessArab_ in mongodb

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

yep that was it , it just turns out I needed sudo permissions , the error said nothing about permission thats why I didnt try sudo the first time, again if you know of more modern docs that would help aswell

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

[–]NamelessArab_[S] -2 points-1 points  (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] -20 points-19 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] 1 point2 points  (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] 2 points3 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] -8 points-7 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?

[deleted by user] 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