Skip to content

Instantly share code, notes, and snippets.

@netivajak
netivajak / html-head-boilerplate.html
Created June 24, 2020 12:32 — forked from nunosans/html-head-boilerplate.html
HTML Head Boilerplate & Reference
<!doctype html>
<html>
<head>
<!-- Priority tags. These must come first. -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge; chrome=1"> <!-- Render Chrome if available or using latest version of Internet Explorer (Recommended). -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<!-- Document Title -->
<title>Page Title</title>
<!-- Allows control over where resources are loaded from. Place as early in the document as possible, only applies to content below this tag. -->
@netivajak
netivajak / README.md
Created December 13, 2017 17:10 — forked from MoOx/README.md
How to keep in sync your Git repos on GitHub, GitLab & Bitbucket easily
title tags authors
How to keep in sync your Git repos on GitHub, GitLab & Bitbucket easily
git
github
gitlab
bitbucket
MoOx
@netivajak
netivajak / cache-admin-menu-fix.sh
Created June 12, 2017 18:54
"cache_admin_menu' doesn't exist when using LOCK TABLES" - Quickly recreate cache_admin_menu
#!/bin/bash
drush -y dis admin_menu
echo "drop table cache_admin_menu;"
drush sql-cli
drush pm-uninstall admin_menu_toolbar
drush pm-uninstall admin_menu
drush -y en admin_menu_toolbar