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
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...
file permissions cheatsheet
A Linux file system is made up of users, groups and files. The files need the appropriate permissions so that users can work with them. File permissions In order to create, remove, update and del...
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...
laravel mix cheatsheat
Compile sass into css with the simplicity of laravel-mix npm init npm install laravel-mix Create webpack file vim webpack.mix.js let mix = require("laravel-mix"); mix.sass("scss/style.scss"...
Breakpoints and CSS Media Queries
Ultimately you cannot design for all the screen sizes / resolutions listed here. Pro tip: use google analytics to uncover your audiences most popular screen size and set your artboard size acco...
Grep Cheatsheet
Find Files by name find /path/to/search -type f | grep "pattern" Find File containing text string. grep -rl "string" /path find file containing text string in specific file type. grep -r "exa...