Skip to content

Instantly share code, notes, and snippets.

View VadimKlimets's full-sized avatar

Vadim Klimets VadimKlimets

View GitHub Profile
@kami4ka
kami4ka / qa_test_task.md
Last active May 8, 2023 22:12
Systima QA test task
@yovko
yovko / ohmyzsh.md
Last active April 17, 2024 22:07
ZSH (using Oh My ZSH) on Manjaro Linux

ZSH (using Oh My ZSH) on Manjaro Linux

0. If ZSH is not already installed on your Manjaro system you can do it with the command:

sudo pacman -Syu zsh

You do not need to install manjaro-zsh-config and all the other related packages like zsh-syntax-highlighting, zsh-history-substring-search, zsh-autosuggestions, etc., as we will use Oh My Zsh.

@cprakashagr
cprakashagr / LICENCE SUBLIME TEXT
Last active May 1, 2024 10:50
Sublime Text 3 Serial key build is 3143
## Sublime Text 3 Serial key build is 3103
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
B085E65E 2F5F5360 8489D422 FB8FC1AA
@VadimKlimets
VadimKlimets / Check for Palindromes.js
Created November 10, 2017 09:06
Check for Palindromes
function palindrome(str) {
// Good luck!
//Empty array
var array1 = [];
// alert("array1 is an " + typeof(array1));
//Empty array
# 0. Intro to objects
## Everything is object
We will begin our journey with objects.
In Ruby, just like in real life, our world is filled with objects. Everything is an object - integers, characters, text, arrays - everything.
To make things happen using Ruby, one always puts oneself in the place of an object and then has conversations with other objects, telling them to do stuff.