1 . goto beyond compare folder
cd "/Applications/Beyond Compare.app/Contents/MacOS/"
2 . rename BCompare to BCompare.real
mv BCompare BCompare.real
1 . goto beyond compare folder
cd "/Applications/Beyond Compare.app/Contents/MacOS/"
2 . rename BCompare to BCompare.real
mv BCompare BCompare.real
| <GrepConsoleItems> | |
| <option name="items"> | |
| <GrepExpressionGroup> | |
| <option name="grepExpressionItems"> | |
| <list> | |
| <GrepExpressionItem> | |
| <option name="action" /> | |
| <option name="caseInsensitive" value="false" /> | |
| <option name="clearConsole" value="false" /> | |
| <option name="continueMatching" value="false" /> |
| #!/bin/sh | |
| # check for where the latest version of IDEA is installed | |
| IDEA=`ls -1d /Applications/IntelliJ\ * | tail -n1` | |
| wd=`pwd` | |
| # were we given a directory? | |
| if [ -d "$1" ]; then | |
| # echo "checking for things in the working dir given" | |
| wd=`ls -1d "$1" | head -n1` |
| @startuml | |
| ' uncomment the line below if you're using computer with a retina display | |
| ' skinparam dpi 300 | |
| !define Table(name,desc) class name as "desc" << (T,#FFAAAA) >> | |
| ' we use bold for primary key | |
| ' green color for unique | |
| ' and underscore for not_null | |
| !define primary_key(x) <b>x</b> | |
| !define unique(x) <color:green>x</color> | |
| !define not_null(x) <u>x</u> |
| body { | |
| padding: 0 !important; | |
| max-width: 900px !important; | |
| margin-left: auto !important; | |
| margin-right: auto !important; | |
| } |
Windows:
创建 ~/pip/pip.ini 文件。
添加如下内容:
[global]
timeout = 60
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com
| *.class | |
| # Mobile Tools for Java (J2ME) | |
| .mtj.tmp/ | |
| # Package Files # | |
| *.jar | |
| *.war | |
| *.ear |
| ## | |
| ## 32-bit Mingw-w64 repository mirrorlist | |
| ## Changed on 2014-11-15 | |
| ## | |
| ##中国科学技术大学开源软件镜像 | |
| Server = http://mirrors.ustc.edu.cn/msys2/REPOS/MINGW/i686 | |
| ##北京理工大学镜像 | |
| Server = http://mirror.bit.edu.cn/msys2/REPOS/MINGW/i686 | |
| ##日本北陆先端科学技术大学院大学 sourceforge 镜像 | |
| Server = http://jaist.dl.sourceforge.net/project/msys2/REPOS/MINGW/i686 |
| var jq = document.createElement('script'); | |
| jq.src = "//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"; | |
| document.getElementsByTagName('head')[0].appendChild(jq); | |
| // ... give time for script to load, then type. | |
| jQuery.noConflict(); | |
| function print_download_url() { | |
| var text = '\n'; | |
| $('div.ndownlist>ul>li input').each(function () { | |
| text += $(this).val() + '\n' |
| #!/usr/bin/python | |
| import smtplib,re,urllib2,time | |
| import socket | |
| from subprocess import Popen, PIPE | |
| smtpServer='smtp.163.com' | |
| smtpPort='25' | |
| sender = '[email protected]' | |
| senderPasswd = "XXXXX" |