Skip to content

Instantly share code, notes, and snippets.

View CodeLikeAGirl29's full-sized avatar
Coding

Lindsey Howard CodeLikeAGirl29

Coding
View GitHub Profile
@CodeLikeAGirl29
CodeLikeAGirl29 / milkshakesExpress.md
Last active May 22, 2022 00:13
My Nodejs and Expressjs project.

Built with express

A site that uses JWT (javascript web tokens) allowing users to login and view milkshakes recipes.

Made with reactjs shield

Made with love in United States

City Tours App

Made by Lindsey to demonstrate my understanding of Reactjs. :) I've created a card-like theme that presents the user with a list of cities and a description of the city. Theres also an Attractions slide that shows user's a list of attractions for each city.


@CodeLikeAGirl29
CodeLikeAGirl29 / Codecademy-SchoolCatalogue
Created November 3, 2022 12:24
For Codecademy's Intermediate JavaScript project - School Catalogue
class School {
constructor(name, level, numberOfStudents) {
this._name = name;
this._level = ['primary', 'middle', 'high'];
this._numberOfStudents = numberOfStudents;
}
get name() {
return this._name;
}
@CodeLikeAGirl29
CodeLikeAGirl29 / review-checklist.md
Created December 9, 2022 19:04 — forked from bigsergey/review-checklist.md
Front-end Code Review Checklist

Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?

Frontend Developer

Company practices

  • You create pull requests with proper name and description 📚
  • You squash merge your pull requests 📚

Building Interactive Sites

These are my notes, solutions, ect from the Building Interactive Websites Exam 2 in Codecademy's Full Stack Course.

const students = [
  { name: "Paisley Parker", gpa: 4.0 },
  { name: "Lake Herr", gpa: 3.2 },
  { name: "Promise Lansing", gpa: 3.9 },
  { name: "Friar Park", gpa: 2.8 },
  { name: "Mason Amitie", gpa: 3.49 }
@CodeLikeAGirl29
CodeLikeAGirl29 / vanilla-js-cheatsheet.md
Created January 3, 2023 11:47 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@CodeLikeAGirl29
CodeLikeAGirl29 / js-practice.md
Last active February 14, 2023 19:03
From JavaScript30 by Wes Bos !

Psst: have a look at the JavaScript Console 💁

Get your shorts on - this is an array workout!

Array Cardio Day 1

    // Some data we can work with

SQL Cheat Sheet, Tips, and Tricks

Tips and Tricks

  • You know that you're in the right database when you see the name of the database at the beginning of the terminal line.
  • If you already know the name of the database you want to connect to, you can write psql name_of_database and that would be equivalent to psql postgres \c name_of_database
  • Remember to steer clear of double quotes around strings in your queries!

SQL Cheat Sheet

Meta Commands

  • \l List databases
  • \c Connect to a database
  • \dt Display Tables in a database