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
Drush Cheatsheet
Get version of Drupal and PHP you are running. drush status Update sync database The updatedb command is used to update the locate database on Unix-like systems. This database is used by the lo...
wordpress digitalocean migration guide
WordPress Migration to DigitalOcean App Platform with Docker Overview This guide walks through migrating a production WordPress site to DigitalOcean’s App Platform using Docker containers. App Pl...
Unobtrusive popup windows using session storage
Popup windows are effective for improving conversion rates but can be annoying if not done right. For instance we don’t want to fire the popup every time a user loads a specific url. That would su...
SMTP Cheatsheet
Website not sending mail? Maybe time to implement SMTP.
Essential WPCli Commands
How to install Use curl to download the WP-CLI phar file: curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar Check if the file is executable: php wp-cli.phar --...
Imagemagick Cheatsheet
Change / convert Filetype You can use ImageMagick’s convert command-line tool to change the file type of an image. Here’s the basic syntax: Change filetype of Multiple Images Using a wildcard it...
DDev Cheatsheat
Start a new project cd into your project root directory. Then run the ddev config command and choose your project settings. ddev config Start an existing project ddev start update php versio...
Grep Cheatsheet
Recursively find matching file types grep -Rl "my_file_name" . Limit by file type grep -R "search_text" --include="*.js" . ## Find Files by name find /path/to/search -type f | grep “pattern”...
Mysql Cheatsheet
update remote mysql siteurl Login to mysql mysql -h HOST -P PORT -u USER -p DBNAME Update url SELECT option_name, option_value FROM wp_options WHERE option_name IN ('siteurl', 'home'); UPDATE w...
Vim Cheatsheet
Extensive collection of vim basic to advanced Vim commands and plugins to enhance your vim text editing and coding experiences.