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
React Cheatsheat
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...
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 --...
CSS Cheatsheet
css code examples and for styling modern websites
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”...
Javascript Cheatsheet
JavaScript: Understanding the Weird Parts - The First 3.5 Hours Javascript compares the value of objects and variables stored in memory and not the value you assigned to them Javascript behaves t...
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...