Tech notes

Javascript, HTML, CSS

Data Structures and their JS implementation
Jun 16, 2021 | data structures javascript interview

Though there are 8 data types in JS (number, bigInt, string, symbol, boolean, null, undefined and object) classical CS requires much more compllicated data representation and data collections. Let's take a look at most commonly used data structures and their JS representation. Read more >>

DOM manipulation
Mar 27, 2021 | javascript browser DOM

Document Object Model, or DOM for short, is a browser tool, that gives developer access to the page elements (to add new, modify and delete them). DOM represents all page content as objects that can be modified. Read more >>

DOM, BOM and other browser tools overview
Aug 12, 2020 | javascript browser

JS nowdays is powerfull enough and it can be used not only by browsers, but also by web-servers and different types of devices(aka IoT devices). Each of this host environments provides JS some tools to maintain platform-specific functionality. This article is a quick look of what kind of instruments web browsers provides to JS. Read more >>

Oh git! Cheat list to resolve git problems
Mar 4, 2020 | git productivity

Git might be confusing and there are couple common cases that happen over and over again. This list contains some the most popular situations and commands to resolve them. Read more >>

JS in details (part 1, Fundamentals)
Feb 26, 2020 | javascript interviews

This article opens the set of articles about JS. It covers the most interesting topics about JS, contains an explanation to the most common questions and can be used as a preparation to the interviews. Read more >>

Introduction to Hugo
Feb 14, 2020 | hugo development gcloud

Hugo is an open source static site builder. It is fast (less than a 1 sec per page), powerfull and easy to use. Hugo supports unlimited content types, tags, menus, dynamic API-driven content, and more, all without plugins. This article collects an explanation of the most common structure of Hugo projects with some snippets. Read more >>

Command line: basic knowledge
Jan 16, 2020 | productivity command line

Cheat sheets from the book 'Learn Enough Command Line to Be Dangerous' by Michael Hartl. Read more >>

Older Posts