santekno

Learn programming with easy and structured tutorial from zero to hero

Recent Posts

View all
C++ Programming

C++ Programming

5 articles 0 minutes

Golang Programming

Golang Programming

72 articles 0 minutes

Today's top highlights

Latest breaking news, tutorial and special reports

09 How To Use Streaming Encoder

09 How To Use Streaming Encoder

Introduction to Stream Encoders Apart from JSON Decoder, this JSON package can also support Encoder which is used directly JSON into io.

08 How To Use Streaming Decoder

08 How To Use Streaming Decoder

Introduction to Stream Decoder In the previous article, we studied the JSON package by using conversion of JSON data which was already in the form of variables and string data or we used []byte.

07 How To Use Maps

07 How To Use Maps

Map Use When we use JSON we sometimes encounter cases of dynamic JSON data, which means that the attributes formed by JSON are uncertain, can increase or decrease and are not even fixed.

06 How to know JSON Tags

06 How to know JSON Tags

Introduction to JSON Tags By default, if we create a struct and marshal it, it will be mapped according to the same attribute name and is case sensitive.

05 How to know JSON Array

05 How to know JSON Array

Introduction to JSON Arrays Apart from JSON in Object form, usually in JSON we can also use the Array data type.

04 How to know Decode JSON

04 How to know Decode JSON

Introduction to JSON Decoding In the previous article we learned to encode JSON and how to create a JSON object, so next we will learn how to translate JSON objects into struct objects in Golang.

03 How to know JSON Object

03 How to know JSON Object

Introduction to JSON Objects In the previous article we studied encoding data such as string, number, boolean and other primitive types.

02 Encode JSON

02 Encode JSON

Introduction to JSON Encoding The Golang language already provides functions for JSON data conversion needs, namely we can use this function

01 Introduction Package

01 Introduction Package

Introduction to JSON JSON stands for JavaScript Object Notation which is a data format structure that looks like Object from JavaScript.

08 Create Middleware Router

08 Create Middleware Router

Understanding Middleware HttpRouter is a library for creating an http router, it doesn’t have any other features apart from a router and this router is an implementation of the default http.

07 Handle Not Allowed Method

07 Handle Not Allowed Method

Understanding Method Not Allowed When we use ServerMux, we cannot determine what HTTP Method we will use in the Handler.

06 Handle Not Found Page

06 Handle Not Found Page

Understanding Not Found Handler Apart from the Router being able to control panic, it can also have a handler for pages not found or what we often call pages that cannot be accessed.