发布时间:2013-10-17 17:43:01
参考文档1:http://blog.csdn.net/ithomer/article/details/6928318软件下载地址:http://valgrind.org/downloads/current.html常见检测内存泄漏的工具:C/C++1. Valgrind-Debugging and profiling Linux programs, aiming at programs written in C and C++.2. ccmalloc-Linux和Solar.........【阅读全文】
发布时间:2013-09-11 17:59:39
Tutorial 01: Making Screencaps OverviewMovie files have a few basic components. First, the file itself is called a container, and the type of container determines where the information in the file goes. Examples of containers are AVI and Quicktime. Next, you have a bunch of stre.........【阅读全文】
发布时间:2013-09-06 21:20:23
1,安装wmctrl:sudo apt-get install wmctrl2,在 ~/.vimrc 中加上:" 最大化窗口function Maximize_Window() silent !wmctrl -r :ACTIVE: -b add,maximized_vert,maximized_horzendfunction3,在 ~/.bashrc 中加上:alias gvim='gvim -c "call Maximize_Window()"'4,把开始菜单或者gnome面板中gvim的快捷.........【阅读全文】
发布时间:2013-07-05 11:02:57
ctags:step1 : download ctags-5.5.tar.gz ----> http://download.chinaunix.net/download.php?id=3567&ResourceID=1919step2 : shell# ./configure && make && make installstep3 : shell# cd /PATH/TO/SRC step4 : shell# ctags -Rstep5 : shell# vim /EDIT/FILE.C:set tags=/PAT.........【阅读全文】
发布时间:2013-07-05 10:22:01
~/.vimrc : "自动更新tagslet g:ProjTags = [ "/home/hdvr/src/" ]"gvim use desert.vim vim model use evening.vim"if has("gui_running") colorscheme desertelse colo eveningendif“自动开启Tlist,只剩Tlist时自动关闭let Tlist_Exit_OnlyWindow=1let Tlist_Aut.........【阅读全文】