摘要:
c++ 在客户端的GCC使用 翻译自: "" GCC是GNU工具箱的一个功能,GNU还包括如下功能: 1. GNU compiler collection (GCC) 2. GNU make 3. GNU Debugger (GDB) 4. .... GCC目前在所有的linux系统都支持 本文在 阅读全文
摘要:
python中写shell,亲测可用,转自stackoverflow To run a bash script, copy from stackoverflow def run_script(script, stdin=None): """Returns (stdout, stderr), rais 阅读全文
摘要:
##沟通* 不要越级沟通* 言必成三,超过3点记不住的。* kiss原则,keep it simple and stupid* 说事实+观点* 先说结论与重点,再说细节* 支撑结论:mece原则,穷尽且不交叉* 提问最好不要问是或否的问题,而是开放性问题。 - 是或否~喜欢周杰伦吗? - 开放性~你... 阅读全文
摘要:
![](http://images0.cnblogs.com/blog2015/550043/201506/171804112168144.jpg)![](http://images0.cnblogs.com/blog2015/550043/201506/171804180137468.jpg) 阅读全文
摘要:
ScholarOne's 对python matplotlib画图产生的Type 3 fonts字体不兼容,更改措施:在程序中添加如下语句import matplotlibmatplotlib.rcParams['pdf.fonttype'] = 42matplotlib.rcParams['ps.... 阅读全文
摘要:
最近学习了如何用ipython notebook, 它可以显现 python程序交互, 数学公式,markdown的结合,Nice. 还可以转换为html, latex文件等等,Nice. 那么先说下怎么实现吧。 * 先安装python2.7 * 在安装pip包,并把numpy, matplotl... 阅读全文
摘要:
此法可以把所有字体转为Embedded,先生成*.ps文件,下载ghostscrip8.51和GSView4.7安装,用gsview4.7转换*.ps->*.pdf,在gsview中File->Convert 设置Device -pdfwriteResolution -600打开"Propertie... 阅读全文
摘要:
python methodsearchwordlist= [wforwinnltk.corpus.words.words('en')ifw.islower()]print[wforwinwordlistifre.search('ed$',w)]findallword ='supercalifragi... 阅读全文
摘要:
L=[5,4,3,2,1,'abc']del 按照index删除比如:del L[i]del L[i:j]remove按照内容删除L.remove('abc')L.remove(0)#会报错,因为没有为0的内容 阅读全文