Author: Feromir

Go Day2

Golang

Boolean type In Go a boolean is a type on its own and not an alias made from another type like an integer 0 or -1 Numeric types Integers Signed int type has varying size, but min 32 bits 8 bit (int8) through 64 bit (int64) Unsigned integers 8 bit(byte and uint8) through 32 bit(uint32) ….  Read More

Go day1

GolangGolang

Go is an strong and statically typed. It has an excellent community. golangbridge.org is a good example Key features Simplicity Fast compile times Garbage collection Concurrency Stand alone binaries Go is focus on server side and not on clients Variable Topics Variable declaration Redeclaration and shadowing Visibility Naming conventions Type conversions Three different ways to ….  Read More

Basic Visual Studio Code settings for HTML

Build Responsive Real-World Websites with HTML and CSShtmlsection 1visual studio code

The basic VS Code setup consists of adding the Prettier extension and adjusting four settings: the Default Formatter, when to apply the formatter, autosaving onfocusChange and tab size. Go to settings by clicking in the Manage wheel at the bottom left of the UI and then search for each of these turntables.The Prettier extension formats ….  Read More

Dynamic Website anatomy

Build Responsive Real-World Websites with HTML and CSScsshtmljavascriptlearnsection 1

A dynamic website renders the information displayed in a web page at the time of request from a web browser. There is a triangle of interactions between the following three categories of servers: the web server, the application services servers and the application databases. The application services are programmed with programming languages like Python, Node, ….  Read More