Skip to content

Instantly share code, notes, and snippets.

@ross-u
ross-u / README.md
Last active January 20, 2020 09:18
LAB SOLUTION - Vikings - OOP (ES5)
@ross-u
ross-u / README.md
Last active February 3, 2020 09:48
ES6 recap - `for...or` Exercise

JS | ES 6 - recap


for...or Bank - Exercise


@ross-u
ross-u / README.md
Last active February 3, 2020 10:20
ES6 recap - Refactor to arrow functions - Exercise

JS | ES 6 - recap


Refactor to arrow functions - Exercise

@ross-u
ross-u / README.md
Last active April 9, 2020 14:41
JS | Closure, IIFE and Module Pattern - Summary

JS | Closure, IIFE and Module Pattern


Terminology :

Global scope — The default environment where your code is executed for the first time.

Function scope — Whenever the flow of execution enters a function body. >

@ross-u
ross-u / README.md
Last active May 12, 2021 16:36
GitHub Deployment - M1 - Changing and merging branches

Module 1 Project - GitHub Deployment


Git - Working on different branches

master - Branch used to write the code.

@ross-u
ross-u / README.md
Last active June 25, 2024 15:32
MongoDB - Common Data Types - BSON - example

MongoDB - Most Common Data Types

These are some of the most useful data types used in mongo documents:

type Example
Int 123456
Double 3.141625
String "IronHack Coding Bootcamp"
@ross-u
ross-u / README.md
Last active May 13, 2021 10:20
MongoDB - Lecture Summary Notes

MongoDB Introduction



@ross-u
ross-u / MongoDB_Installation.md
Created November 10, 2019 17:16 — forked from diurivj/MongoDB_Installation.md
This is the MongoDB's recommended way to install MongoDB Enterprise Server.

MongoDB Installation

1. Download the files from MongoDB's page:

MongoDB recommends to use the most complete version of MongoDB Server, in order to do this, we will download MongoDB Enterprise. Download the package for your SO in TGZ format.

2. Extract the files:

$ tar -xvzf [name-of-the-file.tgz]
@ross-u
ross-u / README.md
Created November 12, 2019 16:37
MongoDB | Advanced - Aggregation & Indexing - Lecture Notes

Aggregation Pipeline and Indexing


Clone the Repository with the json files

@ross-u
ross-u / index.js
Created November 13, 2019 15:04
Middleware pattern
class App {
constructor() {
this.middleware = [];
}
use( func ) {
this.middleware.push( func );
}
forward() {