Frontend

SEO Guide

MOZ SEO beginner guidearrow-up-right

JAMStack

Two area of focus here. Static Site Generatorarrow-up-right (Hugo, Gatsby, Hexo, Nextjs, etc.) & Headless CMSarrow-up-right (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

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

Last updated