自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

jinrongbo的专栏

低头做事,抬头看路

  • 博客(26)
  • 资源 (2)
  • 收藏
  • 关注

转载 Macbook安装Mac OS X, Windows7, Ubuntu三系统

http://leadfast.blog.163.com/blog/static/168557227201111411481130/http://forum.ubuntu.org.cn/viewtopic.php?f=77&t=261921 由于Macbook用的是EFI系统和GUID-MBR联合分区表,普通PC上的基于Grub的多系统共存方案都不适用。根据本人反复试验,重装几

2013-02-20 19:08:59 868

原创 查找某个branch里面所有修改的文件

$$$$ ct lstype -long -kind brtype | grep branch_namebranch type "branch_name"$$$$ cleartool find . -type -f -branch "brtype(branch_name)" -print

2012-02-28 16:43:26 443

转载 rules for tracking down the cause of a problem

From: Progmatic shelf-practical programming an introduction to computer sicence in python,  12.4 DebuggingHere are some rules for tracking down the cause of a problem: 1. Make sure you knoww

2012-02-27 10:27:19 381

转载 [转] 食物相关的英文单词

水果类(fruits):西红柿 tomato 菠萝 pineapple 西瓜watermelon 香蕉banana 柚子 shaddock (pomelo) 橙子orange 苹果apple   柠檬lemon 樱桃 cherry 桃子peach 梨 pear 枣Chinese date (去核枣 pitted date ) 椰子coconut  草莓 strawberry 树莓 ra

2012-02-11 23:04:57 2566

原创 [C++0x] Boost Thread in Vector and use lamda as thread function

// =====================================================================================// Filename: main.cpp// // Description: thread learn from http://www.corensic.com/Learn/Resources/

2011-12-30 10:53:57 1348

转载 装修资料

电视背景墙+雕花板http://cd.qq.com/a/20101206/000233.htm#p=10浅蓝色 http://cd.qq.com/a/20101206/000233.htm#p=10

2011-12-21 13:23:13 234

转载 Performance tips

TIPSRemember the 80/20 rule80% of a program spends its time in 20% of the codePrefer x += y, to x = x + yUse pre-incrementation (++i), instead of post-incrementation (i++)This typi

2011-12-09 15:56:44 244

转载 rvalue references and Move semantics

【转】http://stackoverflow.com/questions/3106110/can-someone-please-explain-move-semantics-to-me【another】  Move semantics and rvalue references in C++11http://www.cprogramming.com/c++11/rvalue-refe

2011-12-06 14:33:08 503

转载 Enforcing Correct Mutex Usage with Synchronized Values

原文来自Dr.Dobb's Enforcing Correct Mutex Usage with Synchronized ValuesBy Anthony Williams, May 26, 2010Post a CommentEnsuring that the correct mutex is locked when accessing data Anthony W

2011-12-05 22:39:52 465

转载 动态规划算法

原文链接: 动态规划算法  http://www.cppblog.com/Fox/archive/2008/05/07/Dynamic_programming.html以前在学习非数值算法的时候,曾经了解过动态规划算法(Dynamic programming),以下是对Wikipedia上动态规划的翻译,图也是Wikipedia上的,仓促行文,不到之处,请方家指正。

2011-12-03 20:55:57 760

转载 使用 Strace 和 GDB 调试工具的乐趣

http://www.ibm.com/developerworks/cn/aix/library/au-unix-strace.htmlhttp://www.ibm.com/developerworks/aix/library/au-unix-strace.html?S_TACT=105AGX52&S_CMP=cn-a-aixhttp://cutebunny.blog.51cto.co

2011-12-02 22:47:09 815

原创 有用的网址收集

DesignPattern: http://sourcemaking.com/design_patterns【C++】C++ Concurrency in Action http://ishare.iask.sina.com.cn/f/12014979.html?retcode=0

2011-12-01 12:52:27 231

转载 平衡二叉树

原文链接: http://www.cppblog.com/bellgrade/archive/2011/10/19/98402.html参考文章: http://en.wikipedia.org/wiki/AVL_tree平衡二叉树形态匀称的二叉树称为平衡二叉树 (Balanced binary tree) ,其严格定义是:  一棵空树是平衡二叉树;若 T

2011-11-30 22:02:09 465

原创 install gcc 4.7 on openSUSE

ftp://gcc.gnu.org/pub/gcc/infrastructure/下载并依次安装gmp mpfr,  mpc下载并安装gcc 4.7configure: error: cannot compute suffix of object files: cannot compileIndeed, adding the MPFR and GPM

2011-11-29 15:34:51 1538

转载 《OOD启思录》:61条面向对象设计的经验原则

原文出处: 《OOD启思录》:61条面向对象设计的经验原则    摘自《OOD启思录》 Arthur J.Riel【著】; 鲍志云【译】    “你不必严格遵守这些原则,违背它们也不会被处以宗教刑罚。但你应当把这些原则看成警铃,若违背了其中的一条,那么警铃就会响起。” ----- Arthur J.Riel(1) 所有数据都应该隐藏在所在的类的内部。

2011-11-27 21:49:08 857

转载 Memory Layout for Multiple and Virtual Inheritance

[From] CodeProject, By Al-Farooque Shubho | 2 Aug 2010Warning. This article is rather technical and assumes agood knowledge of C++ and some assembly language.In this article we expla

2011-11-27 11:54:23 370

转载 How I explained OOD to my wife

[from] CodeProject, By Al-Farooque Shubho | 2 Aug 2010 IntroductionMy wife Farhana wants to resume her career as a software developer (she started her career as a software developer, but c

2011-11-27 11:43:40 374

转载 How I explained Design Patterns to my wife: Part 1

[from] CodeProject, By Al-Farooque Shubho | 9 Aug 2010IntroductionMe and my wife had some interesting conversations onObject Oriented Design principles. After publishing the conversation o

2011-11-27 11:32:36 482

转载 SteveY对Amazon和Google平台的长篇大论

原文链接 http://coolshell.cn/articles/5701.html相关文章: http://tech.sina.com.cn/i/2011-11-17/15546337096.shtmlSteveY对Amazon和Google平台的长篇大论2011年11月3日陈皓发表评论阅读评论23,971 次点击    Steve

2011-11-25 12:49:06 375

转载 OpenSUSE 11.4 + SVN + Apache2

【原文】 http://www.voidseer.com/DeveloperBlogs/MichaelWojcik/?page_id=33 创建svn用户组?$> sudo /usr/sbin/groupadd -r svn$> sudo /usr/sbin/useradd -r -g svn -d /srv/svn -s /bin/false svn创建s

2011-11-25 09:51:18 544

转载 [分享] VMware8 安装Lion正式版 原版镜像 直接DMG安装 非整合版 不用任何引导 完美解决iCloud

衷心感谢这位兄弟的分享,【[分享] VMware8 安装Lion正式版 原版镜像 直接DMG安装 非整合版 不用任何引导 完美解决iCloud】http://bbs.pcbeta.com/viewthread-940191-1-2.html本文参考了该帖子中的方法,实际操作过程中解决了安装过程中当出现Shell提示符(startup.nsh)的问题。首先说下我的电脑配置

2011-11-16 22:54:38 4608 2

转载 开源协议分类

2011-11-14 20:37:51 292

转载 prototype of signal

Unix Network Programming, 5.8 POSIX Signal Handlingvoid (*signal (int signo, void (*func) (int))) (int);==>typedef void Sigfunc(int);Sigfunc *signal (int signo, Sigfunc *func);signa

2011-11-12 22:27:03 234

转载 使用GDB调试LINUX软件

转自 http://www.ibm.com/developerworks/cn/linux/sdk/gdb/Linux 的大部分特色源自于 shell 的 GNU 调试器,也称作 gdb。gdb 可以让您查看程序的内部结构、打印变量值、设置断点,以及单步调试源代码。它是功能极其强大的工具,适用于修复程序代码中的问题。在本文中,David Seager 将尝试说明 gdb 有多棒,多实用

2011-11-12 12:04:50 328

原创 XP中安装VMware Workstation以及VMware Player

1.  安装VMware Workstation   VMware Workstation, 收费软件,20多$一个月呢,用不起。。。 【问】安装时空白屏幕怎么办? 【答】命令行下,“Extract"后再安装:   Step1: D:\TDDOWNLOAD\vmware\VMware-workstation-full-7.1.4-385536.e

2011-11-11 22:13:41 2014

原创 【草稿】ActiveMQ and ActiveMQ-CPP

本文目的: 1. 初步了解ActiveMQ;安装配置ActiveMQ;使用ActiveMQ-CPP客户端与服务器端通信。2. 基础知识:ActiveMQ: http://activemq.apache.org/ActiveMQ-CPP: http://activemq.apache.org/cms/index.html百度百科: http://baike.bai

2011-11-11 22:09:03 436

UNIX.Network.Programming.Volume.1.3rd.Ed

好东西,备份,学习,分享 Addison.Wesley.UNIX.Network.Programming.Volume.1.3rd.Ed.The.Sockets.Networking.API.eBook-LiB.chm

2011-11-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除