`
leonzhx
  • 浏览: 798797 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表

ZZ Git tutorial

    博客分类:
  • Git
  常通俗易懂的傻瓜教程 http://www.ralfebert.de/tutorials/git/   Installation Git on Windows Git for Windows is provided as installer package by the msysgit project. Download the latest package starting with "Git-" , not a "msysgit-..." package (the latter are supposed to be u ...
A very good git tutorial: http://progit.org/book/   A very good git tutorial.     The author SCOTT CHACON is the author of the Git Internals Peepcode PDF in addition to maintaining the Git home page (git-scm.com ) and the Git Community Book (book.git-scm.com ).

ZZ Git Magic

    博客分类:
  • Git
English Version : http://www-cs-students.stanford.edu/~blynn/gitmagic/index.html   中文版: http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/zh_cn/     网上流行的Git 教程,个人觉得不太适合初学者
今天是CSM培训的第二天,看得出大家经过一天的培训今天稍许有些疲惫。。。   1. 首先,吕老师回顾了一下昨天的讲课内容,并对大家提出的问题进行了一定的解答。有一个问题吕老师说在今天讲课之后会提到,就是SCRUM中并未提及绩效管理,采用scrum后绩效管理应该如何进行。     后来到课程的最后吕老师提到,有一本书曾经说过,考评并不能带来任何效益,但我们现实中却无法避免考评。他作为SCRUM团队的Mgr,他是这样做的:     a. 由于SCRUM团队应该是自管理,自问责,不区分角色的,所以团队整体的表现应该占50%     b. 30%来自团队成员,PO, SM的评价     c. ...
今天参加了吕毅老师的Scrum Master 培训的课程。吕老师是国内第一个Scrum Certified Trainer, 果然有大家风范,讲课相当生动,presentation skill 相当 sophisticated。虽然自己实践SCRUM已三年左右,期间也从事过SCRUM Master的工作但依然觉得受益颇深。现就讲课内容作一回顾:   1. 先对两天的课程作了大致的Agenda介绍   2. 就大家对SCRUM的熟练程度进行了一个自我管理的排队,熟悉的排前面,然后交叉分组,保证每组都有对SCRUM不同熟悉程度的队员。   3. 小组成员自我介绍,并提出对SCRUM的最大 ...
每天在来回公司的地铁上阅读这本电子书,给我印象最深的是   1. Stay Hungry, Stay Foolish   2. 有时候人们会担心自己将会失去某些东西。记住自己将要死去,这是我所知 道的避免这个念头的最好办法。你已经了无牵挂,没有理由不去追随你的心。
1.   Ruby is a genuine object-oriented language. Everything you manipulate is an object, and the results of those manipulations are themselves objects. 2.  Every object has a unique object identifier (abbreviated as object ID). 3.   puts is a standard Ruby ...
    Unicode was invented to overcome the limitations of traditional character encoding schemes. Before Unicode, there were many different standards: ASCII in the United States, ISO 8859-1 for Western European languages, KOI-8 for Russian, GB18030 and BIG-5 for Chinese, and so on. This causes two pr ...
1. Interactive Ruby—is the tool of choice for executing Ruby interactively. irb is a Ruby shell, complete with command-line history, line-editing capabilities, and job control. Exit an irb session by typing exit or by using the end-of-file character on your operating system (normally Ctrl+ ...
lilo.conf-lilo的配置文件。 描述 本文件,缺省位置为etc/lilo.conf,由引导装入程序的安装程序 LILO 读取。 其表现可能如下: boot=/dev/hda delay=40 compact vga=normal root=/dev/hda1 read-only image=/zImage-2.5.99 label=try image=/zImage-1.0.9 label=1.0.9 image=/tamu/vmlinuz label=tamu root=/dev/hdba vga=ask other=/dev/hda3 label=dos table=/dev/ ...
我们首先应该知道电脑的基本情况。电脑,就是一堆金属,半导体和塑料制品的总合,如果通上电源,就可以启动,但是你什么都不能做,因为电脑只是一堆硬件,如果你不是拿来卖废铁,它即笨重又刺眼(如果你的电脑是一堆白色外壳的话)。可是为什么电脑那么的吸引我们?因为有了操作系统 和应用 软件 。 操作系统 是一种特殊的软件,用来让计算机 硬件和软件协同工作,并且处理我们敲打键盘和移动鼠标这些动作。常见的操作系统有Windows ,它有很多版本;MAC OS,苹果电脑上就用它;UNIX,很多大型机都使用稳定的UNIX;Linux,就是我们今天的主角,一种功能强大,运行稳定,性能优异的公开源代码的操 ...
请问以下程序的输出是: NonEnumClass.java   public class NonEnumClass { private static NonEnumClass s_instance = new NonEnumClass(); private int b; private NonEnumClass() { b = 3; System.out.print( EnumClass.A ); } public static NonEnumClass getInstance(){ return s_instance; } publ ...
请问以下程序的输出是:   NonEnumClass.java:   public class NonEnumClass { private static NonEnumClass s_instance = new NonEnumClass(); private int b; private NonEnumClass() { b = 3; System.out.print( EnumClass.A ); } public static NonEnumClass getInstance(){ return s_instance; } p ...
请问如下代码的输出是:   NonEnumClass.java:   public class NonEnumClass { private static NonEnumClass s_instance = new NonEnumClass(); private int b; private NonEnumClass() { b = 3; System.out.print( EnumClass.A ); } public static NonEnumClass getInstance(){ return s_instance; } p ...
Ctrl+1 快速修复(最经典的快捷键,就不用多说了) Ctrl+D: 删除当前行  Ctrl+Alt+↓ 复制当前行到下一行(复制增加) Ctrl+Alt+↑ 复制当前行到上一行(复制增加) Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了) Alt+ ...
Global site tag (gtag.js) - Google Analytics