skip to main |
skip to sidebar
RSS Feeds
Nope. nothing .. just some random thoughts come to my mind ...
Nope. nothing .. just some random thoughts come to my mind ...
1:59 PM | Thursday, May 31, 2012
Posted by harshadura
OpenMRS has been designed to have a tiered
architecture. The real strength of OpenMRS is in its robust and flexible
data model. However, not all users want to have to know this data model
inside and out. The ?API
layer allows a developer to only have to know Java objects and
read/save to them. This layer can be used in a standalone application
or, as most people use it, in a J2EE web application.
@Authorized ({ "Add Patients" }) |
ConceptService conceptService = Context.getConceptService(); Concept concept = conceptService.getConcept( 1234 ); ConceptName newConceptName = new ConceptName( "some name" , "some locale" ); concept.addName(newConceptName); conceptService.updateConcept(concept); |
<openmrs:htmlInclude file= "/scripts/jquery/jquery.min.js" /> |
10:46 AM | Sunday, May 27, 2012
Posted by harshadura
11:03 PM | Friday, May 25, 2012
Posted by harshadura
7:03 AM | Thursday, May 24, 2012
Posted by harshadura
sudo apt-get install linux-generic-pae linux-headers-generic-pae
sudo reboot now
I had the same problem, and after installing the linux-generic-pae and linux-headers-generic-pae my Ubuntu shows the whole 8GB I have available.11:42 AM | Wednesday, May 23, 2012
Posted by harshadura
Yey! I received my GSoC Welcome pack from Google!! by 18th May 2012. It was such a nice moment when I saw this bundle for the 1st time. I really love it.
Actually I wasn't at home when FedEx has arrived my home. My mom has signed for me and had accepted the bundle. Below you can see the Images of it. :)
So now as the Gsoc coding period has started already, I am rushing with those coding stuff. Lots of work remains to be done, so really busy with OpenMRS BESP_FDBK Module work these days!
Again I am really proud to be a Member of this Open Source Family, 'OpenMRS' by Writing codes and Saving Lives, for the sake of Human Lives!
See ya!
-Harsha
5:05 PM | Saturday, May 19, 2012
Posted by harshadura
================================== README - SLIIT COM SOCIAL NETWORK ================================== Basic Social Networking system using C# - ASP.NET ------------------------------------------------------- Feature Overview - TODO ------------------------------------------------------- [DONE] 01. Students should be able to get registered with the social network. [DONE] 02. They should be able to manage their own profiles. [DONE] 03. They should be able to share their posts and news on a public e-wall inside the site. [DONE] 04. They should be given privilege to manage the friend list.(add, modify and delete) [SOME] 05. Students can add students as friends but students can only follow the teachers. [NOT-] 06. Messaging and chat facility. [DONE] 07. Job bank (If there are vacancies students will be notified through the site) [DONE] 08. Event planner for the year. [DONE] 09. Students should be able to add educational applications to their profile. [DONE] 10. Login / Logout ------------------------------------------------------- Required Software ------------------- [01] Dot Net Framework 3.5/4.0 [02] MS Visual Studio 2010/Web Developer Kit [03] MS SQL Server 2010 ------------------------------------------------------- Notes. ------- [01] Configure the MDF file inside App_Data to the SQL server. ------------------------------------------------------- Regards, @harshadura
11:34 AM | Tuesday, May 15, 2012
Posted by harshadura
Reference : http://www.stardeveloper.com/articles/display.html?article=2002041001&page=3
<%@ Import Namespace="System.Data.SqlClient" %> <%@ Page Language="C#" %> <script runat="server"> protected void Page_Load(Object sender, EventArgs e) { SqlConnection con = null; SqlCommand cmd = null; try { con = new SqlConnection("server=localhost;uid=sa;" + "pwd=;database=Stardeveloper"); cmd = new SqlCommand("SELECT * FROM Names", con); con.Open(); grid.DataSource = cmd.ExecuteReader(); grid.DataBind(); } catch (Exception err) { message.Text = "<p><font color=\"red\">Err: " + err.Message + "</font></p>"; } finally { if(con != null) con.Close(); } } </script> <html> <head> <style> body { font-family:Verdana; font-size:12pt; } </style> </head> <body> <asp:datagrid id="grid" runat="server" /> <asp:label id="message" runat="server" /> </body> </html>
6:53 AM |
Posted by harshadura
Auto Format source code : Ctrl + K + D
9:41 AM | Sunday, May 13, 2012
Posted by harshadura
Creating branch > git branch <branch name>
Remove Branch >
git push origin --delete <branch name>
f you don't want to download an archive you can use GitHub Pages to render this.
gh-pages
branch (if one already exists, remove it and create a new one based off master
).http://
username
.github.com/
repo
`git clone git@github.com:username/repo.git
cd repo
git branch gh-pages# Might need to do this first: git branch -D gh-pages
git push -u origin gh-pages # Push the new branch back to github
Go to http://username.github.com/repo
Remove Branch --------------->
git push origin --delete <branch name>
harshadura@localhostLapDU:~/Desktop/Jquery-Wizard-Test$ git push origin --delete gh-pages
To git@github.com:harshadura/Jquery-Wizard-Test.git
- [deleted] gh-pages
harshadura@localhostLapDU:~/Desktop/Jquery-Wizard-Test$
harshadura@localhostLapDU:~/Desktop/Jquery-Wizard-Test$ git branch gh-pages
harshadura@localhostLapDU:~/Desktop/Jquery-Wizard-Test$ git push -u origin gh-pages
Total 0 (delta 0), reused 0 (delta 0)
To git@github.com:harshadura/Jquery-Wizard-Test.git
* [new branch] gh-pages -> gh-pages
Branch gh-pages set up to track remote branch gh-pages from origin.
harshadura@localhostLapDU:~/Desktop/Jquery-Wizard-Test$
6:45 AM | Sunday, May 6, 2012
Posted by harshadura