`
zzjjzzgggg
  • 浏览: 123698 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论
文章列表

vim note

    博客分类:
  • vim
  匹配次数修饰符: *   >=0 \+ >=1 {2,} >=2     统计匹配次数: :%s/<pattern>//gn     删除匹配行: :g/pattern/d     删除重复行: :sort :g/^\(.\+\)$\n\1/d
1. 先生成ps文件 ,然后将ps按照下面命令转为pdf gswin32c -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/printer -dCOMPatibilityLevel=1.4 -dMaxSubsetPct=100 -dSubsetFonts=true -dEmbedAllFonts=true -sOutputFile=yourfile.pdf  yourfile.ps   2. 生成dvi文件,将dvi文件转为pdf 编辑下面dvi的配置文件:MiKTeX\dvi ...
  http://www.terheyden.com/blog/?p=202   x2go is an awesome remote desktop solution for windows->linux. However, by default, Alt-Tab doesn’t work! Luckily it’s easy to fix. Go into your x2go client settings and set thusly:   I’ve replaced -multiwindow with -rootless, and added -keyhook. Y ...
http://yihui.name/en/2007/10/multicol-multi-column-pages-in-latex/       写道 ... \usepackage{multicol} ... \begin{multicols}{3} % 3 columns If you are using a standard Latex document class, then you can simply pass the optional argument twocolumn to the document class: \docum ...
http://tex.stackexchange.com/questions/18685/techniques-for-embedding-images-with-transparent-backgrounds-in-latex     You need the standard package graphicx to include the image. Loaded xcolor would also be a good idea. Here some examples which use a transparent test PNG I got from http:// ...
  gnuplot 生成的eps图太大了。 原因是EPS中有很多重复的数据点。   解决方式是去除重复点。 下面的python程序可以解决之。   #! /usr/bin/env python #encoding: utf-8 import sys import os def reduce(fi,fo): fr,fw=open(fi), open(fo,'w') ll=None for l in fr: if l!=ll: fw.write(l) ll=l fr.close() fw.close() if __nam ...
http://blog.dabeale.com/2009/01/making-matlab-engine-work-from-cc-using.html     First install csh this can be installed using aptitude.   export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/matlab2010a/bin/glnxa64   LIB = -I/opt/matlab2010a/extern/include -L/opt/matlab2010a/bin/glnxa64 -leng -lm ...

Mathematica note

清理工作空间中所有变量    Clear["Global`*"]; 找最大值、最小值    FindMaximum、FindMinimum   Substitution rule:   The substitution rule is a very powerful tool in Mathematica. It removes the need to constantly redefine variables to substitute into expressions. A substitution rule is written ...
# 移除apache2自启动脚本, # 参数-f是为了解决 update-rc.d: /etc/init.d/apache2 exists during rc.d purge的问题 sudo update-rc.d -f apache2 remove   # 同时也可以方便的恢复自启动脚本 sudo update-rc.d apache2 defaults   # 或者编辑文件 /etc/default/apache2 设置内容中的 NO_BOOT 值为 1.

R 语言摘记(R-intro)

    博客分类:
  • R
寻求帮助,使用 help(solve),?solve 和 help(“solve”)是一样的,如果需要搜索可以用 help.search(solve) 或者 ??solve。另外使用 help.start() 可以打开网页版的帮助,这个功能倒是和 Matlab 的 doc 有几分相似。   使用 source() 和 sink() 命令可以将 R 的输入输出重新定向,比如从一个文件中读入命令就是 source( “my-file.R”),而将输出导入到文件则是 sink( “output.result” )。   对于一个 workspace 里面的数据,可以用 objects( ...
http://www.ruanyifeng.com/blog/2010/05/html5_codec_fight.html

Linux notes

Ctrl+C  终止并退出前台命令的执行,回到SHELL Ctrl+Z 暂停前台命令的执行,将该进程放入后台,回到SHELL   jobs  查看当前在后台执行的命令,可查看命令进程号码 & 运行命令时,在命令末尾加上&可让命令在后台执行 fg N  将命令进程号码为N的命令进程放到前台执行,同%N bg N  将命令进程号码为N的命令进程放到后台执行   > 重定向输出(覆盖) >> 重定向输出(追加) 2> 错误重定向(覆盖)   du -sh dir 统计目录dir 大小   screen exi ...

git note

    博客分类:
  • git
Create a git repository   git init git remote add myproj git@localhost:myproj.git git push myproj master git clone git@localhost:myproj.git
sudo mount /dev/sdb1 /data -o uid=1000,gid=1000,dmask=022,fmask=133 http://forum.ubuntu.org.cn/viewtopic.php?t=6015
删除unity sudo apt-get -y --auto-remove purge unity sudo apt-get -y --auto-remove purge unity-lens-* sudo apt-get -y --auto-remove purge unity-common sudo apt-get -y --auto-remove purge unity-services sudo apt-get -y --auto-remove purge unity-asset-pool   删除覆盖式滚动条 sudo apt-get remove overlay ...
Global site tag (gtag.js) - Google Analytics