Hey guys, I'm trying to run minikube for first time with this command : sudo minikube start --driver=docker --force and I got this error : stderr: The connection to the ser...
Anyone have ever use this package ?? github.com/go-playground/validator I want to use custom struct field label in error message for example : type User struct { Id ...
I have some questions : 1- what parts of go are thread safe and what parts are not? (from parts I mean for example map , ...) 2-when to use mutexes ? and when to use channel...
I have written a websocket server using Fasthttp (Gorilla) and when 4-5 clients connected after some times when someone tries to connect it gives "write : broken pipe" error f...
If we have this code : for { go func() { log.Println("something") }() } can we understand that goroutine in previous loop step done its job ?? in other w...
anyone can run vue project with pwa in localhost without this error ? Error during service worker registration: DOMException: Failed to register a ServiceWorker for scope ('h...
Hi, I just deleted a sql server database table and want to recreate it and it shows this error There is already an object named in the database what should I do ? (also dropp...
Hi, I have two database tables like this 1) libraries = ( id , name ) 2) library_library = ( library_id , required_library_id ) libraries = a list of javascript libraries ...
hey guys, I want to seperate asp.net core routes in other file than Startup.cs I want all routes with their methods and controller actions in same file what should I do ?
Hey guys !! how do we can detect incoming track is webcam or screen share in webrtc ?
Hey guys , how do we can use await in non async function ? (Im using a package that has a non async function and I have to use await in that function)
will js worker thread give more accurate to setInterval ?
length is 1 or 2 ? 😐
Hi, I have two tables like this 1) libraries = ( id , name ) 2) library_library = ( library_id , required_library_id ) libraries = a list of javascript libraries library_l...
Hi 👋🏻, how do we can set a goroutine to keep working after http return response?
Is there a way to search an array without loop ?
Hi✋, Im writing a online learning platform like Adobe Connect and Im implementing a whiteboard in it and when teacher wants to record the session , I want to save his mouse p...
How to organize project packages to avoid import cycles ?? I also used this structure but again import cycle error returned https://github.com/golang-standards/project-layout
Any idea?? 🤔
Hi , I have a json array in a column in database that is as varchar and I defined a class for that table and set a string property for that column and now I want to get that c...