Mar 30Truncating Text with Read More/Read Less ButtonWhen browsing through a website, most people want to get to the meat of the site, especially when they are shopping. This week I had to shorten the collection’s description after 3 lines of text on mobile devices because it was taking way too much space and none of the…Java Script1 min read
Dec 28, 2020How I found a job in 3 months after bootcampIt is no secret that job hunting SUCKS especially in a middle of a pandemic. But speaking from experience there is a silver lining. …Job Hunting3 min read
Aug 4, 2020What is Object Oriented Programming?I was asked this question in an interview and was totally unprepared! I knew generally what it was as I reviewed some material the week prior but I did not give enough of a concise answer to prove I knew what I was talking about. …Interview Questions2 min read
Jul 30, 2020Algorithms: String ReversalString reversals are one of the most common questions on tech interviews. There are many different ways to do this and one way I’d like to do this is by…1 min read
Jul 22, 2020Data Structures: Binary Search TreesThe next part of my Data Structures series is binary search trees. A Binary Tree is a data structure where each node can have 0, 1 or 2 nodes. Each child can only have 1 parent. The benefits of using a binary search tree are the look up times are…Algorithms2 min read
Jul 15, 2020Basic Data Structures: ObjectsTo continue the data structure series I have going on, I’ll be talking about objects in this post. My previous post on arrays can be found here. Objects are another data structure that has a key and value pair. Object data cam be accessed through properties. …Data Structures2 min read
Jul 8, 2020Basic Data Structures: ArraysWhile taking a udemy course for data structures and algorithms I have learned that there are many other types of data structures than the ones I’ve been using which are arrays and objects. There are arrays, objects/hashes, linked lists, stacks and queues, trees, and graphs. …Data Structures3 min read
Jul 1, 2020ReWild — a work in progressLast month I started to develop ReWild, a new e-commerce plant shop.Software Development1 min read
Jun 24, 2020The difference between .splice() and .sliceI can’t tell you how many times I forget the difference between “.splice” and “.slice” when I’m doing an algorithm and trying to decide which one to use. So here are some examples to help me and anybody else who struggles with remembering to understand the differences. .slice() extracts a part…Software Development2 min read
Jun 17, 2020Regex aka Regular Expressions“Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects.” — MDN web docs There’s a saying that goes, ‘face what you fear.’ Every time I looked at regex I cringed because I had no idea what all those forward slashes, back…Regex3 min read