Nimal blogs here
17 Jul 2009
21 Apr 2009
It’s exciting to know the results of GSoC 2009 selections, where 6 from my batch got selected. The following is the list of participants from my batch. (I think I didn’t miss anyone…)
Nimantha Baranasuriya
OpenMRS – Proposal for Implementing the Audit Module (Data Integrity Module) for OpenMRS
Thilina Buddhika
The Apache Software Foundation – Improving Rampart Tests
Gihan Chamara
Sahana – SahanaOCR module
Senaka Fernando
Ptolemy Project – Integrating Ptolemy and Esper
Hiranya Jayathilaka
The Apache Software Foundation – Implementing SQL Authorization Support for Derby dblook
Nimalaprakasan Skandhakumar
Creative Commons – Creative Commons Add-in for OpenOffice.org Updates
Yes, I also got selected. Its exciting as this is the first time I’ve applied and got selected. More updates about my GSoC project activities will be posted at my GSoC2009 blog at http://projects.techt3.com/gsoc2009/.
Also there are 14 selected candidates from CSE, including the 6 from our batch and 8 from our junior batch. As a university it seems we have 18 projects selected from UoM, which includes the 14 from CSE and 2 each from Tronic and IT.
Good luck to all the participants…!!!
15 Apr 2009
Problem:
I'm using grep to search for an error and want to display the surrounding lines also as they contain related information. How to do that?
Solution:
Using grep -C <# of lines to show above and below> <search> <file>
The following prints the matched line, along with the 5 lines surrounding it.
$ grep -C 5 "search" sample_text
Also we can use grep -A or -B to display number of lines above or below the matched line.
The following prints the matched line, along with the 5 lines after it.
$ grep -A 5 "search" sample_text
The following prints the matched line, along with the 5 lines before it.
$ grep -B 5 "search" sample_text
Reference:
11 Apr 2009

Easter celebrates the resurrection of Jesus Christ. It is the most important feast in the Christian calendar.I wish you “Happy Easter”.
1 Apr 2009
Today is my second “First day at WaveNET”, yes it is, because I had another First day at WaveNET sometime back during my industrial training in 2007.
Nothing much has changed here since then, or somethings have. So the day started as just another normal day, but didn’t have anything much to do till lunch, except for a meeting with HR and HPM. I was assigned to the ——— team.
.
.
.
.
.
Feeling bored…. So end of post…
Recent Comments