I found useful document in which Mattias Skari visualized a set of kanban boards from operations, development and sales to trigger ideas. It helped to create our own board which is used in my team for scrumming.
Those boards you can find here.
Wednesday, March 28, 2012
Tuesday, March 27, 2012
Let's Scrum
Book Scrum and XP from the Trenches helped as to start Scumming. This book includes practical tips and tricks for most Scrum and XP practices. It can be downloaded for free from InfoQ website.
Saturday, December 24, 2011
The most common commands used in Vim
Movement commands
Editing commands
Search commands
File editing commands
Folding commands
Other commands
Command | Description |
---|---|
h | move left |
j | move down |
k | move up |
l | move right |
ctrl + b | page up |
ctrl + f | page down |
$ | move to end of the line |
0 | move to beginning of the line |
^ | move to the first non-blank character of the line |
G | jump to end of the file |
gg | jump to beginning of the file |
10G | got to line |
w | move foward to the word |
b | move backward to the beginnig of a word |
} | jump foward one paragraph |
{ | jump backward one paragraph |
Editing commands
Command | Description |
---|---|
d | cut |
y | copy |
p | paste |
dd | delete line |
yy | copy line |
u | undo |
red | redo |
~ | upper or lower case |
i | start insert mode at cursor |
I | insert at the beginnig of the line |
a | append after cursor |
A | append the end of the line |
ea | append the end of the word |
Search commands
Command | Description |
---|---|
/text | search forward in the document for text |
n | move foward to the search result |
N | move backward to the search result |
File editing commands
Command | Description |
---|---|
w | write to file |
e | open file |
pwd | show current directory |
cd | switch Vim to directory |
:browse e | open dialog |
:q | close |
:q! | close and drop changes |
Command | Description |
---|---|
zR | open all |
zM | close all |
zo | open |
zc | close |
Command | Description |
---|---|
:set list | display whitespaces |
:set nolist | displays normaly |
:copen | opens error window |
:cclose | closes error window |
:set expandtab | to insert space characters whenever the tab key is pressed |
:retab | to change all the existing tab characters to match the current tab settings |
:TlistToggle | opens the taglist window |
Tuesday, October 11, 2011
Scrum
Scrum is an agile approach to software development. Scrum doesn't provides complete, detailed descriptions of how everything is to be done on the project, much is left up to the software development team. This is done because the team will know best how to solve the problem they are presented.
Scrum relies on a self-organizing, cross-functional team. The scrum team is self-organizing in that there is no overall team leader who decides which person will do which task or how a problem will be solved. Those are issues that are decided by the team as a whole. The team is cross-functional so that everyone necessary to take a feature from idea to implementation is involved.
These agile development teams are supported by two specific individuals: a scrum master and a product owner.
Scrum projects make progress in a series of sprints, which are timeboxed iterations no more than a month long.
To read more about Scrum visit this site.
Scrum relies on a self-organizing, cross-functional team. The scrum team is self-organizing in that there is no overall team leader who decides which person will do which task or how a problem will be solved. Those are issues that are decided by the team as a whole. The team is cross-functional so that everyone necessary to take a feature from idea to implementation is involved.
These agile development teams are supported by two specific individuals: a scrum master and a product owner.
Scrum projects make progress in a series of sprints, which are timeboxed iterations no more than a month long.
To read more about Scrum visit this site.
Snippets in Vim
A snippet is a piece of often-typed text that you can insert into your document using a trigger word followed by a <Tab>. To have this functionality in my Vim I use snipMate plugin.
For a quick introduction, see this screencast:
For a quick introduction, see this screencast:
Monday, October 10, 2011
Subscribe to:
Posts (Atom)