- 浏览: 223167 次
- 性别:
- 来自: 湖南
最新评论
-
yszheda:
codejm 写道请教:我使用的是YouCompleteMe, ...
使用vim插件clang_complete做coco2d-x代码提示 -
codejm:
请教:我使用的是YouCompleteMe,cocos2d-x ...
使用vim插件clang_complete做coco2d-x代码提示 -
Sirit:
配置CPLUS_INCLUDE_PATH,找不到相应的目录,我 ...
Windows+QT+Eclipse+MinGW搭建QT开发环境详细教程 -
liaohui0719:
Turbo的代码有个小瑕疵,若第一个元素不为零,则逻辑会出问题 ...
【8.04更新】上海华为的一道关于指针方面的编程题 -
benjiam:
int[] a = { 0, 4, 7, 2, 160, 0, ...
【8.04更新】上海华为的一道关于指针方面的编程题
文章列表
Vim github 地址
安装请看README,并根据需要修改
https://github.com/lihe757/.dotfiles
vim的配置比较全,
Emacs:需要先安装git
https://github.com/lihe757/emacs-prelude
ln -s emacs-prelude ~/.emacs.d
emacs需要先安装git然后会自动联网安装插件,这个在linux下能顺利通过安装,而在macos 下有问题。
vim代码补全之clang complete
- 博客分类:
- 开发工具
原文
是在windows环境下,配置方面与Linux下有些许差异,特记录之。
1.关于.clang_complete 中include path 路径的配置:
Windows下:为-ID:\path\to
Example:
-ID:\greensoft\codeblocks\share\minGW\include
在LINUX下:为-I\path\to
Example:
-I/home/lihex/Box2D_v2.2.0/Box2D/
2.如果.clang_complete中配置的选项不正确,则VIM中自动提示功能将失效
When importing cscope.out, you can supply the prefix, i.e.
:cscope add /path/to/cscope.out /path/to/src/code
Then your searches will turn up like:
Cscope Tag: foobar
# line filename / context / line
1 21 /path/to/src/code/foobar_file.c
linux下apache无法读取软链接的文件的问题,这很可能是你所链接的文件,apache没有读权限。
所以解决的办法可以是:
对软链接所链接的原始文件使用:chmod 777 文件名
对软链接所链接的原始文件使用:chmod -R 777 文件夹名
Install Uubuntu11.04 from Hard disk To U disk
同样适合安装硬盘
今天几乎折腾了一天的时间,实验出了这个方案-_-!
警告:请先完整阅读后,在操作。
主机介绍:
我的硬盘装有XP和ubuntu双系统。
硬盘分区结构如下:
Windows:3个 ...
摘自:Vi-iMproved 290页
Customizing the Syntax Highlighting
The Vim editor enables you to customize the colors used for syntax hightlighting.
The Vim editor recognizes three different types of terminals:
term A normal black-and-white terminal (no color)
cterm Color terminal, such as xterm or t ...
该死的safari崩溃,写了1个小时的文章烟消云散!!!!坑爹的苹果啊育木有啊!!
不想重写,只记录关键的:
目标机器ip:192.168.1.110
服务器ip:192.168.1.105
操作:
服务器:
挂载dvd.iso到http服务器目录suse
目标机器 :
1。提取iso 中的linuz 和initrd到任意分区根目录
2。grub引导:
kernel /linuz usessh=1 sshpassword="12345678" install=http://192.168.1.105/su ...
1.安装好csupport
2.进入vim ,命令模式,输入
:helptags ~/.vim/doc/
3.OK
g4l.iso可以通过sshfs等方式将分区备份到远程主机
将g4l.iso拷贝到gru4dos运行的根目录
menu.lst设置
find --set-root /g4l.iso
map /g4l.iso || map /g4l.iso (0xff)
map --hook
chainloader (0xff)
引用:http://linux.chinaitlab.com/administer/731016.html
Mac OS 启动sshd服务
http://reeze.cn/2009/06/19/start-sshd-service-in-mac-o ...
在ubuntu中,默认安装GNUStep后,GUI程序运行不能,如ProjectCenter,Gorm等。
通过命令行运行发现跟缺少字体设置有关。
今天在github找到了解决答案:
https://github.com/michaelwisely/GNUstep-Sudoku
以下引用原作者的决绝方法:
Sudoku! is a simple sudoku game written in Objective-C using the GNUStep
libraries.
If you are using the libgnustep-art gui back and a ...
1.安装p4merge:
下载地址:http://www.perforce.com/perforce/products/merge.html
下载得到p4v.gz
解压得到两个文件夹bin和lib,将这两个文件夹覆盖到/usr 目录(使用管理员权限)
2.根据prgit.pdf说明,进行配置(第161页),以下是我配置的结果都是都是Shell代码(需要管理员权限):
文件名:extDiff
存放路径:/usr/local/bin/extDiff
文件内容:
#!/bin/bash
/usr/bin/p4merge "$2" " ...
kernel /vmliuz root=/dev/sda7 single
initrd /initrd.img
安装了macubuntu后,觉得不满意,于是便用他自己的卸载命令还原了。可问题来了,还原后无法开启compiz特效了。这个问题搁置了一段时间。今天忽受一篇网友的日志提示,心想可否用“重新安装compiz-fusion icon“来重新设置compiz特效呢?于是,到软件中心搜索fusion,找到安装,然后通过Select Window Manager-->Compiz(来回切换几次)/Metacity 后,compiz特效就被成功激活了。呵呵,希望对大家有用。
转自:GMAIL 邮件列表 http://comments.gmane.org/gmane.comp.handhelds.android.devel/82840
==================================================
I've been fighting with styling on ExpandableListView as well (an areathat could use some improvement in a future release).The problem with the current implementation ...
假设有这样的一个layout,要想TextView01对齐在左边,TextView02对齐在右边,可以如下设置:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/RelativeLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android=" ...