Skip to content

Instantly share code, notes, and snippets.

View stevebrownlee's full-sized avatar
🦁
Ready to roar

Steve Brownlee stevebrownlee

🦁
Ready to roar
View GitHub Profile
@stevebrownlee
stevebrownlee / BREWED_REFLECTIONS.md
Created January 31, 2024 21:12
Relfections questions for Brewed Awakenings
  1. What are the ramification of having an invalid value for a foreign key?
  2. If you replaced the word "click" with the word "change" in your event listeners, what would happen?
  3. Can you clearly articulate how an event listener works in the browser? If so, write it down and explain during your vocab review. If you can't use Google or GenAI to deepen your understanding.
  4. Why do you need the if statement in each of your event listeners?
  5. Why is it important to have a foreign key on the Order objects instead of storing the word "Coffee" or "Cookie"?
  6. Can you explain what the value of event.target is?
  7. What is the purpose of the return database.orders => (order => ({...order}), instead of just doing return database.orders?
  8. Can you explain what caused the cannot read properties of undefined yada yada when you first ran the project?
@stevebrownlee
stevebrownlee / adoption.md
Last active January 30, 2024 17:09
Pet Adoption Features

Pet Adoption Agency Web Application Requirements

Feature 1: View Available Pets

Description: Users should be able to view a list of all available pets.

Acceptance Criteria

Given a user accesses the web application
When they navigate to the 'Available Pets' section
Then they should see a list of pets currently available for adoption, including details like name, age, and type.

@stevebrownlee
stevebrownlee / configure-zsh.sh
Last active July 9, 2024 15:50
Installations for Mac
#!/bin/bash
current_shell=$(echo $SHELL)
if [ $current_shell == "/bin/bash" ]; then
echo -e "\n\n\n"
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo "@@ @@"
echo "@@ Change Needed: Switch to zsh @@"
echo "@@ This change might require your computer password. @@"
echo "@@ @@"
@stevebrownlee
stevebrownlee / GOALS.md
Created December 5, 2023 22:17
Program Goals

Level 1 Competencies

Write and explain readable code

Modular

Functional

DRY

@stevebrownlee
stevebrownlee / VISION.md
Last active February 13, 2025 22:21
Technical Vision and Competencies

Technical Vision for Ascend

Our technical vision is to establish a highly efficient and streamlined software development process that incorporates automation, monitoring, communication, and orchestration to enable seamless and reliable delivery of software releases. Our key goals are as follows:

  1. Automated Releases with Continuous Integration and Delivery: Our development process will be integrated with robust and automated continuous integration and delivery (CI/CD) pipelines that allow for efficient and frequent releases of software updates. This will include automated testing, building, and deployment processes that minimize human error and accelerate the time to market for new features and bug fixes.
  2. Production Environment Monitoring and Error Insight: We will implement comprehensive monitoring solutions that provide real-time insights into the performance, errors, and health of our production environment. Our development team will have access to detailed error and performance data, allow
@stevebrownlee
stevebrownlee / BOOK1_REFLECTIONS.md
Created November 8, 2023 01:02
Book 1 Reflections

Self Reflections

Debugging

  1. How do you explain the purpose of breakpoints, and what can you learn by using them?
  2. Explain the benefits of using the debugger for someone learning the basics of software development.
  3. How does a call stack help a developer focus on code that is incorrect?
  4. What is the purpose of "stepping through" your code when using the debugger?

Data Types and Variables

The Professor

Phase 1: Rounding Grades

HackerLand University has the following grading policy:

Every student receives a grade in the inclusive range from 0 to 100.

Any grade less than 40 is a failing grade.

@stevebrownlee
stevebrownlee / Evening-Instructor.md
Last active November 3, 2021 21:48
Evening Instructor Position

Evening C#/ASP.NET Senior Instructor

Hello! The web development instruction team at Nashville Software School is currently seeking a new part-time senior instructor to help mold the next generation of developers here in Nashville. Our current need is for our C#/ASP.NET portion of the course.

As an evening instructor, you have a unique opportunity to coach students for 6 months at a time because the students are in the NSS program for an entire year.

Class Schedule

  • Monday: 6:00 PM - 9:30 PM
@stevebrownlee
stevebrownlee / Kiln.js
Created May 14, 2020 14:03
Bare bones event broker
// Import the radio
import { radio } from "./broker.js"
// Listen on a channel
radio.listen("potteryCreated", data => {
// Use the data that was broadcast on the `potteryCreated` channel
const firedPottery = firePottery(data.piece, 2100)
// Broadcast on another channel with new data
radio.broadcast("potteryFired", { firedPottery })
@stevebrownlee
stevebrownlee / JokesDataProvider.js
Created March 5, 2020 17:12
Array of dad jokes
const dadJokes = [
{
"id": 1,
"question": "What did one pirate say to the other when he beat him at chess?",
"answer": "Checkmatey"
},
{
"id": 2,
"question": "Why did I quit my job at the coffee shop the other day?",
"answer": "It was just the same old grind over and over."