Skip to content

Instantly share code, notes, and snippets.

View AleKiller21's full-sized avatar

Alejandro Ferrera AleKiller21

View GitHub Profile
@AleKiller21
AleKiller21 / docker-help.md
Last active February 17, 2021 15:41 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@AleKiller21
AleKiller21 / AsynchronicityProblem
Created April 13, 2022 05:57
Asyncrhonicity JS Interview Problem
const updatedCollection = [];
const originalCollection = [1,2,3,4,5];
const pushAsync = (collection, value) => {
return new Promise((resolve) => {
setTimeout(() => {
console.log(`Multiplying value: ${value} and inserting it into the updated collection`);
collection.push(value * 2);
resolve();
}, value);
@AleKiller21
AleKiller21 / dev-setup.md
Created February 9, 2023 19:54 — forked from AbhieSpeaks/dev-setup.md
Development environment setup: Installing WSL2, Hyper, ZSH, VSCode, OhMyZsh

Installing Windows Subsystem for Linux 2, Hyper, ZSH, Node.js and VSCode extensions

Preview

Requirements

Steps