Skip to content

Instantly share code, notes, and snippets.

View noahpeden's full-sized avatar

Noah Peden noahpeden

View GitHub Profile
@noahpeden
noahpeden / rewriteguid.md
Last active May 2, 2025 23:01
Product Dev Plan

Noah's Enhanced Frontend Rewrite Guide: Frontend Modernization

Author: Noah Peden
Creation Date: May 2, 2025
Last Updated: May 2, 2025


Overview

# Interview Question Practice
## Iteration 1
- Describe the difference between a cookie, sessionStorage and localStorage. [-hint-](https://github.com/turingschool/lesson_plans/blob/3ee469be5fdc94c926a88ca510106848b0339731/ruby_04-apis_and_scalability/client_side_storage.markdown) [web APIs]
- What are `data-` attributes good for? [-hint-](https://css-tricks.com/almanac/selectors/a/attribute/) [html]
- Have you used or implemented media queries or mobile specific layouts/CSS? [-hint-](http://frontend.turing.io/lessons/module-1/intro-responsive.html) [css]

#1: Job Search Plan: Create a schedule & goals

  1. Design a 40-hour "work week" that provides time for:

4 hours of coding each day: 1 hour codewars, 1 hour fundamentals/OOP/algorithm, 2 hours on side project or open source contribution 4 hours of cold outreach and applying to jobs: Every application I do, make an effort to find someone at the company to reach out to and do

  1. Backwards planning: What is your cut-off for ending the job search? When do you want to receive and sign an offer by?

What happened in the interview/practice? I've had three interviews so far. In each of them I think I've done great in terms of culture fit questions, and I've always done research beforehand and asked thoughtful questions. My weak point are the technical interviews. Either I don't get to the answer, or I struggle through it, or I sudo code out what I would do. In short I just need to do more codewars.

What are some best practices of technical interviews that you've discussed? Being super collaborative, walking through what each thing means, asking what they think of the direction I'm taking. Coming back after the interview with the answer to the question.

What did you excel at in the practice? Collaboration.

@noahpeden
noahpeden / noahcoldoutreach.md
Created April 10, 2017 14:54
Mod 4 Cold Outreach
  • Company of Contact

    • "Distillery Solutions"
  • Person of contact and relevant postion

    • "Brent Daily, CEO"
  • Date of contact

    • "03/08/16"

#Noah Peden's Module 4 Action Plan This is your deliverable from the Job Search Strategies I session

Module 4 Goals

  • Have a solid understanding of some backend frameworks
  • Have 1-3 job offers by the end of module four

Strategy To Achieve Goals:

@noahpeden
noahpeden / grocery-list.md
Created December 12, 2016 20:05 — forked from joshuajhun/grocery-list.md
Build a grocery list!

Grocery List

Today you are going to be tasked with building a small app that will hopefully help build / solidify some of your react chops.

The app should allow the user to add grocery items to a grocery list. A user should be able to add a grocery list item to the list via an input field and view each grocery list item on the dom.

This exercise is for your growth! If you're dependent upon previously written

@noahpeden
noahpeden / accessibilitygoalsnoah.md
Created November 28, 2016 17:57
Noah Peden - Accessibility Deep Dive: 3 Goals
  1. Include Zero Indexing on my projects so that things are easier to highlight and focus on
  2. Be sure to include alt tags on all my images (I haven't been very consistent about this)
  3. Really utilize white space and organize my text/images/forms in an easy to navigate way
Challenge 1

I wrapped div2 and div3 in a container so that I could position them to the right. There were two ways to approach this, but I wanted to familarize myself with markdown that wasn't just a float:right. Because of wanting to avoid float I used position absolute on the container to take it out of the natural flow and I used the right property to position it from the right side.

Challenge 1


Challenge 2