#Programming (Програмування)
166 posts in category «Programming (Програмування)»
Notes on programming in Ukrainian: coding languages, algorithms, the latest technologies and other useful information for developers.
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…
How to fix a Windows crash caused by CrowdStrike?
We are fixing the Windows crash caused by CrowdStrike. First, boot Windows in safe mode or in the Windows recovery environment. B…
We are writing a demo game Drones vs Zombies (Gosu / Ruby)
```html I have already written a minimal overview of the functionality of the gosu library. To write a simple 2D game, you really…
Gosu Ruby Tutorial - пройдемось по офіційній документації
Це не переклад Ruby Tutorial сторінки бібліотеки Gosu, а скоріш огляд з коментарями та додатковою інформацію. Не люблю сухі Readm…
Ruby library Gosu for creating 2D games
Gosu is a library for developing 2D games and graphical applications in the Ruby programming language (as well as C++). It simpli…
How to make an empty git commit?
Making an empty git commit. Everyone has their own goals for this action. In my case - to trigger CI. git commit --allow-empty -m…
[Fix] extconf.rb failed during the installation of the Ruby library Gosu
Gosu is a popular gem for Ruby that provides a simple and powerful interface for creating 2D games. It includes features for work…
What is a function in programming?
A function is the fundamental building block of programming that defines a set of instructions or actions that are executed when …
What is the difference between variables that start with @, @@, and $?
In Ruby, variables that start with @, @@, and $, have different levels of visibility and usage (scope). Let's look at examples an…