top of page
Ken's Code
ken quiggins
Jun 12, 20233 min read
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,...
5 views1 comment
ken quiggins
Jun 5, 20233 min read
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...
3 views0 comments
ken quiggins
May 30, 20232 min read
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...
4 views0 comments
ken quiggins
May 23, 20233 min read
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....
4 views0 comments
ken quiggins
May 17, 20232 min read
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...
6 views0 comments
ken quiggins
May 7, 20232 min read
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...
60 views0 comments
ken quiggins
May 4, 20232 min read
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...
5 views0 comments
ken quiggins
Apr 14, 20232 min read
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...
6 views0 comments
ken quiggins
Apr 3, 20233 min read
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...
18 views0 comments
ken quiggins
Mar 27, 20232 min read
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...
11 views0 comments
bottom of page