This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo lsof -nP -i | grep LISTEN | |
... | |
nginx 1330 root 6u IPv4 11055 0t0 TCP *:80 (LISTEN) | |
nginx 1331 www-data 6u IPv4 11055 0t0 TCP *:80 (LISTEN) | |
nginx 1332 www-data 6u IPv4 11055 0t0 TCP *:80 (LISTEN) | |
nginx 1333 www-data 6u IPv4 11055 0t0 TCP *:80 (LISTEN) | |
nginx 1334 www-data 6u IPv4 11055 0t0 TCP *:80 (LISTEN) | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description "dnscrypt startup script" | |
start on (local-filesystems and started dbus and stopped udevtrigger) | |
stop on runlevel [016] | |
script | |
exec /usr/local/sbin/dnscrypt-proxy --resolver-name=opendns --local-address=127.0.0.2 --user=dnscrypt --logfile=/var/log/dnscrypt.log --pidfile=/var/run/dnscrypt.pid | |
end script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java7-installer oracle-java8-installer | |
sudo update-java-alternatives -s java-7-oracle | |
sudo update-java-alternatives -s java-8-oracle | |
sudo apt-get install oracle-java8-set-default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install libtiff5-dev libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unzip -O CP936 xxx.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install ruby for windows | |
# http://rubyinstaller.org/ | |
$ gem sources --remove https://rubygems.org/ | |
$ gem sources -a http://ruby.taobao.org/ | |
$ gem sources -l | |
*** CURRENT SOURCES *** | |
http://ruby.taobao.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo sh /usr/share/ati/fglrx-uninstall.sh | |
sudo apt-get remove --purge fglrx* | |
sudo rm /etc/X11/xorg.conf | |
sudo dpkg-reconfigure xserver-xorg | |
sudo reboot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 第一种定义方式 | |
@app.template_filter('datetimeformat') | |
def datetimeformat(value, format='%Y/%m/%d %H:%M'): | |
return value.strftime(format) | |
# 第二种定义方式 | |
def datetimeformat(value, format='%Y/%m/%d %H:%M'): | |
return value.strftime(format) | |
app.jinja_env.filters['datetimeformat'] = datetimeformat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from django.core.urlresolvers import reverse | |
from django.contrib.auth import logout | |
from django.views.generic import RedirectView | |
class LogoutView(RedirectView): | |
""" | |
A view that logout user and redirect to homepage. | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fix psycopg2 error for py3k | |
sudo apt-get install python3-dev libpq-dev | |
# fix psycopg2 error for py2k | |
sudo apt-get install python-dev libpq-dev |