top of page
Ken's Code


Encapsulation, Abstraction, and Composition in JavaScript
When it comes to writing clean and maintainable code, three important principles in object-oriented programming (OOP) are encapsulation,...
ken quiggins
Jun 12, 20233 min read
8 views
1 comment


Higher Order Functions in JavaScript
In JavaScript, functions are treated as first-class citizens, which means they can be assigned to variables, passed as arguments to other...
ken quiggins
Jun 5, 20233 min read
3 views
0 comments


A Solution Using Multer and Proxy Configuration
In web development, adding the ability to upload images to a website is a common requirement. However, it can sometimes present...
ken quiggins
May 30, 20232 min read
6 views
0 comments


Swapping Adjacent Nodes in a Linked List
Introduction In computer science, linked lists are a fundamental data structure used to store and organize a collection of elements....
ken quiggins
May 23, 20233 min read
5 views
0 comments


Using HTTP-Only Cookies to Store JWT Tokens
The security of user data is paramount in any application. JSON Web Tokens (JWT) are a popular method for securely transmitting...
ken quiggins
May 17, 20232 min read
6 views
0 comments


Setting up Proxy in Vite for Backend API
When developing web applications, it is common to have a backend API that needs to be accessed from the frontend. However, when...
ken quiggins
May 7, 20232 min read
61 views
0 comments


Effortlessly Convert SVGs to React Components
In this blog post, we will walk through the process of converting an SVG file into a React component using the SVGR tool, and then...
ken quiggins
May 4, 20232 min read
5 views
0 comments


8 Beginner Sorting Interview Questions
Sorting is an essential task in computer science and is used in various applications. In this article, we will discuss interview...
ken quiggins
Apr 14, 20232 min read
8 views
0 comments


Overcoming Imposter Syndrome
Imposter syndrome is a feeling of inadequacy or self-doubt that many people experience, especially in the workplace. It's common among...
ken quiggins
Apr 3, 20233 min read
18 views
0 comments


Binary Search
Welcome to this tutorial on implementing a Binary Search algorithm in Python. In this tutorial, we'll learn how to use the Binary Search...
ken quiggins
Mar 27, 20232 min read
11 views
0 comments
bottom of page