Articles

What I did this Week: 5/15/22

August 19, 2026

javascriptperformance

Was not really sure what I wanted to write about, so I thought I would just write about a few of my thoughts I had this week. Heroku's free tier I jus...

Read More

Website Accessibility with HTML

August 19, 2026

htmlbeginner

What is website accessibility? Some users on your sites will use screen readers, only use a keyboard to navigate, use screen magnification or use spee...

Read More

Website Accessibility with CSS

August 19, 2026

cssbeginner

What is website accessibility? Some users on your sites will use screen readers, only use a keyboard to navigate, use screen magnification, use speech...

Read More

React Hooks: useState()

August 19, 2026

reactjavascript

What are React Hooks? They are functions in React that allow you to add react functionality to function based components. What is the useState hook? T...

Read More

React Hooks: useRef()

August 19, 2026

reactjavascript

What are React hooks? They are functions in React that allow you to add react functionality to function based components. What is the useRef hook? Thi...

Read More

React Hooks: useMemo()

August 19, 2026

reactjavascript

What are React hooks? They are functions in React that allow you to add react functionality to function based components. What is the useMemo hook? Th...

Read More

React Hooks: useEffect()

August 19, 2026

reactjavascript

What are React hooks? They are functions in React that allow you to add react functionality to function based components. What is the useEffect hook? ...

Read More

React Hooks: useContext()

August 19, 2026

reactjavascript

What are React hooks? They are functions in React that allow you to add react functionality to function based components. What is the useContext hook?...

Read More

Good way to Practice HTML and CSS for a Technical Interview

August 19, 2026

htmlcss

I recently had a technical front end interview. I did not do as well on the CSS portion of the interview as I had hoped. As a result, I have been prac...

Read More

Linked List in JavaScript

August 19, 2026

javascriptalgorithms

What is a Linked List? A linked list data structure involves a series of Nodes linked together. Each Node will have a data value and a reference to th...

Read More

JavaScript, var, let and const

August 19, 2026

javascriptbeginner

What do the key words var, let and const do? These key words are used to declare variables in JavaScript. var firstName = 'Bob'; let lastName = 'Bobso...

Read More

Javascript Spread Operator (...)

August 19, 2026

javascriptbeginner

What is the Spread Operator? This syntax is used to succinctly pass multiple values from either an Array or Object to an expression where elements are...

Read More

Intro to Apache Arrow

August 19, 2026

pythonperformance

What is Apache Arrow? Apache Arrow is a series of libraries that enable large data systems to process and transfer data quickly and efficiently. It is...

Read More

Choosing Technology for Solo and Team Projects

August 19, 2026

career

Modern web development offers a plethora of frameworks, libraries, and products, each catering to different project needs. However, the choice between...

Read More

JavaScript Arrow Functions

August 19, 2026

javascriptbeginner

What is an arrow function in JavaScript? Arrow functions are an alternative way of writing functions in JavaScript. There are a few limitations compar...

Read More