SSG, SSR, ISR
Nextjs gives you options (ssg, ssr, isr) on a page by page basis for generating pages. SSG - Static site generation GetStaticProps Specifically when using frameworks like Next.js—”Static Props” r...
Every Problem can be traced back to a lack of assets. DynamiteFrog aims to provision those assets for common web development and digital marketing problems
Deep dives into the topics that matter most — curated collections of guides, cheatsheets and tutorials.
Nextjs gives you options (ssg, ssr, isr) on a page by page basis for generating pages. SSG - Static site generation GetStaticProps Specifically when using frameworks like Next.js—”Static Props” r...
The Minimal Version Create display view Create a form view Create a normal select list field with names relative to the display and form view Apply to your paragraph block using the the s...
A practical step-by-step guide to building a 5-page brochure website using Drupal 11 as a headless CMS with Paragraphs for flexible layouts, GraphQL Compose as the API layer, and Next.js as the fro...
React Overview - 2024-05-11 Why React atomic design React allows you to build frontends in components and the components can be updated to form alternate components. This solves the problem of h...
Responsive layouts Breakpoints Prefix Min Width Example Usage sm: 640px sm:text-lg → applies at > 640px md: 7...
They call it GraphQL because the data is all connected like a Graph.. And the QL part, well that stands for Query Language. For example, Reviews are connected to authors. and you only need to make...
Shopify theme conditional Liquid tag code examples for coding shopify themes
Twig coding overview, conditional statements extends, arrays, objects, loops
Sym links are “symbolic” links. Its a symbolic link to a real file or folder. The symbolic part is just a representation of a file, not a real file. Move your file or folder to its new locatio...
Quick fix for uploads and plugins chmod 755 wp-content/uploads chmod 755 wp-content/plugins find wp-content/uploads -type f -exec chmod 644 {} \; find wp-content/plugins -type f -exec chmod 644 ...