Arkaprabha Majumdar

I'm a Technical Writer Intern for JournalDev IT, and am driven by a passion to be a polyglot programmer.

Golang reflect package

Today we’ll get into a more in-depth look into a package in Go called reflect. It is on the more intermediate to advanced implementation side. In this tutorial, we’ll see what it is and how it is used. For a deeper understanding, you can also check out Implementing reflection in Reflection and Type Switching in Go.

Unary gRPC with Golang – Part 2

This is the final part of the gRPC tutorial. If you haven’t checked the rest out, here’s the link: Introduction to gRPC with Golang. Unary gRPC with Golang – 1 We have already covered the basics, and code generation, and testing. Now we’ll code our main server and client. Main Server and Client Create two …

Unary gRPC with Golang – Part 2 Read More »

Unary gRPC with Golang

This is Part 2 of the gRPC tutorials. If you haven’t checked that out, here’s the link: Introduction to gRPC with Golang. Since we covered all the basics, we’ll directly jump into implementing a unary gRPC with GO. Define a proto service Implement server in Go Implement client in Go Error Handling Homebrew and Protoc …

Unary gRPC with Golang Read More »

Introduction to gRPC with Golang

Here, we will learn everything about what gRPC is and how we can implement it with the Go programming language. Be sure to have a notebook or text editor ready to take notes for future reference. Also, go through some of the other tutorials on this website if you’re interested. Why gRPC? Today, applications are …

Introduction to gRPC with Golang Read More »

Golang finance-go package – Stock Quote, Options, Chart

Today I bring to you another new fascinating package I’ve discovered, and which I’ve been tinkering with for a while now. And that is the finance-go package created by Michael Ackley, which allows us to directly retrieve stock market data on various crypto-currencies and quotes, equities, options, etc. pulled from Yahoo Finance.

Reflection and Type Switching in Golang

A side tangent for a deeper understanding of how and what reflection is, and how types and values in Go work. Be sure to check out the main article: Golang reflect package.

Go AWS Lambda

In this article, we’ll be looking at how we can deploy any Go function to AWS super easily. We can run code for virtually any type of application or backend service – all with zero administration.

GORM: Golang ORM Package

GORM v2.0 just released a month ago(on Aug 21, 2020), so I think it is the perfect time to look at the features of this amazing package created by a solo developer Jingzhu.

Golang Mux Router

Welcome to the second section of the Golang REST API tutorial, where we code from scratch in Go everything needed. If you haven’t checked out the first segment, go to Golang REST API – 1.