Modernizr - Trying box-shadow check
-- this will create box-shodow in supported browsers and normal border in others(like IE 8).
-- also added modernizr-min-custom.js is a custom contains very few checks including box-shadow.
MAILCHECK=0 | |
# Workspace | |
WORKSPACE="$HOME/w" | |
alias w="cd ${WORKSPACE}" | |
export PATH="$PATH:$WORKSPACE/bin" |
{ | |
"fmt_cmd": [ | |
"goimports" | |
], | |
"env": { | |
"GOPATH": "$HOME/Code/go", | |
"PATH": "$GOPATH/bin:$PATH" | |
}, | |
"comp_lint_enabled": true, | |
"comp_lint_commands": [ |
import time | |
import os | |
import csv | |
from datetime import datetime | |
from sqlalchemy import create_engine | |
from googleapiclient import discovery | |
from oauth2client.client import SignedJwtAssertionCredentials | |
from googleapiclient.http import MediaFileUpload | |
client_email = os.environ["BQ_CLIENT_EMAIL"] |
" enable syntax highlighting | |
syntax enable | |
" show line numbers | |
set number | |
" set tabs to have 4 spaces | |
set ts=4 | |
" indent when moving to the next line while writing code |
#!/usr/bin/python | |
import base64 | |
import hashlib | |
result = base64.b64encode(hashlib.sha1("test").digest()) | |
print result |
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
class FeatureFlag | |
def self.allow_comments? | |
MomConfig['COMMENTS_SECTION_AVAILABLE'] == 'true' | |
end | |
end |