Jun 3, 2021Women to Watch in Tech in 2021Highlighting four incredible women in tech: Manon Sainton, Sammi Flores, Nadine Dixon, Netaly RamierzWomen In Tech5 min readWomen In Tech5 min read
Jan 10, 20215 Women in Tech to Watch in 2021Joy BuolamwiniWomen In Tech4 min readWomen In Tech4 min read
Dec 14, 2020Props and State in ReactMad props to the folks who create this awesome open-source, front-end, JS Library known as React. React is great for single-page apps, rendering Data to the DOM, routing, and state management. …React3 min readReact3 min read
Nov 19, 2020Women In Tech: A Long Way To GoI recently came across a tweet that got me thinking: As you see here, society tells us that technology is a place for males. We start this narrative at a young age, saying to young boys, shoot for the stars (literally). …Women In Tech3 min readWomen In Tech3 min read
Sep 25, 2020The Power of CSS: Beginner’s GuideCSS(Cascading Style Sheets) is the code that styles the web content bringing our webpages to life with color and pizzaz. Don’t you find it amazing what a little color, border, or font change can bring to your applications? …CSS4 min readCSS4 min read
Sep 4, 2020JS101: Ternary OperatorLet’s talk about the ternary operator! The ternary operator is a conditional operator that can efficiently replace several lines of IF statements, allowing us shorter and tidier code. The ternary operator is the only JavaScript operator that takes 3 operands. IF statement let pay_babysitter = true if (pay_babysitter) {…Ternary Operator2 min readTernary Operator2 min read
Aug 19, 2020Member-onlyES6: Arrow FUNctionsTypically, programmers are always looking for ways to make their jobs easier and faster. Enter in: Arrow Functions. They put the FUN in function. Arrow functions were introduced in ES6, with the intention to write shorter function syntax. Sign me up! Example of Name Function vs Arrow FunctionArrow Functions3 min readArrow Functions3 min read