Skip to content

Instantly share code, notes, and snippets.

-- Create a database
-- CREATE TABLE users(
-- id SERIAL PRIMARY KEY,
-- username VARCHAR(20),
-- email VARCHAR(30),
-- password VARCHAR(12),
-- age INTEGER,
-- isAdmin BOOLEAN
-- );
-- Create a database

1. Typescript Resources

Remember that typescript is built on top of Javascipt, meaning that if you understand Javascript then you know 90% of Typescript Here are a list of links to help learn Typescript:

Scrimba

This is the best free resource to learn typescipt fundamentals
Link

Typescript Slides

Slides to learn the basics of TS
Link

Free Code Camp

This is one of the best youtube channels to learn coding
Link

Web Dev Simplified

//make a state for the image file
const [image, setImage] = useState(null);
// Make a input of type file
<label>
Project Image:
<input
type="file"
name="image"
onChange={(e) => setImage(e.target.files[0])}
/>

Module 1

  • Week 1. Day 1. Lecture. What is your favourite TV show / series?
  • Week 1. Day 2. Lecture. What is your favourite hobby?
  • Week 1. Day 3. Lecture. Is gif pronounced as ‘gif’ or ‘jif’ ?
  • Week 1. Day 4. Lecture. If you could watch just one movie for the rest of your life which one would it be ?
  • Week 1. Day 5. Lecture. If you had a superpower, what would it be and why?