c语言中注释掉一段代码的方法

无评论

2012 年 7 月 26 日 at 上午 7:44分类:学习笔记

#if 0

要注释的代码

#endif

This text field does not specify an inputType or a hint

无评论

2012 年 7 月 25 日 at 上午 7:47分类:仅仅转载

EditText需要指定默认输入类型

加入android:inputType="number|phone",表示指定为数字或电话

更多…

为sudo添加alias支持

无评论

2012 年 7 月 21 日 at 下午 4:03分类:学习笔记

修改.bashrc文件,

vi ~/.bashrc

添加以下行

alias sudo='sudo '

之后source .bashrc即可

wordpress 取消两个减号自动连接为破折号

1 条评论

2012 年 7 月 21 日 at 下午 3:44分类:整理

命令行参数时常有两个"-"在一块的情况,wordpress书写的时候默认把他们连接在一起了.解决方法如下

修改 wp-includes/formatting.php文件,将下列行

$static_characters = array_merge( array( '—', ' — ', '–', ' – ', 'xn–', '…', '“', '\'\'', ' ™' ), $cockney );

修改为

$static_characters = array_merge( array( /*'—', ' — ', '–', ' – ', 'xn–', '…', '“', '\'\'', ' ™' */), $cockney );

即可

Arch linux 无法更新 错误:无法提交处理 (有冲突的文件) glibc: 文件系统中已存在 /lib

2 条评论

2012 年 7 月 21 日 at 下午 3:10分类:整理

1.先执行(注意ignore前边有两个"-")

 pacman -Syu –ignore glibc 

2.再执行 

更多…

Android Error:main cannot be resolved or is not a field

无评论

2012 年 7 月 20 日 at 上午 7:40分类:仅仅转载

R.layout.main总是在layout上有错误提示波浪线。

解决方法:

(1) 删除"import android.R;".
(2) 勾选上Eclipse中的"Project->Build Automatically";

更多…