How to start learning web development for freeThere are so many free resources available online to help you start (and continue) your journey in web development. In this post, I've gathered a list of my favorite, and most high-quality, materials. If you have additional suggestions on resources...Apr 30, 2024路4 min read路6
Building a Weekly Planner App with ReactJS + FullCalendar: Project Setup (Part 1)Apr 10, 2023路2 min read路664
April Code Challenge: JS on ExercismThough a week of April has already passed, I thought it wouldn't be too late to try to do a 3-week code challenge! As a web developer - and honestly, in pretty much any career or area of life - I feel it's important to constantly improve and sharpen ...Apr 7, 2023路2 min read路66
February Code Challenge: 28 Websites in 28 Days(Scroll to the bottom to see my updates on this challenge!) About the Challenge Hey everyone! Recently I've decided to give myself a Code Challenge every month (for the remainder of 2023) to stretch my skills and have a bit of fun. This February, I'l...Jan 27, 2023路2 min read路64
Setting up TailwindCSS with SASS in RedwoodJSHere's a quick and easy guide on how to setup TailwindCSS, using the SASS preprocessor, in a new RedwoodJS project. Requirements Make sure you have the correct npm / yarn versions installed, the details of which can be found at https://redwoodjs.com/...Mar 26, 2022路1 min read路191
Setting up TailwindCSS with SASS in LaravelStart Before beginning, make sure you have Composer and npm installed. First, create a Laravel project. Install dependencies Next, install Laravel's npm dependencies by running the following commands: npm install npm install tailwindcss Sass comes w...Sep 27, 2020路1 min read路146
Setting up TailwindCSS in a Laravel projectMake sure Composer and npm are installed before you begin! (Note: If you prefer using SASS or LESS, the below tutorial may not be applicable.) If you haven't set up Laravel yet, follow the steps below. Otherwise, skip these two steps. Run composer g...Mar 4, 2020路2 min read路51