I hereby claim:
- I am timonwong on github.
- I am timonwong (https://keybase.io/timonwong) on keybase.
- I have a public key ASDs1Y4E2mfuVF9a2pO59hFeVhVC6R8ZkGl_1eLxqkpunQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
http://stackoverflow.com/questions/22717428/vagrant-error-failed-to-mount-folders-in-linux-guest |
deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse | |
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse | |
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse | |
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse | |
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse | |
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse |
sudo docker ps -a | awk '{print $1}' | grep -v "CONTAINER" | xargs --no-run-if-empty sudo docker rm |
# -*- coding: utf-8 -*- | |
import os | |
import sys | |
from optparse import make_option | |
from django.core.management.base import BaseCommand | |
from django.core.management.base import CommandError | |
from django.db import connections | |
from django.db import DEFAULT_DB_ALIAS | |
from django.db.backends import BaseDatabaseClient |
import unicodedata | |
import sys | |
__all__ = ['UnicodeCategory', 'StringInfo'] | |
PY3K = sys.version_info[0] >= 3 | |
if PY3K: | |
unicode_type = str | |
else: |
package main | |
import ( | |
"fmt" | |
"runtime" | |
) | |
func StackTrace(all bool) string { | |
// Reserve 10K buffer at first | |
buf := make([]byte, 10240) |
#!/bin/bash | |
# !!path to the pip binary!! | |
PIP_BIN=/opt/python2.7/bin/pip | |
WHEEL_DIR=wheelhouse | |
DOWNLOAD_CACHE_DIR=cache | |
PIP_WHELL_REQUIREMENT="$@" |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import os | |
import logging | |
import threading | |
import time | |
import kombu.common | |
import kombu.pools |