Skip to content

Instantly share code, notes, and snippets.

@dovakeen118
dovakeen118 / engage-updates.md
Last active January 30, 2024 18:50
Updates to Apps generated from Engage

Listed are some updates to make to your app generated with engage. You may make a small branch that includes only these changes so they are easy to track down later.

sass

In the client package.json, remove the dependency node-sass entirely. We will replace it with sass along with updating the version of sass-loader:

"sass-loader": "^7.0.2",
"sass": "^1.22.10",

Overview

  • Mock Interviews
  • Coding Challenges
  • Interview prep
  • Whiteboarding

The Interview

Big O Notation

A Discussion of Algorithms


Our Journey So Far

  • We've been learning a lot of practical / procedural knowledge
  • We've learned there is more than one way to solve a software problem

GitHub requires users to follow a few security measures to authenticate our GitHub account on our machine, and so that we don't have to provide our account credentials each time we make requests with GitHub, such as through the command line.

Learning Goals

  • Create a personal access token
  • Add a SSH key

Getting Started

Personal Access Token

Chrome Extension: ColorPick Eyedropper

  • provides an "eyedrop" tool to obtain the color values on a webpage
  • choose from hexcode or rgb

Canva

  • upload an image and the site will generate a color palette from the colors
  • can also search for popular color palette ideas

Coolors

  • search from trending color palettes or create your own
@dovakeen118
dovakeen118 / VSCode-extensions.md
Last active September 22, 2022 14:14
Favorite VSCode Extensions
@dovakeen118
dovakeen118 / VirtualPairing.md
Last active December 13, 2022 15:26
Virtual Pairing

Getting Setup

Make sure to communicate extra clearly about start times and links for virtual pairing.

Pairing Etiquette

Before Pairing

  • Establish start and end times for your pairing
  • Establish when and if you will be breaking during your pairing session
  • Share with your partner ways in which you want to improve your pairing ability
@dovakeen118
dovakeen118 / Cypress-Testing-Library.js
Created April 28, 2021 14:38
Experimenting with Cypress-Testing-Library
/// <reference types="cypress" />
import starterTravelAttractions from "../../fixtures/starterTravelAttractions.json";
context("Travel Attractions Index", () => {
beforeEach(() => {
cy.visit("http://localhost:3000/travel-attractions");
});
it("has a header", () => {
@dovakeen118
dovakeen118 / one-to-many-associations-express-and-pg.md
Last active April 15, 2021 21:55
One-to-Many Associations with Express and Postgres

One-to-Many Associations with Express and Postgres


A Look Ahead

  • ER Diagrams are an essential tool
  • Establishing the right relationships will be one of the most important things