Frontend

SEO Guide

MOZ SEO beginner guide

JAMStack

Two area of focus here. Static Site Generator (Hugo, Gatsby, Hexo, Nextjs, etc.) & Headless CMS (Strapi, Ghost, etc.)

Javascript Library

Library / Project
Purpose / Solution

Opensource library for visualizing data

Code Snippet

Some common and useful JS that I coudn't remember by heart

Enable/disable input fields
// Disable
$('#input-id').prop('disabled', true);
// Enable
$('#input-id').removeAttr('disabled');

Last updated