Essential Web development & Digital Marketing cheatsheets, step by step guides and tutorials, code examples. Simplified.
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
Latest posts
LSP Cheatsheet
Add the tailwind language server to Neovim. Tailwindcss Prerequisites node version 22 nvim-cmp (completion engine) Treesitter LSPconfig Mason install global language server npm in...
Daisy UI Cheatsheet
Daisy is built for your easy going Developers. Developers like you and me. We dont care too much about the inner workings, we more care about building something awesome, quickly. Daisy is good lik...
Ffmpeg Cheatsheet
Avoid using online services to remove silence from audio files. (they just want to on sell your email address). If you have homebrew installed the process to remove silence from audio files can be ...
PHP Cheatsheet
Ternary operators Basic True / False Declaration $is_admin = ($user['permissions'] == 'admin') ? true : false; Conditional Welcome Message echo 'Welcome '.($user['is_logged_in'] ? $user['first_na...
SEO JSON Schema cheatsheet
Why use SEO Schema on a Webpage Using SEO schema (structured data markup) on a webpage is beneficial because it helps search engines better understand the content of your site. Here’s why it’s imp...
DNS Cheatsheet
Cname To create a CNAME record, you need specific pieces of information related to your domain and the target you’re pointing to. Here’s how to gather all the necessary information step-by-step: ...
Upgrade php on apache server
Upgrading PHP on the web server Firstly, this article is primarily about upgrading the php version of the webserver rather then the php-cli version. to find the php-cli version run php -v on the ...
Rsync Cheatsheet
If you have an ssh access to a remote server. Deploying websites with rsync is a great option for simple sites and solo projects. Here’s a concise rsync cheatsheet for quick reference: Basic Synt...
Color Cheatsheet
Color for User Interfaces Colour is a critical part of a UI website design. And a huge part of the UI design process. Starting with the right colour range can drastically improve the outcome and qu...
woocommerce product attributes
// Get Product ID $product->get_id(); // Get Product General Info $product->get_type(); $product->get_name(); $product->get_slug(); $product->get_date_created(); $product->get...