Secure Data Encoding with Base64 and AES in GolangWhen working with sensitive data, ensuring its security during transmission and storage is crucial. Base64 encoding is a popular method for…Jul 22Jul 22
How to decide GOMAXPROCS for your Go code?The decision of how many GOMAXPROCS to use depends on several factors, including the nature of your workload, the available hardware…Nov 28, 20231Nov 28, 20231
How to use channels and goroutines to receive and process data asynchronously in GoAsynchronous programming is a powerful technique that can improve the performance and responsiveness of your Go applications. In Go, you…Mar 28, 2023Mar 28, 2023
Compare two arrays/structs in GolangTo compare two arrays in Go, you can use the reflect.DeepEqual function from the reflect package. This function will recursively compare…Jan 10, 20231Jan 10, 20231
Logrus in Golang — How to use Logrus in Go?Simple Go logging with logrus package explained along with some examples.Jun 30, 20221Jun 30, 20221
How to get IP and Hostname in Golang and JavaLet’s understand how to get IP and Hostname in Golang!Jun 30, 2022Jun 30, 2022
How to use Time package in GolangIn this blog post, we’ll see how to use the time package in Golang. The package time feature allows us to measure and display time.Jun 16, 2022Jun 16, 2022
How to prepare for Microsoft Azure AI Fundamentals (AI-900)To prepare for this exam the best way is to practice the skills for the exam. Get hands-on experience with the Machine Learning and AI…May 7, 2021May 7, 2021
Different Sorting Algorithms comparison based upon the Time ComplexitySorting is a huge demand research area in computer science and one of the most basic research fields in computer science. The sorting…Sep 20, 2020Sep 20, 2020