Skip to content

Instantly share code, notes, and snippets.

View smitroshin's full-sized avatar

Serghei Mitroșin smitroshin

  • Amdaris
  • Chisinau, Moldova
View GitHub Profile
@smitroshin
smitroshin / multiple_ssh_setting.md
Created April 1, 2022 10:22 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"
@smitroshin
smitroshin / tailwind_utilities.txt
Created March 15, 2022 11:45
Tailwind.css utilities
Absolute center: absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2
@smitroshin
smitroshin / decomposeIntNr.js
Created December 31, 2021 10:06
Decompose integer number by grade
/**
* Decompose integer number by grade
*
* @param {number} num
* @returns {number[]}
*/
const decomposeIntNr = (num) =>
`${num}`.split('').map((itm, i, arr) => itm * 10 ** (arr.length - i - 1));
console.log(decomposeIntNr(346)); // Output: [300, 40, 6]
@smitroshin
smitroshin / spinalCase.js
Last active December 18, 2021 12:44
Parse string to spinal case format
/**
* Transforms string from any format case in spinal case (ex. spinal-case)
*
* Source: https://forum.freecodecamp.org/t/freecodecamp-challenge-guide-spinal-tap-case/16078
*
* @param {string} str
*/
function spinalCase(str) {
// "It's such a fine line between stupid, and clever."
// --David St. Hubbins
@smitroshin
smitroshin / randomRange.js
Created December 1, 2021 14:29
Generate Random Whole Numbers within a Range
/**
* Generate Random Whole Numbers within a Range
*
* Source: https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/generate-random-whole-numbers-within-a-range
*
* @param {number} min
* @param {number} max
*/
const randomRange(min, max) => Math.floor(Math.random() * (max - min + 1)) + min;
@smitroshin
smitroshin / pipe.js
Created August 25, 2021 16:38
Function composition - from left to right
/**
* Compose functions from left to right.
*
* Source: https://1loc.dev/#compose-functions-from-left-to-right
*
* Read more by googling: "js pipe", "js pipeline", "js compose from left to right".
*
* @param {...function} fns
* @returns {*}
*/
@smitroshin
smitroshin / name-that-color.js
Created August 18, 2021 20:55 — forked from ffffranklin/name-that-color.js
Name That Color - Created by Chirag Mehta
/*
+-----------------------------------------------------------------+
| Created by Chirag Mehta - http://chir.ag/projects/ntc |
|-----------------------------------------------------------------|
| ntc js (Name that Color JavaScript) |
+-----------------------------------------------------------------+
All the functions, code, lists etc. have been written specifically
for the Name that Color JavaScript by Chirag Mehta unless otherwise
@smitroshin
smitroshin / requestSimulator.js
Last active March 23, 2021 16:05
Tool for simulation of http requests
const randomInteger = (min, max) =>
Math.floor(Math.random() * (max - min + 1)) + min;
const randomBoolean = () => Math.random() >= 0.5;
const defaultTime = () => randomInteger(1000, 3000);
/**
* Tool for simulating http requests
*
@smitroshin
smitroshin / arrIsEqual.js
Last active March 26, 2021 22:57
arrIsEqual
/**
* Checking equality between two arrays ignoring order.
*
* Source: https://www.30secondsofcode.org/blog/s/javascript-array-comparison
*
* Limitations:
* - primitive values only
* - first level only
* - can't compare objects
*
@smitroshin
smitroshin / objectRemoveEmpty.js
Created January 20, 2021 00:16
Clear object from empty values (recursively)
/**
* Clear object from empty values (recursively)
* Source: https://stackoverflow.com/a/38340374
*
* @param {object} obj
* @returns {object}
*/
const objectRemoveEmpty = (obj) => {
const newObj = {};
Object.keys(obj).forEach((key) => {