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
"*": | |
"autocomplete-python": | |
extraPaths: "$PROJECT/build/sos/venv/lib/python2.7/site-packages/" | |
pythonPaths: "$PROJECT/build/sos/venv/bin/python" | |
useKite: false | |
useSnippets: "all" | |
core: | |
themes: [ | |
"one-dark-ui" | |
"atom-dark-syntax" |
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
wget http://www2.warwick.ac.uk/fac/sci/statistics/staff/academic/firth/software/pdfjam/pdfjam_latest.tgz | |
cp pdfjam.conf ~/.pdfjam.conf | |
# pdflatex='/Library/TeX/texbin/pdflatex' | |
# paper='letterpaper' | |
./pdfjam --fitpaper true --nup 2x2 --delta '1mm 1mm' --scale 1.0 input.pdf --outfile output-4up.pdf |
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
# List which process is listening upon port 5000 | |
$ lsof -i :5000 | |
# kill command with PID 12345 | |
$ kill -9 12345 |
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
$ ffmpeg -framerate 60 -pattern_type glob -i 'output/*.jpg' out.mp4 |
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
import time | |
import RPi.GPIO as GPIO | |
GPIO.setmode(GPIO.BOARD) | |
GPIO.setwarnings(False) | |
GPIO.setup(8, GPIO.OUT, initial=GPIO.HIGH) | |
GPIO.setup(10, GPIO.OUT, initial=GPIO.HIGH) | |
while (True): |
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 raspi-config | |
$ sudo apt-get update | |
$ sudo apt-get install supervisor |
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
# Create a new branch locally | |
$ git checkout -b [branch] | |
# Create and push the new branch to orign | |
$ git push origin [branch] | |
# Merge branch to master | |
$ git checkout master | |
$ git merge [branch] |
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
<form action="https://shenghuo.alipay.com/send/payment/fill.htm" method="post" target="_blank" accept-charset="GBK" id="alipayForm"> | |
<input name="optEmail" type="hidden" value="[email protected]" /> | |
<input name="payAmount" type="hidden" value="1.00" /> | |
<input id="title" name="title" type="hidden" value="捐赠给”前端技术分享”网站" /> | |
<input name="memo" type="hidden" value="文章写的不错,支持站长,我来捐赠鼓励的!" /> | |
<input name="pay" type="image" src="https://img.alipay.com/sys/personalprod/style/mc/btn-index.png" width="250" height="58"> | |
</form> |
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
# Path to your oh-my-zsh installation. | |
export ZSH=~/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="gitster" | |
# Uncomment the following line to use case-sensitive completion. |
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
# https://devcenter.heroku.com/articles/getting-started-with-django | |
# Regions | |
$ heroku regions | |
$ heroku create --region eu | |
# Create | |
$ heroku create | |
$ git push heroku master |
NewerOlder