A Django site.
September 1, 2010
» My GSOMT – Google Summer of Mentor Training

Over the summer I’ve learned a lot participating in GSOC. Now that the program is over, I’m finally ready to start being a mentor.

Here are a couple of things that I learned:

1. Get involved early – provide unlimited feedback on proposals

Get on IRC as much as possible, especially early on. Get to know the students. Tell the students that email you to come on IRC. Start teaching them about the domain, about the product, about the technology stack. Treat every student like they are already in the program. Indeed, a student’s willingness to socialize can be an indicator of integration with the community.

Customize the proposal template – make it your own. Add what you need – UI Mockups, requirements, evaluation framework, project plan. Try doing all your requirements analysis with the students during the application phase. Have students send you their proposal a week early and use it as a tool to teach …  tell them where more detail is needed.

It was surprising how many students just submitted a boiler plate application. I rejected these immediately. To be shortlisted the application had to include at least a paragraph about the specific project (even if it was regurgitated from the project description).

2. Set aside time every day for the project

Technology, time zones, language, school, and work schedules made status meetings difficult early in the summer.

At the midterm evaluation point, we started checking in daily on irc Monday-Saturday. During the 1/2 hour of daily check-in my student had complete access to me. It was a time that I could make the project the focus of my attention. I believe that this communicated to the student that people are interested in the project … that the work is important. When I made it a priority the student responded in the same way.

Obviously, this is not everything I learned. I grew a great deal during my participation but some of it was personal growth. I feel far more prepared now to be a mentor than I was at the onset of the program. Perhaps I will be invited to participate again next year.

August 20, 2010

Xiaohu Fan
Xiaohu Fan
Dawang's Blog is about »
» Final Evaluation Passed~~

Cheers~~


» Happy Moments...


Couple of minutes ago I received the mail from the Google Open Source Programs Team announcing the final results of Google Summer of Code 2010. I am so happy that I got through the final evaluations :-)

Simply it was a lifetime experience and opened me new paths towards achieving many new goals... My special thanks to my mentors Sy Haas and Dr.Paul Biondich for their immense support and guidance throughout the summer.. All developers of OpenMRS were very much motivating and inspiring me towards contributing to open source... Thank you very much everyone... I would like to thank all my teachers and friends for their support in every way...

Just wanted to share my happy moments...
I will be writing more about my GSoC experience soon...

Thank you every one...

August 16, 2010
» Last Summer of Code Update: Remote Form Entry conversion to use RDT

Just finished the last week of GSOC officially.  I have included the extra 3 days between Friday and the final gsoc date (16th) in this update and hence it has been a long week! I can’t belive the time has gone past so quickly.  I have learned a lot over the last 12 weeks and had fun doing so.  I would like to thank my mentor Ben Wolfe for his support and to the OpenMRS community for adopting myself and fellow students.  I would also like to thank Google for providing this opportunity.  It has been a great summer!

Things don’t end here though.  I will still be posting here with updates on the progress of my OpenMRS related work as well as any other development projects I might feel the need to add.

Here is the lowdown of the week past:

Monday – Further refactorings that led me to hitting what felt like a brick wall. Had to refactor back. (See Tuesday).

Tuesday – After renaming methods in RDT module last week to comply with openmrs standards for dao method names (from putXXX to saveXXX) I discovered a bug in openmrs core. After getting feedback from the dev list I created a ticket about this problem here:  http://tickets.openmrs.org/browse/TRUNK-1661

Wednesday – Laid down the ground work to being able to integrate Remote Form Entry module with Remote Data Transfer. After a lengthy discussion with Ben Wolfe about the intricacies involving mapping RFE locations to RDT serverIds I am not in a better position to proceed. The solution involves adding an extra column to RDT’s Server table. I created a new branch of RFE and have began integrating (configuration, listener’s, etc), and also amended RDT appropriately. It seemed to me to be a little late in the day to begin such a hefty job but I could think of anything else to do that would take me right up to the GSOC pencils down date (16th). The RFE integration was marked as “extra credit” on my GSOC expectations but nevertheless would be great to finish by the 16th, but if it doesn’t happen by then I will work on it until it is finished outside of GSOC. I have already finished the other “extra credit” item which involved allowing binary files to be transferred (this was originally described as dropping a file into a folder in the operating system for transfer, but we agreed to change this to be implemented through the web UI).

Thursday – Attended the OpenMRS dev call. Installed Apache Maven: OpenMRS is moving to a Maven organised build. Discussed more details with Ben about RFE integration. It is necessary for RFE to be able to add/modify existing RDT queue items so when the nightly return data from RFE is generated it can override any previously queued data if it hasn’t been sent yet.

Friday – Continued to work on integration. Implemented new API functions in RDT followed by providing a means for RFE to add items straight to the queue with correct destination taken from Openmrs Location to RDT ServerId mapping. Made RFE generate return data automatically send this data through RDT (i.e. put it in the queue for sending later).

Saturday – Implemented lazy loading of binary data property of receieved and queue items. This was necessary to improve performance when dealing with large files. Hibernate supports this feature through byecode instrumentation using the javassist api. Implemented support for transfers from central to remote in RFE via RDT.

Sunday – Implemented support for transfers from remote to central in RFE via RDT.

Monday – Added finishing touches to the RFE Integration with RDT branch. Wrote documentation on the conversion which is available here:  http://openmrs.org/wiki/Talk:Remote_FormEntry_User_Guide

Outcome - Took on a lot this week in trying to convert RFE to use RDT.  I ended up with a working version which I am happy but nevertheless will probably need modifcation in the future after feedback from implementators/testers has been given.  Remote Data Transfer is in a fit state now and I feel it is ready for an initially alpha release.  All in all I have completed all of the tasks listed on my GSOC work plan including those marked as “Extra credit”.


Shazin Sadakath
Shazin Sadakath
Not Just Another Blog is about »
» Deleting All .svn directories from a SVN Local Copy

I have been puzzled for sometime on how to recursively delete all .svn directories from a local copy of a particular SVN checkout. I was searching through the net and found a solution but sadly it didn't work so I had to make some minor modifications to make it work. Now all you have to have to do is copy and paste the following code in a notepad and save it as "delete_svn.reg" and double click it and allow it to create a registry. Then you can right click on the root directory of any SVN local copy checkout and select "Delete SVN Folders" from the context menu to delete .svn metadata directories.


Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]
@="Delete SVN Folders"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command]
@="cmd.exe /c \"TITLE Removing SVN Folders in %1 && COLOR 9A && FOR /r \"%1\" %%f IN (.svn _svn) DO RD /s /q \"%%f\" \""

August 15, 2010
» Week 12

This week
This is my last status post in the course of GSoC. But the spirit goes on.. let’s see what I’ve done during this week:

  • I implemented a very basic concept viewer
  • I wrote some more queries to support more search criteria
  • I added more Javadoc to the source code
  • I wrote a manual for the search as mentioned in the previous post
  • I added autocomplete functionality to advanced and basic search

I had no problems this week, because it is semester break and I had plenty of time to research solutions to problems.

Next week
As said above GSoC 2010 has come to an end. It was a very great opportunity which I’ll never forget.
But this is not the end for my project, I will continue working on it and improve it until it is a really great module.

But now it’s time for me to relax, see you soon! I will surely write another post about my experiences at GSoC and OpenMRS!



Shazin Sadakath
Shazin Sadakath
Not Just Another Blog is about »
» Nearing End, New Beginning..

Officially Google Summer of Code comes to an end this week, but the lessons learnt from it will continue forever.

It was a very informative learning experience so far. I learnt how to work in a team and get the work done. I am very happy and honored have got selected to Google Summer of Code. All praises should go to God and God Alone. I have given my best during Google Summer of Code. I had to do Google Summer of Code as well as My Academic Project simultaneously. I managed to get them both done while switching on and off between the two.

Even though the summer is over I am hoping to continue the contributions whenever I can to the opensource community. I will be doing my final year from September 2010 and hoping to graduate in 2011 if God Wish th.

I would like to thank my Mentor Burke Mamlin and my backup Mentor Ben Wolfe for all the help throughout this summer. Really was lucky to have you guys as mentors.

» Reaching the Final Evaluations of Google Summer of Code 2010



Last week was the final week of Google Summer of Code 2010 and I spent it in writing module documentation, documenting the code and completing few enhancements. I did some refactoring to the code - introducing a new class FlowsheetPanel to have the user interface generation code (earlier it was inside the onModuleLoad() of the Flowsheet EntryPoint class). This idea was suggested by my mentor Sy, to make the code re-usable. The user interface generation code was put inside the onRender() of the FlowsheetPanel class, which is a subclass of LayoutContainer. In the Flowsheet EntryPoint class, new instance of FlowsheetPanel was simply created and added to the root panel.

Searching for observations based on ConceptName was handled using the default filtering options in the Grid widget earlier; since that way is only known by the users who read the documentation or the users who explore the module, I added the search box on the on top of the observations grid, visible to all users. The image below show's the new search box:



Module documentation for the Flowsheet module was created in the wiki page located at : http://openmrs.org/wiki/Flowsheet_Module. This wiki page contains the details of the module, especially the features of the Flowsheet module and how to use them. Also I have provided link for other resources related to the module.

I documented the source code using class level and method level comments and checked in the code to the svn repository. Last Thursday I attended the weekly Developer Call and listened to the final presentations of the Group-3 GSoC students. There were some good presentation on GSoC projects.

According to the GSoC 2010 timeline, next week is the deadline for the final evaluations. I had an awesome 12-weeks, working on the Flowsheet module and with the OpenMRS community. It is a life time opportunity for me to work with the developers all around the world. As I have reached all the goals we planned for the summer, I am so glad and feel very much satisfied. I hope everything will be fine with the final evaluations... The great motivation I got while working with the OpenMRS community during this summer opened me new paths towards contributing to FOSS. I am sure that this is a good starting point for me to reach many targets in contributing to the Open Source communities... I will continue my contribution to OpenMRS in the feature and will try to contribute to some other open source projects as well...

Eagerly waiting for the final evaluations next week...

August 13, 2010
» Module Manual

Hey,
I wrote a short manual for the advanced concept search in the enhanced concept search module. It can be found here: Manual


August 11, 2010

Firzhan Naqash
Firzhan Naqash
My path to GSOC is about »
» After 12 weeks

For the past 12 weeks I have been working on the Concept Proposla Module with Glen and Andy.
Throughout this period I have worked on implemeting 3 main functional tasks up to now. Those are

1) Creating a concept proposal webpage
2) View list of concept proposals
3) Transfer existing proposals from core to the new concept proposal module

Here I have attached the dowload url of the .omod file and I have to work bit on the UI senario.

Through out this summer I had really great experince inturms of learning. I learned lot and I was really excited to work with Glen where he allocated his valuable time during workdays to share with me. Andy was quite fast on responsing to my emails too.

Overall this Gsoc was a great experince to me and I was quite happy. Because this Gsoc introduced me to the OpenMRS where I learned lot from it rich framework. I am quite excited to work on it and I have decide to continue my contribution to OpenMRS after the Gsoc too.