Search Engine News Summary May 4th, 2020

SEO Roundtable Google Advice On Old Content On News Sites: Remove, Noindex Or Leave It Tidbits: Interview With Nathan Chalmers, Bing Search Relevance Team – Jason Barnard does these awesome interviews on his YouTube channel and one he just recently released was with Nathan Chalmers, the Program Manager, Bing Search Relevance Team at Microsoft. Here […]

Migraine Tracker – Deploy Backend & Frontend

Github – Server: https://github.com/jbhafner/migraine-tracker-server Github – Client: https://github.com/jbhafner/migraine-tracker-client Live App: https://migraine-tracker-jbh.netlify.com/ Deploy Backend First I have to deploy the server to Heroku. // Create Heroku Project Darrens-MBP:migraine-tracker-server bhafner$ heroku create migraine-server-jbh Creating ⬢ migraine-server-jbh… done https://migraine-server-jbh.herokuapp.com/ | https://git.heroku.com/migraine-server-jbh.git // Create MongoDB Darrens-MBP:migraine-tracker-server bhafner$ heroku addons:create mongolab Creating mongolab on ⬢ migraine-server-jbh… free Welcome to mLab. […]

Migraine Tracker – Create Frontend

Firstly, I use create-react-app to create my project files.  But then I’ll delete everything in src folder and start from scratch to get the things I want to have in it. In preparation for some packages I’ll need later on, I “yarn add” (same as “npm install”, using yarn the following packages: redux, redux-promise, react-redux, and […]

Javascript – Synchronous vs. Asyncronous

I’ve always been confused by the terms synchronous vs. asynchrous in Javascript, as they seem to mean just the opposite of what they would mean in the real world.  I always thought that synchronous meant multiple things could happen at once, and asynchrous means only one thing can happen at a time. According to dictionary.com, […]

Migraine Tracker – Create Backend

I have long suffered with migraines.  Currently I track my daily migraines on an Excel spreadsheet, but I am going to create my own app to track them using the MERN stack Node, Express, MongoDB and Mongoose on the server.  I will develop the client in React. npm init -y to create my package.json file […]

_.map – Javascript Problem

This is an exercise taken from the Javascript: From Fundamentals to Functional course by Bianca Gandolfo on FrontEnd Masters.  The characters are taken from a game of Clue – a murder whodunit… Here I have recreated a map() method in a slightly different way.  Instead of attaching it to the array prototype, I created it […]

_.forEach – Javascript Problem

This is an exercise taken from the Javascript: From Fundamentals to Functional course by Bianca Gandolfo on FrontEnd Masters.  The characters are taken from a game of Clue – a murder whodunit… Here I have recreated a forEach() method in a slightly different way.  Instead of attaching it to the array prototype, I created it […]

Crypto-Tracker Project v. 2.0

I have just finished v. 2.0 of CryptoTracker.  I have the backend server done, and putting the finishing touches on the front-end.  Most of the functionality is there, but I’m still working on formatting. On the home page, I have a chart and graphs that rely on an api call to cryptocompare.com.  Crypto price charting […]