Deploying with Heroku is generally one of the easiest ways to get your project on the internet quickly and for free. This is especially great for developers that want a live link to showcase their projects and sample work to prospective employers and companies. The first step is to create an account on Heroku. Don’tContinue reading “Deploying a React app with Heroku”
Tag Archives: Javascript
set interval, part 2: React.js
In a previous blog post, I covered the Javascript functions setInterval and setTimeout. Using setInterval is pretty straightforward and particularly helpful for automating certain functions and features, but what if you need to use in React? Before we being, feel free to brush up on or learn setInterval in my previous post here –> https://alejandrolinan.home.blog/2020/07/10/settimeout-and-setinterval-javascript/Continue reading “set interval, part 2: React.js”
Coding Challenges, A different way to think (JavaScript)
As a bootcamp grad, one of the greatest weaknesses I had coming fresh from the curriculum was Data Structures and Algorithms. As such, some coding challenges that were more like this and ‘riddle type’ concepts were harder for me than more practical concepts like setting up a backend, filtering data, or creating a feature inContinue reading “Coding Challenges, A different way to think (JavaScript)”
Pawns: My Flatiron Capstone, analysis, revisions, and moving forward.
In the next few blog posts, I will dive into my Flatiron Capstone, the Frontend and Backend. I’ll look into the appearance, the choices I made, and why I made them. Furthermore, I’ll also dive into what I would change and why I would change it. I’ll also discuss what I’ve learned and how IContinue reading “Pawns: My Flatiron Capstone, analysis, revisions, and moving forward.”
Javascript Number Methods
The mysteries and potentials of Javascript will always be numerous and expanding, but learning the fundamentals and core of options of the language will always remain invaluable tools. In this blog we will explore some of Javascript Number Methods and what they do. We will also describe how to use them by giving some codeContinue reading “Javascript Number Methods”
Live Sass Compiler – A VSCode extension for translating Scss to CSS
An guide to installing Live Sass Compiler and how to use it.
Using 3rd Party API’s (JS): the Weather Channel
In our last post I went into how AccuWeather offered their data through API’s. I went into the process of signing up for a developer account and managing their documentation to fetch the desired data. This blog post will be similar, with its focus on the Weather Channel, and it’s main purpose is to lookContinue reading “Using 3rd Party API’s (JS): the Weather Channel”
Using 3rd party API’s (JS): AccuWeather
Different companies have different API formats and different ways to access them. As developers, it is our job to figure out how to use them in efficient ways even though the formats may not always be set in the most efficient manner. Today we will explore AccuWeather’s setup, which is very detailed and fairly straightforward.Continue reading “Using 3rd party API’s (JS): AccuWeather”
AccuWeather vs the Weather Channel. API’s and their JSON outputs
Sometimes we need to source multiple API’s to get the same type of information and display it with the same coded format. Unfortunately, all API’s aren’t born equal and when we try to fit them into a formatted output, it just won’t work. In this case, it’s because API’s are not always structured the same.Continue reading “AccuWeather vs the Weather Channel. API’s and their JSON outputs”
React.js, proper hygienic file structure
When I first learned React, I didn’t learn a good way to organize my files and folders. At the time, I thought everything made sense and that my folder structure was straightforward, but the more I added to it and the larger my application grew, the more I started having a hard time searching forContinue reading “React.js, proper hygienic file structure”