Skip to content

Instantly share code, notes, and snippets.

@ross-u
ross-u / README.md
Last active February 13, 2024 23:44
JS | Data types Numbers - Math warm up - Exercise

JS | Data types Numbers

Math warm up - Exercise


img

@ross-u
ross-u / README.md
Last active February 13, 2024 23:41
JS - Data types Strings - String Cardio - Exercise

JS | Data Types - Strings

Exercise - String Carido 💪


@ross-u
ross-u / README.md
Last active February 13, 2024 23:41

JS | Conditionals and Loops

Custom "Hello World"! - Exercise

Let’s write an improved version of the ‘Hello, world!’ program. Let’s ask the user in which language they want to see the message. You must have, at least, three different languages.

  • If the user wants the message in Spanish, you have to log in the console “Hola, mundo!”.
  • If the user wants the message in French, you have to log in the console “Bonjour tout le monde”.
  • Finally, if we don’t have the indicated language, we will show “Hello, world!”.
@ross-u
ross-u / README.md
Last active February 13, 2024 23:41
JS | Conditionals and Loops - 0 to 30 Exercise

JS | Conditionals and Loops

0 to 30 - Exercise

Let’s do a quick exercise to put into practice the new stuff we have just learned about the conditionals and loops.


Task 1 - Create a script that counts from 0 to 30.

@ross-u
ross-u / README.md
Last active February 13, 2024 23:41
Git Basics - Cheat Sheet

Git Basics

Git commands - Cheat Sheet


@ross-u
ross-u / README.md
Last active January 18, 2021 12:04
JS | OOP - Chuckify it - Exercise

JS | OOP


Chuckify it! - Exercise


Learning Plan for Design Patterns and Principles of Good Design

These learning resources primarily focus on programming using Good Design Principles and Design Patterns

  • There is an emphasis on learning using PHP, although most patterns are universal to every object orientated language.
@jonschlinkert
jonschlinkert / patchy-patch-patch.md
Created June 19, 2019 17:37
The very brief guide to getting rid of NPM's annoying "vulnerability" messages for packages that have been patched.

How to get the latest patch

This little guide describes what to do when:

  1. You see a vulnerability warning for a package, and
  2. The package has already been fixed, and a patch version has been released.

TLDR;

  1. Delete all lock files

logo_ironhack_blue 7

Rooms App with Reviews - final practice for project #2

Introduction

In previous lessons, we covered all the basics one full stack app can have. Now is the time for you to implement all these features one more time.

Instructions

@isabellachen
isabellachen / node-event-loop.js
Last active September 10, 2024 11:47
Node's Event Loop implementation in pseudo code.
// node's event loop behind the scenes
// node is event driven and single threaded, with background workers
// imagine we ran node index.js
const pendingTimers = []
const pendingOSTasks = []
const pendingOperations = []
// node executes the file and triggers timers, OSTasks and operations, filling in the above arrays.
index.runContents()