Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
<select id="edit-menu-item-if-menu-subsite-6185" multiple="yes" name="menu_item_6185_if_menu_subsite[]" class="widefat" size="6" style="margin-top:5px"> | |
<option value="1">ALL</option> | |
<option value="2">Texas</option> | |
<option value="8">Arizona</option> | |
<option value="9">New Mexico</option> | |
<option value="10">Colorado</option> | |
<option value="11">Washington</option> | |
<option value="12">Georgia</option> | |
<option value="13">Kansas</option> | |
<option value="15">Florida</option> |
$contrasted-default-dark: #000; | |
$contrasted-default-light: #fff; | |
@mixin contrasted($bg, $dark:$contrasted-default-dark, $light:$contrasted-default-light){ | |
background-color: $bg; | |
color: get_contrast_yiq($bg, $dark, $light); | |
} |
[ | |
{ | |
"keys": ["super+alt+`"], "command": "toggle_origami_auto_zoom", | |
} | |
] |
add_action('print_media_templates', function() { | |
?> | |
<script> | |
var el = document.getElementById('tmpl-attachment'); | |
var pos = el.outerHTML.indexOf('<# } else if ( \'image\' === data.type && data.sizes ) { #>'); | |
var text = '<# } else if ( \'svg+xml\' === data.subtype ) { #>\n' + | |
'<div class="centered">\n' + | |
'<img src="{{ data.url }}" class="thumbnail" draggable="false" />\n' + | |
'</div>\n' + |
find ./ -type f | grep .DS_Store | xargs rm |
Getting started:
Related tutorials:
cat /etc/centos-release # nice to know what CentOS we're running | |
yum update # update yum (don't upgrade as it will remove essential stuff for our specific server) | |
yum remove php-common # remove php-common | |
yum clean all # clean up yum | |
yum install wget # if wget isn't on the system, install it |
A Pen by Andrew Houle on CodePen.
A Pen by Andrew Houle on CodePen.
A Pen by Andrew Houle on CodePen.