Skip to content

Instantly share code, notes, and snippets.

@luisjunco
luisjunco / lab-react-components.md
Last active April 21, 2025 12:47
LAB React Components

LAB React Components

The main goal of this LAB is to practice creating and rendering React components.


Iteration 1: initial setup

For the initial setup, follow these steps:

@luisjunco
luisjunco / ts-react-components-and-props.md
Created June 6, 2024 14:45
Exercise - TypeScript + React: components and props

JS OOP Bakery exercise

In this exercise, you'll be creating a Bakery class using JavaScript. This class will represent a bakery and have some properties and methods to track the bakery's location, the number of cakes in stock, and the ability to bake cakes.

image


@luisjunco
luisjunco / project3-setup.md
Last active March 5, 2025 14:51
Ironhack - Project 3 Setup

📁 | Create a parent directory

To keep things organized, create a parent directory:

  • Navigate to the directory where keep your code (ex. navigate to your module3 directory).
  • mkdir our-cool-project

NOTE: replace "our-cool-project" with the name you choose for your project 😉

@luisjunco
luisjunco / readme-project-3.md
Last active December 14, 2023 08:01
Requirements README project 3

README Project 3

Create 2 Readme files (one for the Frontend + one for the Backend). In each of them, add the sections below:

  • Description
    • Brief description of the project
    • IMPORTANT:
  • Explain very clear if the current repo is the Frontend (React) or the Backend (Express API).
@luisjunco
luisjunco / readme-project-2.md
Last active November 23, 2023 17:50
Requirements README project 2

README Project 2

  • Description

    • Brief description of the project
  • Instructions to run this app in my computer. Probably something like this:

    • git clone
    • how to install dependencies (npm install)
  • in case you're using environment variables: explain that I'd need to create a .env file and add environment variables (remember to detail all the variables that I may need to create, if I need to create an account to get some credentials etc.)

@luisjunco
luisjunco / readme-project-1.md
Last active November 23, 2023 17:49
Requirements README project 1

README Project 1

  • Description

    • Brief description of the project
    • You can also add screenshots 🤩
  • Instructions to play

  • Important: make sure that anyone with the link can play your game (if it is not trivial, include also instructions in the game itself)

@luisjunco
luisjunco / katas-planning.md
Last active May 23, 2025 07:39
Katas Planning

MODULE 1


w3d1 Katas

Intro:

  • Intro to Codewars (what is Codewars & why it's useful)
@luisjunco
luisjunco / react-conditional-rendering-cheatsheet.md
Created April 4, 2023 13:22
React Conditional Rendering - Cheatsheet

A: Element Variables (in your JavaScript)

function MyComponent(){

    let button;
    if (isLoggedIn) {
      button = <LogoutButton />;
 } else {