Erik P. Williams

I work to make a better web; one that is fast, easy to use, beautiful, accessible to all, and frustration-free. Regardless of your specific business requirements.

image
image

About Me


Full stack developer and computer science student at California State University Fullerton studying Computer Science. Earned a Full Stack Web Development certificate from the University of California Los Angeles Coding Boot Camp in 2022. Graduating from Cal State Fullerton w/ BS in 2025

Name : Erik Williams
Age : 42 Years
Location : Huntington Park, California
E-mail : erikparrawilliams@tutanota.com
Freelance : Available

What I love to work on


Web Development

Web Design

Data Structures

Full Stack Development

Past Projects


image

Ethereum Tip Jar

image

Data Structures

image

Newsfeed

image

FunkyTown Marketplace

image

Rolodex

image

Budget Tracker

Contact Me


Email

Subject

How can I help you?

My Interests


image

Hash Table

A hash table (also known as a hash map) is a powerful and versatile data structure that allows you to store and retrieve values based on a key. Under the hood, it uses an array combined with a hashing function to provide rapid key-based access to stored data.

image

Binary Tree

A binary tree is a hierarchical data structure in which each node has at most two children, commonly referred to as the left child and the right child. The topmost node is called the root.

image

Stack(LIFO)

A stack is a linear data structure that follows the LIFO (Last In First Out) principle. This means that the last element added to the stack will be the first element to be removed. Think of a stack as a pile of books; you add (push) a new book on top and you remove (pop) the top book when needed.