I made a change in the blogger configuration to ease the later work when blogging. It is possible that older entries are not correctly formatted.

Showing posts with label tutorials. Show all posts
Showing posts with label tutorials. Show all posts

Thursday, 22 April 2010

JQuery - Plugins

JQuery is a framework designed with extensions or plugins in mind. There is a large number of plugins which can be found at the plugin page.

In this entry, I will try to select and explain some of the main useful plugins.

Saturday, 19 September 2009

Useful Git Tutorial

I found this very useful Git link: http://www-cs-students.stanford.edu/~blynn/gitmagic/. I really learnt a lot about it. Another useful link is: http://progit.org/book/. Here are a few things I learnt from these links:
  • "Snapshots, Not Differences" git does not store differences but new versions of files which changed and links to the unchanged one.
  • reordering of commits Using Git, you can commit code to your repository and then reorganize the order of your commits. This makes it much more simpler to group changes in a meaningful way.
  • branching is easy