oky saputraoky31.hashnode.dev·Nov 6, 2023Journey #3 - Create UserDi journey #2, telah membuat test case untuk CreateUserHandler , untuk melengkapi handler tersebut akan kita mulai dari beberapa tahap berikut Pemilihan Database karena app ini akan berbasis sql maka akan mengunakan sql driver yang di rekomendasikan,...DiscussEducational Project (fake-market-place)Go Language
Claudclaudbytes.hashnode.dev·Aug 13, 2023Build a Credit Card validator using GoIntroduction 🪩 In this tutorial, we will build a credit card validator using Go and the Luhn Algorithm. The Luhn algorithm is a mathematical formula used to validate credit card numbers. We are going to write a function that implements it and use it...Discuss·10 likes·101 readsLearning Go 🚀Go Language
Chetan Thapliyaltech-transitions.hashnode.dev·Aug 7, 2023Mastering the Basics of Go Programming (Blog 2 of the Go Series)Go, the versatile programming language employs a structured approach to code organization through packages. Every Go file commences with a crucial package clause, setting the stage for effective software structuring. Within a package, you'll find one...Discuss·41 readsGolangGo Language
Rajiv Ranjan Singhiamrajiv.hashnode.dev·May 22, 2023Optimizing Performance with InliningInlining is a technique used in programming to optimize the execution speed of a program. It involves replacing a function call with the actual code of the function at the call site. In other words, the compiler or interpreter copies the entire body ...Discuss·85 readsperformance