上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页

2013年1月5日

Libxml2

摘要: http://xmlsoft.org/http://www.zlatkovic.com/libxml.en.html 阅读全文

posted @ 2013-01-05 21:11 androidme 阅读(145) 评论(0) 推荐(0) 编辑

[FirefoxPlugin]Print pages to Pdf

摘要: https://addons.mozilla.org/zh-CN/firefox/addon/print-pages-to-pdf/http://printpages2pdf.hostingsociety.com/index.php/en/how_to_start.html 阅读全文

posted @ 2013-01-05 14:41 androidme 阅读(205) 评论(0) 推荐(0) 编辑

2013年1月1日

Protege学习笔记

该文被密码保护。 阅读全文

posted @ 2013-01-01 20:33 androidme 阅读(1) 评论(0) 推荐(0) 编辑

OWL相关的工具和库

该文被密码保护。 阅读全文

posted @ 2013-01-01 14:05 androidme 阅读(8) 评论(0) 推荐(0) 编辑

2012年12月29日

UltraEdit语法高亮解决办法

摘要: http://hi.baidu.com/freedomcxc/item/49fa8729a84865cba4275ae51. 在ultraedit的官网http://www.ultraedit.com/downloads/extras.html#wordfiles上面查 找相应的wordfiles,可以ctrl+f搜索,然后点右键另存为,这是一个.uew文件(里面主要是些正则表达式)。接着打开ultraedit 的安装目录,如果是XP系统的话,默认在C:\ProgramFiles\IDMComputerSolutions \UltraEdit;如果是win7系统的话应该在C:\Users\Ad 阅读全文

posted @ 2012-12-29 11:14 androidme 阅读(3065) 评论(0) 推荐(0) 编辑

2012年12月21日

Linux查看系统信息命令

摘要: # uname -a # 查看内核/操作系统/CPU信息# cat /proc/version # 查看内核# cat /etc/issue # 查看操作系统版本# head -n 1 /etc/issue # 查看操作系统版本# cat /proc/cpuinfo # 查看CPU信息# hostname # 查看计算机名# lspci -tv # 列出所有PCI设备# lsusb -tv # 列出所有USB设备# lsmod # 列出加载的内核模块# env # 查看环境变量资源# free -m # 查看内存使用量和交换区使用量# df -h # 查看各分区使用情况# du -sh < 阅读全文

posted @ 2012-12-21 13:34 androidme 阅读(282) 评论(1) 推荐(0) 编辑

2012年12月20日

printf使用%s直接输出string类型,Program received signal SIGILL, Illegal instruction .

摘要: http://blog.csdn.net/siling4/article/details/6691343printf使用%s直接输出string类型,编译有警告,运行会报Program received signal SIGILL, Illegal instruction。而且,运行时报错行,会是printf的上一行,致使查找起来可能非常耗时:上一行怎么看怎么没有错误。附相关材料:用printf输出string类型数据总结#include <stdio.h>#include <string.h>using namespace std;int main(){ string 阅读全文

posted @ 2012-12-20 15:25 androidme 阅读(1142) 评论(0) 推荐(0) 编辑

boost>shared_ptr

摘要: 由于前辈们在开发事广泛使用了boost的shared_ptr因此我打算自己了解一些这个shared_ptr。shared_ptr应该就是一种智能指针,这一概念在C++primer当中有提到过。或者称“引用计数指针”boost shared_ptr的教程内容网上有不少,其中比较详细的要算《boost库导论》了。shared_ptr头文件: "boost/shared_ptr.hpp"shared_ptr 可以从一个裸指针、另一个shared_ptr、一个std::auto_ptr、或者一个boost::weak_ptr构造。还可以传递第二个参数给shared_ptr的构造函数 阅读全文

posted @ 2012-12-20 15:17 androidme 阅读(423) 评论(0) 推荐(0) 编辑

cppreference.com

摘要: http://zh.cppreference.com/w/ 阅读全文

posted @ 2012-12-20 15:13 androidme 阅读(157) 评论(0) 推荐(0) 编辑

2012年11月28日

vnc

摘要: http://www.tightvnc.com/http://www.realvnc.com/1. Download VNC Viewhttp://www.realvnc.com/2. Install VNC Serversudo apt-get install vnc4server修改VNC Password# vncpasswd启动VNC server# vncserver通过客户端连接地址后面加:1如果启动了多个vnc显示,可以通过以下命令关闭指定显示号的vnc服务# vncserver -kill :1 (":1"为指定的显示号) vncserver -geomet 阅读全文

posted @ 2012-11-28 18:51 androidme 阅读(345) 评论(0) 推荐(0) 编辑

git rebase与merge的区别

摘要: http://gitbook.liuhui998.com/4_2.htmlrebase假设你现在基于远程分支"origin",创建一个叫"mywork"的分支。$ git checkout -b mywork origin现在我们在这个分支做一些修改,然后生成两个提交(commit).$ vi file.txt$ git commit$ vi otherfile.txt$ git commit...但是与此同时,有些人也在"origin"分支上做了一些修改并且做了提交了. 这就意味着"origin"和"m 阅读全文

posted @ 2012-11-28 15:21 androidme 阅读(661) 评论(0) 推荐(0) 编辑

squashing commits with rebase

摘要: http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html squashing commits with rebase committed 10 Feb 2009The rebase command has some awesome options available in its --interactive (or -i) mode, and one of the most widely used is the ability to squash commits. What this does is t 阅读全文

posted @ 2012-11-28 09:39 androidme 阅读(334) 评论(0) 推荐(0) 编辑

git ready

摘要: http://gitready.com/Pro Git中文版http://progit.org/book/zh/ Git Community Book 中文版http://gitbook.liuhui998.com/index.html 阅读全文

posted @ 2012-11-28 09:34 androidme 阅读(81) 评论(0) 推荐(0) 编辑

2012年11月27日

tcpdump命令格式及使用

摘要: tcpdump采用命令行方式,它的命令格式为:tcpdump [ -adeflnNOpqStvx ] [ -c 数量 ] [ -F 文件名 ][ -i 网络接口 ] [ -r 文件名] [ -s snaplen ][ -T 类型 ] [ -w 文件名 ] [表达式 ]tcpdump的选项介绍-a 将网络地址和广播地址转帖变成名字;-d 将匹配信息包的代码以人们能够理解的汇编格式给出;-dd 将匹配信息包的代码以c语言程序段的格式给出;-ddd 将匹配信息包的代码以十进制的形式给出;-e 在输出行打印出数据链路层的头部信息;-f 将外部的Internet地址以... 阅读全文

posted @ 2012-11-27 15:06 androidme 阅读(700) 评论(0) 推荐(0) 编辑

Wireshark抓包工具使用教程以及常用抓包规则

摘要: Wireshark是一个非常好用的抓包工具,当我们遇到一些和网络相关的问题时,可以通过这个工具进行分析,不过要说明的是,这只是一个工具,用法是非常灵活的,所以今天讲述的内容可能无法直接帮你解决问题,但是只要你有解决问题的思路,学习用这个软件就非常有用了。Wireshark官方下载地址:http://www.wireshark.org/download.html如果记不住,可以在百度中输入Wir就可以看到百度智能匹配的关键词了,选择第一个地址进去下载即可。简单介绍下这个软件的一些常用按钮,因为本人也是接触这个软件不久,所以就简单的说下最常用的按钮好了,打开软件后,下面红框中的按钮从左到右依次是: 阅读全文

posted @ 2012-11-27 14:00 androidme 阅读(296) 评论(1) 推荐(0) 编辑

2012年11月26日

How to avoid StepInto unnecessary code area?

摘要: http://www.cppblog.com/clane/archive/2010/03/21/110206.htmlhttp://www.cnblogs.com/taoxu0903/archive/2007/12/28/1018081.htmlVC 单步调试(StepInto)的一个小技巧 相对于Java之类的语言,缺少库一直是C++最为诟病的一个部分。STL、Boost等库的出现,在一定程度上弥补了这些缺憾。但这些库带来便利性的同时,也在调试代码时带来相当的不便。 举个例子,看下面一段代码: structFooObj{charlower(charc){c|=0x20;returnc;}}; 阅读全文

posted @ 2012-11-26 18:14 androidme 阅读(216) 评论(0) 推荐(0) 编辑

2012年11月24日

Search and Navigation Tips/Tricks with Visual Studio

摘要: http://weblogs.asp.net/scottgu/archive/2010/08/24/search-and-navigation-tips-tricks-with-visual-studio.aspxSearch and Navigation Tips/Tricks with Visual StudioThis is the twenty-seventh in a series of blog posts I’m doing on the VS 2010 and .NET 4 release.Today’s blog post continues on from the Debu 阅读全文

posted @ 2012-11-24 15:48 androidme 阅读(237) 评论(0) 推荐(0) 编辑

Debugging Tips with Visual Studio 2010

摘要: http://weblogs.asp.net/scottgu/archive/2010/08/18/debugging-tips-with-visual-studio-2010.aspxDebugging Tips with Visual Studio 2010This is the twenty-sixth in a series of blog posts I’m doing on the VS 2010 and .NET 4 release.Today’s blog post covers some useful debugging tips that you can use with 阅读全文

posted @ 2012-11-24 15:48 androidme 阅读(273) 评论(0) 推荐(0) 编辑

VS tricks

摘要: http://scottcate.com/category/vstricks/http://weblogs.asp.net/scottgu/archive/2009/08/25/vs-2010-and-net-4-series.aspxhttp://msdn.microsoft.com/en-us/vstudio/gg132842 阅读全文

posted @ 2012-11-24 15:18 androidme 阅读(128) 评论(0) 推荐(0) 编辑

Searching and Navigating Code in VS 2010 (VS 2010 and .NET 4.0 Series)

摘要: http://weblogs.asp.net/scottgu/archive/2009/10/21/searching-and-navigating-code-in-vs-2010-vs-2010-and-net-4-0-series.aspxSearching and Navigating Code in VS 2010 (VS 2010 and .NET 4.0 Series)This is the ninth in a series of blog posts I’m doing on the upcoming VS 2010 and .NET 4 release. In today’s 阅读全文

posted @ 2012-11-24 15:15 androidme 阅读(225) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页

导航