Skip to content

Instantly share code, notes, and snippets.

@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 / 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-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 / 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 😉

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 / ts-react-components-and-props.md
Created June 6, 2024 14:45
Exercise - TypeScript + React: components and props
@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:

Practice: PostgreSQL setup & first steps

Iteration 1 - Setup:

Follow the instructions in the unit "SQL | Introduction" to install PostgreSQL in your computer (you'll find instructions for each operating system: windows, mac, linux).


Important

Remember the credentials (username and password). \

PostgreSQL Example DB

Users Table

CREATE TABLE users (
    user_id SERIAL PRIMARY KEY,