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
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...
SASS SCSS Cheatsheet
Setup Node SASS Watch If your a frontend web developer, then CSS is your bread-and-butter. For a long time, CSS is all us frontend devs had. CSS is pretty limited. It lacks variables and functions...
Vim Cheatsheet
Extensive collection of vim basic to advanced Vim commands and plugins to enhance your vim text editing and coding experiences.

Ghostscript Cheatsheet
Combine, manipulate, Merge, convert and Extract PDF files using Ghostscript with these powerful ghostscript commands
ZSH Cheatsheet
Pretty up your shell with Zsh.
Robots Cheatsheet
code examples to help you configure the way your site is crawled by search engines
bash shell scripting cheatsheet
Shell Scripting Crash Course - Cheatsheet for beginners This is a bash shell scripting which can be found on Unix, Linux and Mac. You can install bash on the Linux subsystem on Windows too. the f...
Zen Coding Emmet Cheatsheet
Speed up your coding with emmet zen coding automation.
wp query cheatsheet
<?php /** * WordPress Query Comprehensive Reference * Compiled by luetkemj - luetkemj.com * * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query * Source: http://core.trac.wordpress.org/...
Mysql Cheatsheet
Update password in WordPress database UPDATE wp_users SET user_pass = MD5( ‘new_password’ ) WHERE wp_users.user_login = “admin_username”; password must be set to md5 for login to work troubleshoot...