Mar 30Member-onlyTruncating 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. …Java Script1 min read
Dec 28, 2020Member-onlyHow 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, 2020Member-onlyWhat 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, 2020Member-onlyAlgorithms: 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 using the built in JavaScript methods. function reverse(string) { return str.split('').reverse().join('') } reverse('hello there') Breaking down each method: We call…1 min read
Jul 22, 2020Member-onlyData 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, 2020Member-onlyBasic 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, 2020Member-onlyBasic 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, 2020Member-onlyReWild — a work in progressLast month I started to develop ReWild, a new e-commerce plant shop.Software Development1 min read
Jun 24, 2020Member-onlyThe 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