Skip to content

Instantly share code, notes, and snippets.

@ross-u
ross-u / README.md
Last active December 3, 2020 15:59
React - Lifecycle methods

React | Lifecycle methods


Create the project and files

npx create-react-app react-lifecycle-methods

cd react-lifecycle-methods
@ross-u
ross-u / README.md
Last active December 28, 2022 17:21
React | Connecting React app to the backend

React | Connecting React app to the backend

img

React Country API

@ross-u
ross-u / index.js
Created May 24, 2019 09:21
Higher order function examples
function outter () {
return function(wordToPrint) {
console.log('outter()(wordToPrint) -->', wordToPrint)
}
}
// Invoke `outter` and save returned value (function) in a variable
const inner = outter();
inner('Hello');
@ross-u
ross-u / README.md
Last active October 31, 2019 11:57

CODE ALONG TEAM ACTIVITY 🎉


Steps of the Canvas Loop


Fot this exercise you may use one or multiple laptops while completing the exercise. You will not write any code in this activity, but instead you will be writting comments.

@ross-u
ross-u / README.md
Last active August 28, 2023 15:58
M3 README EXAMPLE

M3 - README.md Example


Quick Compo


Description

@ross-u
ross-u / README.md
Last active March 7, 2020 17:04
LAB: Redux Students

LAB: Redux Student


img

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

JS | OOP


Chuckify it! - Exercise


@ross-u
ross-u / README.md
Last active February 8, 2021 06:13
JavaScript OOP - this Exercise

JS - special keyword this


What is This - Exercise


@ross-u
ross-u / README.md
Last active January 15, 2025 09:00
Block vs Inline Elements - Cheat Sheet

HTML Introduction

Block and Inline Elements - Cheat Sheet


@ross-u
ross-u / index.html
Last active October 21, 2020 14:19
Semantic HTML example
<!DOCTYPE html>
<html>
<head>
<title>Semantic HTML</title>
<meta charset="UTF-8" />
</head>
<body>
<nav>
<a href="">Home</a>