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...
SMTP Cheatsheet
Website not sending mail? Maybe time to implement SMTP.
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.
AI Coding projects
Coding apps, games or website with AI feels like a revolution of sorts yet still only scratching the surface. With the sensation roo-code module pulling ai from your ai of choice directly into VSco...
Wordpress Debug Errors
Debugging acf blocks add your block to an empty page most errors are caused by missing values in your block. ie: no image value added to the block or no subtitle value save your block with ...
Document Object Model Cheatsheet DOM
https://youtu.be/KShnPYN-voI?si=wsZtva5f54HJNvbY A object tree representation of a html document. The browser keeps the dom tree and insync with the html. When we talk about the dom we are talkin...
Commandline Cheatsheet
Improve your Commandline usage with these Dns and Navigational terminal commands and functions.
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...