#Programming (Програмування)
164 posts in category «Programming (Програмування)»
Notes on programming in Ukrainian: coding languages, algorithms, the latest technologies and other useful information for developers.
What hierarchy does the DOM (Document Object Model) have?
DOM Hierarchy (Document Object Model) consists of objects that represent the structure of an HTML or XML document in the form of …
What is SCM (Source Control Management)?
SCM (Source Control Management), also known as Version Control System (VCS), is software or a set of tools that helps developers …
What is a commit in the context of programming and SCM / Git?
Commit (English "commit") in the context of the Git version control system is a key concept that means saving changes in the loca…
What is a repository?
A repository is a storage space where all files and the history of changes of a project are kept. In the context of version contr…
What is an idempotent method?
Idempotent methods are methods or operations in programming that, when executed multiple times with the same input, yield the sam…
How to remove the .DS_Store file from a Git repository?
In this post, we will discuss how to add .DS_Store to the .gitignore file and remove already added files from our repository. But…
What is .gitignore? What is it for and how to use it
.gitignore is a file used in the Git version control system to specify files and directories that should be ignored by Git. This …
What does a dot at the beginning of a file (.gitignore, .DS_Store, .bashrc, etc.) mean?
A dot at the beginning of a file or folder name in Unix-like operating systems, such as macOS or Linux, indicates that this file …
How does the map method work in Ruby? An overview of the method's operation with examples.
The map method is one of the most commonly used methods in Ruby, used for processing collections. It allows you to apply a block …
What does .map(&:name) mean in Ruby?
In Ruby, the map(&:name) construct is a shorthand for applying a method to each element of a collection. This form is used to…