11 2012 档案

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 阅读(382) 评论(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 阅读(672) 评论(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 阅读(357) 评论(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 阅读(89) 评论(0) 推荐(0)

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 阅读(762) 评论(0) 推荐(0)

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

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

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 阅读(227) 评论(0) 推荐(0)

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 阅读(260) 评论(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 阅读(288) 评论(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 阅读(137) 评论(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 阅读(255) 评论(0) 推荐(0)

ICU - International Components for Unicode
摘要:http://site.icu-project.org/ 阅读全文

posted @ 2012-11-24 14:55 androidme 阅读(123) 评论(0) 推荐(0)

GYP (Generate Your Projects)
摘要:http://code.google.com/p/gyp/ 阅读全文

posted @ 2012-11-22 11:06 androidme 阅读(224) 评论(0) 推荐(0)

SQLite
摘要:http://www.sqlite.org/ 阅读全文

posted @ 2012-11-21 21:34 androidme 阅读(198) 评论(0) 推荐(0)

zeromq
摘要:http://www.zeromq.org/ 阅读全文

posted @ 2012-11-21 20:22 androidme 阅读(166) 评论(0) 推荐(0)

libcurl
摘要:http://curl.haxx.se/libcurl/ 阅读全文

posted @ 2012-11-21 20:19 androidme 阅读(144) 评论(0) 推荐(0)

tinyxml
摘要:http://www.grinninglizard.com/tinyxml/ 阅读全文

posted @ 2012-11-21 20:19 androidme 阅读(124) 评论(0) 推荐(0)

txmpp
摘要:txmpphttp://silas.sewell.org/blog/2010/06/16/txmpp-a-bsd-licensed-cpp-xmpp-library/https://github.com/silas/txmpplibjinglehttp://code.google.com/p/libjingle/https://developers.google.com/talk/libjingle/Signalslibjingle uses the sigslot library to facilitate communication between objects. sigslot is 阅读全文

posted @ 2012-11-21 20:05 androidme 阅读(354) 评论(0) 推荐(0)

抓包工具
摘要:www.tcpdump.org/www.winpcap.org/www.wireshark.org/ 阅读全文

posted @ 2012-11-21 19:36 androidme 阅读(161) 评论(0) 推荐(0)

Visual Studio extensions
摘要:http://visualstudiogallery.msdn.microsoft.com/VS中,通过Tools->Extension Manager进行管理。 阅读全文

posted @ 2012-11-18 21:08 androidme 阅读(167) 评论(0) 推荐(0)

Chromium resources
摘要:http://code.google.com/p/chromium/w/listhttp://www.chromium.org/developersSource codehttp://src.chromium.org/viewvc/chrome/http://src.chromium.org/svn/trunk/src/http://code.google.com/p/chromium/source/searchhttp://git.chromium.org/gitweb/http://chromium-browser-source.commondatastorage.googleapis.c 阅读全文

posted @ 2012-11-18 20:57 androidme 阅读(187) 评论(0) 推荐(0)

Google Test (gtest)
摘要:http://code.google.com/p/googletest/命令行参数http://code.google.com/p/googletest/wiki/AdvancedGuide#Running_Test_Programs:_Advanced_Options 阅读全文

posted @ 2012-11-18 13:53 androidme 阅读(289) 评论(0) 推荐(0)

Lighttpd
摘要:http://www.lighttpd.net/http://redmine.lighttpd.net/projects/lighttpd/wiki/DevelWin32http://en.wlmp-project.net/http://code.google.com/p/wlmp-project/http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Lighttpd-Version2Source codehttp://download.lighttpd.net/lighttpd/Compile on Windows MSVShttp:/ 阅读全文

posted @ 2012-11-10 18:56 androidme 阅读(229) 评论(0) 推荐(0)

导航