简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
转自:http://blog.csdn.net/hejinjing_tom_com/article/details/89245731. 查看svn 的用户名,密码:找到用户名,密码文件,都是明文的,你可以看到例:linuxhjj@hjj-ubuntu:~/.subversion/auth/svn.simple$ ls9aad7e9f713353a655cf4365926120c
删除该目录下所有svn的文件删除文件夹:rm -rfv .svn删除该目录下所有.svn的文件:find . -name .svn -exec rm -rvf {} \;#find ... -exec rm {} \; #find ... | xargs rm -rf 两者都可以把fin
转自: http://blog.sina.com.cn/s/blog_7b6fc4c90100yn57.html普通用户ssh连接linux服务器是总是提示:ulimit: open files: cannot modify limit: Operation not permitted解决办法:vi /etc/security/limits.conf
转自:http://www.2cto.com/kf/201304/201711.html在C++中使用hash_map时,警告如下:[html] 。。。。。。。。。。。。。 /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28
转自:http://www.cnblogs.com/cobbliu/archive/2013/03/02/2940074.html参考:http://www.open-open.com/lib/view/open1421115405671.htmlprtotocol buffer是google于2008年开源的一款非常优秀的序列化反序列化工具,它最突出的特点是轻便简介,而且有很多语
作为Linux下的程序开发人员,大家一定都遇到过Makefile,用make命令来编译自己写的程序确实是很方便。一般情况下,大家都是手工写一个简单Makefile,如果要想写出一个符合自由软件惯例的Makefile就不那么容易了。在本文中,将给大家介绍Linux Automake各种命令介绍。1、autoscanautoscan是用来扫描源代码目录生成configure.scan文件的。a
参考: http://sourceware.org/gdb/wiki/STLSupporthttp://blog.csdn.net/fdl19881/article/details/8710636http://blog.sina.com.cn/s/blog_4fcd1ea30100xhio.htmlvi ~/.gdbinit 输入一下内容pythonim
转自:http://www.111cn.net/database/mysql/53890.htmhttp://blog.csdn.net/atec2000/article/details/7041352information_schema 库的 TABLES 表,主要字段分别是:TABLE_SCHEMA : 数据库名TABLE_NAME:表名ENGINE:所使用的存
转自:https://my.oschina.net/sallency/blog/465079参考:http://blog.sina.com.cn/s/blog_91339bff0100ymc2.html . cascade方式 在父表上update/delete记录时,同步update/delete掉子表的匹配记录 . set null方式 在父表上update/delete
转自:http://www.educity.cn/wenda/399550.htmlMySQL 数字类型转换函数(concat/cast)1、将Int 转为varchar经常用 concat函数,比如concat(8,’0′) 得到字符串 ’80′2、将varchar 转为Int 用 cast(a as signed) a为varchar类型的字符串3.mysql也支持CONVER