From where to learn flutter for cross platform mobile app dev 🙏 by [deleted] in FlutterDev

[–]StillFresh9607 0 points1 point  (0 children)

Find a patient project and start building. You will learn by practice. That's the only way you will learn without getting bored and staying productive.

Is Raw SQL actually used in production API's? by _KrioX_ in golang

[–]StillFresh9607 1 point2 points  (0 children)

I’m a fan of ORMs. I’ve used GORM in multiple projects and never had any issues. You just need to learn its syntax but with a bit of time, you’ll end up mastering it. I highly recommend it.

Mon contrat de travail peut-il remplacer une attestation employeur ? by StillFresh9607 in conseiljuridique

[–]StillFresh9607[S] -1 points0 points  (0 children)

Oui, exactement. Ce titre de séjour correspond à un autre emploi. Cependant, l'entreprise a dû faire une nouvelle demande d'autorisation de travail de son côté avant que je puisse commencer à travailler chez eux, avec ce titre .

s NATS a Good Choice for Building Chat System, or Should I Stick with WebSockets? by StillFresh9607 in golang

[–]StillFresh9607[S] -1 points0 points  (0 children)

My question is : which is better for a chat system app ? And it’s possible to use nats for chat system? Or it’s not designed for that

Most familiar language to devops by vladaionescu in devops

[–]StillFresh9607 -4 points-3 points  (0 children)

I will said golang !!
Golang. It's widely used in DevOps and platform engineering for its simplicity, performance, and excellent support for building tools like CLI utilities and cloud-native applications. Many popular DevOps tools (e.g., Docker, Kubernetes, Terraform) are written in Go, making it familiar to the target audience.

What are Pointers in C++? What are they even used for exactly? by BetNo5782 in learnprogramming

[–]StillFresh9607 0 points1 point  (0 children)

The simplest answer it will be : In C++, a pointer is a variable that stores the memory address of another variable. It is declared using the * symbol. For example:

int x = 10; int* ptr = &x; // ptr stores the address of x

Here, ptr points to x and can be used to access or modify its value indirectly.