Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| # VirtualBox home directory. | |
| "C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" setproperty machinefolder "C:\VMs" | |
| # Vagrant home directory for downloadad boxes. | |
| REG ADD HKCU\Environment /v VAGRANT_HOME /t REG_SZ /d "C:\VMs\vagrant.d" |
| #!/bin/bash | |
| # This hook is run after a new virtualenv is activated. | |
| set -e | |
| (cat <<'PYDOC' | |
| #!/usr/bin/env python | |
| import pydoc | |
| if __name__ == '__main__': | |
| pydoc.cli() |
| import sys | |
| import BaseHTTPServer | |
| from SimpleHTTPServer import SimpleHTTPRequestHandler | |
| HandlerClass = SimpleHTTPRequestHandler | |
| ServerClass = BaseHTTPServer.HTTPServer | |
| Protocol = "HTTP/1.0" | |
| if sys.argv[1:]: | |
| port = int(sys.argv[1]) |
| #coding=utf-8 | |
| import random | |
| from PIL import Image, ImageDraw, ImageFont, ImageFilter | |
| _letter_cases = "abcdefghjkmnpqrstuvwxy" # 小写字母,去除可能干扰的i,l,o,z | |
| _upper_cases = _letter_cases.upper() # 大写字母 | |
| _numbers = ''.join(map(str, range(3, 10))) # 数字 | |
| init_chars = ''.join((_letter_cases, _numbers)) |
| <dict> | |
| <key>name</key> | |
| <string>Git Modified Line</string> | |
| <key>scope</key> | |
| <string>git.changes.x</string> | |
| <key>settings</key> | |
| <dict> | |
| <key>background</key> | |
| <string>#272852</string> | |
| </dict> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>CSS responsive images</title> | |
| <style> | |
| /* Doesn't stop original source image being | |
| downloaded too */ | |
| @media (min-device-width:600px) { |
| description "upstart configuration for gunicorn" | |
| start on runlevel [2345] | |
| stop on runlevel [!2345] | |
| respawn | |
| exec /home/jamie/.virtualenvs/projectname/bin/gunicorn_django -c /home/jamie/code/projectname/gunicorn.py /home/jamie/code/projectname/settings/production.py |