Showing Posts From
Programming
- Zoran Stankovic
- 20 Nov, 2022
Strings in Go (Golang) An Introduction
In this blog post we will talk about Strings in Go. We will see how to declare string variables and ...
- Zoran Stankovic
- 12 Nov, 2022
Get Up to Speed with Bytes, Runes and Printf in Go (Golang)
In this article we will talk bout Runes and Bytes in Go (Golang). We will see how to declare variab ...
- Zoran Stankovic
- 29 Oct, 2022
Numeric Data Types Explained in Go (Golang)
In this article, we will talk about Numeric data types in Go, including integers, decimals and comp ...
- Zoran Stankovic
- 15 Oct, 2022
Boolean Data Type Explained in Go (Golang)
In this blog post we will talk about Boolean data type in Go. What are Boolean values, and how do w ...
- Zoran Stankovic
- 05 Oct, 2022
Data Types in Go An Introduction (Golang)
In this blog post we will talk about the difference between statically vs. dynamically typed langua ...
- Zoran Stankovic
- 24 Sep, 2022
How to Create Library and Import it Locally in Go (Golang)
In this post we will talk about how to use external libraries in our project and how to create a li ...
- Zoran Stankovic
- 11 Sep, 2022
Compile Programs in Go for Multiple OS (Golang)
In this blog post we will talk about how to compile Go programs for multiple operating systems. Wh ...
- Zoran Stankovic
- 04 Sep, 2022
Basic Package File Structure and go.mod File Explained in Go (Golang)
In this blog post we will talk about basic package file structure and a bit of modules. In my [pre ...
- Zoran Stankovic
- 28 Aug, 2022
Basic Structure of Go Program Explained (Golang)
In this blog post we will explain basic structure of Go program using "Hello World" example. I used ...
- Zoran Stankovic
- 21 Aug, 2022
Setting up Go work environment on Windows, Linux and MacOS
In this blog post, we will show how to set up a Go work environment on Windows, Linux and MacOS. Al ...
- Zoran Stankovic
- 14 Aug, 2022
Variable Declaration in Go (Golang)
There are two ways of declaring variables in Go:using the var keyword using := short de ...
- Zoran Stankovic
- 06 Dec, 2020
Execution Context in JavaScript (Part 2.)
In this second part, I will try to answer these questions:What is the difference between **Glo ...
- Zoran Stankovic
- 15 Nov, 2020
Execution Context in JavaScript (Part 1.)
In this blog post I will try to give answers to these questions:What is the execution context ...