<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4964592698120610187</id><updated>2012-02-16T15:31:21.652+05:30</updated><category term='Spring'/><category term='J2EE'/><title type='text'>My Tech Notes</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-6528309436155162593</id><published>2011-09-19T15:58:00.000+05:30</published><updated>2011-09-19T15:58:32.100+05:30</updated><title type='text'>Issue in Sonar when Analyse with Ant Task</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;br /&gt;Had you install the Build Stability Plugin in Sonar and try to run the sonar anlayze( http://docs.codehaus.org/display/SONAR/Analyse+with+Ant+Task) You  may Come Across a NullPointerExceptio as below.&lt;br /&gt;&lt;br /&gt;build-sonar.xml:56: java.lang.NullPointerException&lt;br /&gt;&lt;br /&gt;at org.sonar.plugins.buildstability.BuildStabilitySensor.getCiUrl(BuildStabilitySensor.java:60)&lt;br /&gt;&lt;br /&gt;at org.sonar.plugins.buildstability.BuildStabilitySensor.shouldExecuteOnProject(BuildStabilitySensor.java:51)&lt;br /&gt;&lt;br /&gt;at org.sonar.api.batch.BatchExtensionDictionnary.shouldKeep(BatchExtensionDictionnary.java:105)&lt;br /&gt;&lt;br /&gt;at org.sonar.api.batch.BatchExtensionDictionnary.getFilteredExtensions(BatchExtensionDictionnary.java:95)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To Overcome This you need to define below ant property &lt;br /&gt;&lt;br /&gt;&lt;style type="text/css"&gt;p { margin-bottom: 0.08in; }&lt;/style&gt;  &lt;br /&gt;&lt;div style="margin-bottom: 0in;"&gt; &lt;span style="font-family: Liberation Serif,serif;"&gt;&lt;b&gt;&amp;lt;property name="sonar.build-stability.url"  value="&amp;lt;ANY String  need not to be a Valid URL"/&amp;gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;property name="sonar.build-stability.url" value="&amp;lt;ANY String  need not to be a Valid URL"&gt; &lt;br /&gt;&lt;br /&gt;I got the same issue last week and was unable to resolve the issue So I jus down load the Code for above plugin and look at it. &lt;br /&gt;This is the actual root cause for this. To integrate sonar with CI Agent using   sonar.build-stability.url or  CiManagement of pom of the project. Pom is present only if this is a maven project. So if you don't specify the above property then it will try to load  CiManagement using POM since ant projets does not have POM this will throw NullPointerException.&lt;br /&gt;CiManagement ci = project.getPom().getCiManagement();&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public class BuildStabilitySensor implements Sensor {&lt;br /&gt;..........&lt;/property&gt;&lt;br /&gt;..........&lt;br /&gt;..........&lt;property name="sonar.build-stability.url" value="&amp;lt;ANY String  need not to be a Valid URL"&gt;&lt;br /&gt;&lt;br /&gt;public static final String CI_URL_PROPERTY = "sonar.build-stability.url";&lt;br /&gt;&lt;br /&gt;&lt;/property&gt;..........&lt;br /&gt;..........&lt;br /&gt;&lt;br /&gt;&lt;property name="sonar.build-stability.url" value="&amp;lt;ANY String  need not to be a Valid URL"&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;protected String getCiUrl(Project project) {&lt;br /&gt;&lt;br /&gt;String url = project.getConfiguration().getString(CI_URL_PROPERTY);&lt;br /&gt;if (StringUtils.isNotEmpty(url)) {&lt;br /&gt;return url;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;CiManagement ci = project.getPom().getCiManagement();&lt;br /&gt;if (ci != null &amp;amp;&amp;amp; StringUtils.isNotEmpty(ci.getSystem()) &amp;amp;&amp;amp; StringUtils.isNotEmpty(ci.getUrl())) {&lt;br /&gt;return ci.getSystem() + ":" + ci.getUrl();&lt;br /&gt;}&lt;br /&gt;return null;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/property&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-6528309436155162593?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/6528309436155162593/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=6528309436155162593' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/6528309436155162593'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/6528309436155162593'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2011/09/issue-in-sonar-when-analyse-with-ant.html' title='Issue in Sonar when Analyse with Ant Task'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-809312149439128719</id><published>2011-06-03T07:55:00.000+05:30</published><updated>2011-06-03T07:55:09.299+05:30</updated><title type='text'>Automate Log testing</title><content type='html'>We have automated java test cases for our project. but we never successfully automate the logging test cases because of the file size. &lt;br /&gt;These logging are done using log4j and each api request has a trace-id Manually when we want to trouble shoot an issue we grep this trace-id and follow the log entries.&lt;br /&gt;So what we do is rather than reading the file and get a FileInputStream we run the grep command and get the input stream of that process and do subsequent evaluation.&lt;br /&gt;&lt;br /&gt;Process process = Runtime.getRuntime().exec(String.format("grep -m 1000 %s",traceid));&lt;br /&gt;// get the input Stream of executed process&lt;br /&gt;BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));&lt;br /&gt;&lt;br /&gt;Here we need to remember to specify a maximum line for grep command using -m flag otherwise this cannot be done. we can use a large value for -m to make sure we are reading all the lines.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-809312149439128719?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/809312149439128719/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=809312149439128719' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/809312149439128719'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/809312149439128719'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2011/06/automate-log-testing.html' title='Automate Log testing'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-8125536369200740409</id><published>2011-03-28T22:35:00.001+05:30</published><updated>2011-03-28T22:35:36.897+05:30</updated><title type='text'>Install and Configure Apache Tomacat 5 to run with java 1.4 SDK in Linux</title><content type='html'>download apache full version from&lt;br /&gt;http://archive.apache.org/dist/tomcat/tomcat-5/v5.5.17/bin/apache-tomcat-5.5.17.tar.gz&lt;br /&gt;and 1.4 compatible files from&lt;br /&gt;http://archive.apache.org/dist/tomcat/tomcat-5/v5.5.17/bin/apache-tomcat-5.5.17-compat.tar.gz&lt;br /&gt;and copy it to the folder you want to install the tomcat server (I refer to this as APACHE_FOLDER here after.&lt;br /&gt;&lt;br /&gt;1. Open the console&lt;br /&gt;2. Go APACHE_FOLDER (cd )&lt;br /&gt;3. Unzip archives&lt;br /&gt;gunzip *&lt;br /&gt;tar -xf apache-tomcat-5.5.17.tar&lt;br /&gt;tar -xf apache-tomcat-5.5.17-compat.tar&lt;br /&gt;4.set CATALINA_HOME and TOMCAT_HOME environment variables as follow&lt;br /&gt;i. open the .bash_profile in home and insert following two lines&lt;br /&gt;export $CATALINA_HOME=/apache-tomcat-5.5.17&lt;br /&gt;export $TOMCAT_HOME=/apache-tomcat-5.5.17&lt;br /&gt;&lt;br /&gt;To edit .bash_profile you can use vi editor. Type vi ~/.bash_profile in console. It will open .bash_profile file.&lt;br /&gt;Then type i (this will go to Edit mode)&lt;br /&gt;Then type above two lines in the folder then press Esc button, ( This will go to command mode )&lt;br /&gt;Then type :wq and press enter ( this will save our modifications )&lt;br /&gt;5.To set this variables either you have to type source ~/.bash_profile in every command prompt you open or restart the machine to make the effect permanently&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-8125536369200740409?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/8125536369200740409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=8125536369200740409' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/8125536369200740409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/8125536369200740409'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2011/03/install-and-configure-apache-tomacat-5.html' title='Install and Configure Apache Tomacat 5 to run with java 1.4 SDK in Linux'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-1038533028436383423</id><published>2010-10-22T20:13:00.001+05:30</published><updated>2010-10-22T20:13:46.674+05:30</updated><title type='text'>“Using RESTful Web Services and Cloud Computing for Next-Generation Mobile Applications” by Jason H. Christensen.</title><content type='html'>Today I listen to a video presentation on “Using RESTful Web Services and Cloud Computing for Next-Generation Mobile Applications” by Jason H. Christensen. He presents the evolution of the mobile devices over the last decade. Then He talks about Features of mobile devices f the smart phone that can be used for mobile computing; TCP application connection, Multi modal Radio Connectivity (like WI-FI, bluethooth, cellular connection) Sensors for ascertaining context  and Programming Language Interface . And limitation of the mobile devices limited input, Minimal Storage, Highly constrained Processing Environment, and Poor quality of multitasking.  Using Cloud computing how we can overcome these difficulties .  Finally  He presents some Guidelines for Using REST to implement mobile applications  shows an example and some other aspects of Mobile cloud computing like Security.&lt;br /&gt;This is the link for the presentation http://www.infoq.com/presentations/Mobile-Cloud-REST&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-1038533028436383423?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/1038533028436383423/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=1038533028436383423' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/1038533028436383423'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/1038533028436383423'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2010/10/using-restful-web-services-and-cloud.html' title='“Using RESTful Web Services and Cloud Computing for Next-Generation Mobile Applications” by Jason H. Christensen.'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-4570059252838927293</id><published>2010-10-22T13:33:00.001+05:30</published><updated>2010-10-22T13:34:20.217+05:30</updated><title type='text'>The W3C QA Tools for Web Pages</title><content type='html'>For Last couple of years I have been working on Web services and web sites. I started working on these projects with the impression that it is really easy to develop web pages since those do not involve complex logic. But with the experience I realized that developing UI is also an important and difficult task as much as developing the business logic. Some UI layout does not work correctly and these layouts differ from browser to browser. Still those are hard to detect through Unit testing and very few tools are developed to help identifying UI Layout. I have come across the situation where I made changes to css but web page does not display as indented and then it was a nightmare for me to identify the error with the CSS. If I fixed it to work on IE 6 it tweaks the layout in Firefox and etc... And fixing these takes as much time as the business-logic.&lt;br /&gt;We may able to develop a web site with all the functional requirements and address other non-functional requirements like performance, security, fail over and robustness. But Users who are not IT professional get the first impression of the project by looking at the UI (web pages). UI development plays a very important role in Project. &lt;br /&gt; Firebug was an interesting tool - plugging for Firefox - that helps me to troubleshoot UI layout bugs. But it still it does not validate the CSS file. Today   I come across this site http://www.w3.org/QA/Tools/ maintain by W3C group and they have developed four interesting tool to validate bug on web pages.&lt;br /&gt;    *  Unicorn  - W3C's Unified Validator&lt;br /&gt;    * The MarkUp Validator - check Web documents in formats like HTML and XHTML, SVG or MathML.&lt;br /&gt;    * The Link Checker - Checks anchors (hyperlinks) in a HTML/XHTML document; Useful to find broken links, etc.&lt;br /&gt;    * The CSS Validator - validates CSS stylesheets or documents using CSS stylesheets.&lt;br /&gt;&lt;br /&gt;I think all these are quite interesting and I should try these out in my next project to ensure the Quality of my work.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-4570059252838927293?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/4570059252838927293/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=4570059252838927293' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/4570059252838927293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/4570059252838927293'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2010/10/w3c-qa-tools-for-web-pages.html' title='The W3C QA Tools for Web Pages'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-3105614854745370270</id><published>2010-10-02T10:04:00.001+05:30</published><updated>2010-10-02T10:07:27.099+05:30</updated><title type='text'>Google WebP - New Image Compress Format</title><content type='html'>Google has announce a new image format WebP (pronounce weppy)  to shrink the image size basically in Web Pages. This will improve the user experience on web site, reduce the bandwidth and hosting cost due to small file size. A WebP file consists of &lt;a href="http://www.webmproject.org/tools/vp8-sdk/"&gt;VP8&lt;/a&gt; image data, and a container based on &lt;a href="http://code.google.com/speed/webp/docs/riff_container.html"&gt;RIFF&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;WebP team has performed comparative study of three image format  WEbP with Jpeg 2000  and re-jpeg over a set of 1 million pages and published the results with the conclution that WebP achieves overall higher compression than either JPEG or JPEG 2000. Gains in file size minimization are particularly high for smaller images which are the most common ones found on the web.&lt;br /&gt;G&lt;br /&gt;oogle provide free open-source tool webpconv that convert  images to from webp format .The tool currently support Linux x86 (64-bit) platform  and google promise a tool for Windows as well. BMP, JPEG, PNG, WEBP can be used with this tool and user can choose the trade-off between quality and the file size by specifying the -quality parameter.&lt;br /&gt;&lt;a href="http://code.google.com/speed/webp/index.html"&gt;WeBP home page&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-3105614854745370270?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/3105614854745370270/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=3105614854745370270' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/3105614854745370270'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/3105614854745370270'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2010/10/google-webp-new-image-compress-format.html' title='Google WebP - New Image Compress Format'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-6473693373485356490</id><published>2008-06-11T11:46:00.001+05:30</published><updated>2008-06-11T11:49:28.101+05:30</updated><title type='text'>Kill a task/process running in the system using Java</title><content type='html'>We can use following code line to kill a process currently running in the system&lt;br /&gt;Runtime.getRuntime().exec("taskkill /IM " + &lt;process_name&gt; + " /F");&lt;br /&gt;   E.g. to kill internet exlporer      &lt;br /&gt;   Runtime.getRuntime().exec("taskkill /IM " + IEXEPLORER.EXE + " /F");&lt;/process_name&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-6473693373485356490?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/6473693373485356490/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=6473693373485356490' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/6473693373485356490'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/6473693373485356490'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2008/06/kill-taskprocess-running-in-system.html' title='Kill a task/process running in the system using Java'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-4641868246324869585</id><published>2008-06-11T11:35:00.002+05:30</published><updated>2008-11-15T14:44:48.695+05:30</updated><title type='text'>Get List of tasks\Processes running in the system using java</title><content type='html'>to get tasks currently running in the system we execute following command in command prompt&lt;br /&gt;  tasklist.exe /nh&lt;br /&gt;&lt;br /&gt;this will gives a output like this in command line&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F4N-n7707WM/SE9tqNkSEQI/AAAAAAAAADI/wOH-Xji2OWY/s1600-h/cons.bmp"&gt;&lt;img style="cursor: pointer;" src="http://4.bp.blogspot.com/_F4N-n7707WM/SE9tqNkSEQI/AAAAAAAAADI/wOH-Xji2OWY/s320/cons.bmp" alt="" id="BLOGGER_PHOTO_ID_5210503865854726402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We can execute any console command using exec method in Runtime.following lines show how to get names of the task(s)/process(es) currenlt running on the system&lt;br /&gt;&lt;br /&gt;Process process = Runtime.getRuntime().exec("tasklist.exe /nh");&lt;br /&gt;// get the input Stream of executed process&lt;br /&gt;BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));&lt;br /&gt;// Read line by line&lt;br /&gt;  while ((commandline = input.readLine()) != null) {&lt;br /&gt;      if (!line.trim().equals("")) {&lt;br /&gt;          // Keep only the process name&lt;br /&gt;          processes.add(line.substring(0, line.indexOf(" ")));&lt;br /&gt;      }&lt;br /&gt;  }&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-4641868246324869585?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/4641868246324869585/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=4641868246324869585' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/4641868246324869585'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/4641868246324869585'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2008/06/get-list-of-tasksprocesses-running-in.html' title='Get List of tasks\Processes running in the system using java'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F4N-n7707WM/SE9tqNkSEQI/AAAAAAAAADI/wOH-Xji2OWY/s72-c/cons.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-7642792222217519963</id><published>2008-06-09T11:44:00.001+05:30</published><updated>2008-06-09T11:45:29.541+05:30</updated><title type='text'>A Changing Life: She does it all.</title><content type='html'>&lt;a href="http://travellingspouse.blogspot.com/2008/06/she-does-it-all.html#links"&gt;This is a very touching story about Children in Africa. Every body should read this.&lt;span style="color: rgb(255, 102, 102);"&gt;A Changing Life: She does it all.&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-7642792222217519963?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/7642792222217519963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=7642792222217519963' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/7642792222217519963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/7642792222217519963'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2008/06/changing-life-she-does-it-all.html' title='A Changing Life: She does it all.'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-361226327450249456</id><published>2008-05-13T21:07:00.000+05:30</published><updated>2008-05-13T21:08:12.064+05:30</updated><title type='text'>Bean Wiring  in Spring</title><content type='html'>In traditional programming ,creating associations between objects lead to code that is difficult to reuse and unit-test, and these objects are usually highly coupled to each-other making them hard to reuse and unit test, and they are doing more work than they should making them less cohesive.&lt;br /&gt;In spring components are not responsible for managing associations with other components. Instead they are given references to collaborating components by the container. &lt;strong&gt;The act of creating these associations between applications is called wiring.&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-361226327450249456?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/361226327450249456/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=361226327450249456' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/361226327450249456'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/361226327450249456'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2008/05/bean-wiring-in-spring.html' title='Bean Wiring  in Spring'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-8854398046390614120</id><published>2008-04-22T14:12:00.002+05:30</published><updated>2008-11-15T14:44:48.997+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='J2EE'/><category scheme='http://www.blogger.com/atom/ns#' term='Spring'/><title type='text'>Spring Modules</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_F4N-n7707WM/SA2llOP4UOI/AAAAAAAAABM/Cegqu8lDtBE/s1600-h/sring_modules.bmp"&gt;&lt;img id="BLOGGER_PHOTO_ID_5191988004326494434" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_F4N-n7707WM/SA2llOP4UOI/AAAAAAAAABM/Cegqu8lDtBE/s320/sring_modules.bmp" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p align="center"&gt;&lt;a href="http://4.bp.blogspot.com/_F4N-n7707WM/SA2lQOP4UNI/AAAAAAAAABE/AXAiA25pcgg/s1600-h/sring_modules.bmp"&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-8854398046390614120?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/8854398046390614120/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=8854398046390614120' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/8854398046390614120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/8854398046390614120'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2008/04/spring-modules.html' title='Spring Modules'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F4N-n7707WM/SA2llOP4UOI/AAAAAAAAABM/Cegqu8lDtBE/s72-c/sring_modules.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-5044556868732426902</id><published>2008-03-31T19:30:00.003+05:30</published><updated>2008-04-01T16:11:13.956+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='J2EE'/><category scheme='http://www.blogger.com/atom/ns#' term='Spring'/><title type='text'>Spring Framework</title><content type='html'>&lt;span style="font-size:100%;"&gt;Spring is an open-source framework, created by Rod Johnson.It was created toaddress the complexity of enterprise application development. Spring makes itpossible to use plain-vanilla JavaBeans to achieve things that were previously onlypossible with EJBs.&lt;br /&gt;Benifits of Spring Framework■ Lightweight—Spring is lightweight in terms of both size and overhead.&lt;br /&gt;■ &lt;strong&gt;Inversion of control&lt;/strong&gt;—Spring promotes loose coupling through a techniqueknown as inversion of control (IoC). When IoC is applied, objects are passivelygiven their dependencies instead of creating or looking for dependentobjects for themselves.&lt;br /&gt;■ &lt;strong&gt;Aspect-oriented&lt;/strong&gt;—Spring comes with rich support for aspect-oriented programmingthat enables cohesive development by separating applicationbusiness logic from system services&lt;br /&gt;■ &lt;strong&gt;Container&lt;/strong&gt;—Spring is a container in the sense that it contains and managesthe life cycle and configuration of application objects. You can configurehow your each of your beans should be created—either create one singleinstance of your bean or produce a new instance every time one is neededbased on a configurable prototype—and how they should be associatedwith each other.&lt;br /&gt;■ Framework—Spring makes it possible to configure and compose complexapplications from simpler components. In Spring, application objects arecomposed declaratively, typically in an XML file. Spring also providesmuch infrastructure functionality (transaction management, persistenceframework integration, etc.), leaving the development of application logic to you.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Following Link shows a how to build a simple Spring Application&lt;br /&gt;&lt;a href="http://www.springframework.org/docs/MVC-step-by-step/Spring-MVC-step-by-step-Part-1.html"&gt;http://www.springframework.org/docs/MVC-step-by-step/Spring-MVC-step-by-step-Part-1.html&lt;/a&gt;&lt;br /&gt;you need to download simpleLog from following link to do the above sample &lt;a href="https://simple-log.dev.java.net/downloads.html"&gt;https://simple-log.dev.java.net/downloads.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-5044556868732426902?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/5044556868732426902/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=5044556868732426902' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/5044556868732426902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/5044556868732426902'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2008/03/spring-framework.html' title='Spring Framework'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-3901263467858953387</id><published>2007-06-15T12:50:00.000+05:30</published><updated>2007-06-15T12:58:49.436+05:30</updated><title type='text'>Location Based Services</title><content type='html'>&lt;p class="MsoNormal"&gt;LOCATION BASED SERVICES (LBS) are emerging technology which uses information technology geographic information systems (GIS) and mobile technologies as a combination&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;An enormous market can be seen in this area including the market for tracking, route-finding and guiding &lt;span style=""&gt; &lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;In contrast to Global positioning Systems (GPS) which simply provide the location of a user LBS provides &lt;span style="font-family: Garamond;"&gt;application oriented location services. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-family: Garamond;"&gt;E.g. shortest path from current location to destination&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-family: Garamond;"&gt;GIS has been mostly used for institutional purposes. Now the rapidly evolving wireless technology make it possible to apply &lt;span style=""&gt; &lt;/span&gt;personal productivity such as finding friends, finding current traffic conditions etc…&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-3901263467858953387?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/3901263467858953387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=3901263467858953387' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/3901263467858953387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/3901263467858953387'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2007/06/location-based-services.html' title='Location Based Services'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-1045738257646545410</id><published>2007-06-14T09:43:00.000+05:30</published><updated>2008-11-15T14:44:49.324+05:30</updated><title type='text'>Pablo Neruda (July 12, 1904 – September 23, 1973),</title><content type='html'>&lt;p class="MsoNormal"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F4N-n7707WM/RnDCFb64fiI/AAAAAAAAAAk/592rkE4QSgc/s1600-h/neruda.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_F4N-n7707WM/RnDCFb64fiI/AAAAAAAAAAk/592rkE4QSgc/s320/neruda.jpg" alt="" id="BLOGGER_PHOTO_ID_5075770178696412706" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;Pablo Neruda whose real name is Neftalí Ricardo Reyes Basoalto is a &lt;st1:place st="on"&gt;&lt;st1:country-region st="on"&gt;Chile&lt;/st1:country-region&gt;&lt;/st1:place&gt; writer and a communist politician. He spent his childhood and youth in &lt;st1:city st="on"&gt;Temuco&lt;/st1:city&gt;, in &lt;st1:place st="on"&gt;&lt;st1:country-region st="on"&gt;Chile&lt;/st1:country-region&gt;&lt;/st1:place&gt;.&lt;/p&gt;At the early age of thirteen he began to contribute some articles to the daily "La Mañana". In 1920, he became a contributor to the literary journal "Selva Austral" under the pen name of Pablo Neruda.        &lt;p class="MsoNormal"&gt;Between 1927 and 1935, the government put him in charge of a number of honorary consulships, which took him to &lt;st1:country-region st="on"&gt;Burma&lt;/st1:country-region&gt;, &lt;st1:country-region st="on"&gt;Ceylon&lt;/st1:country-region&gt;, &lt;st1:city st="on"&gt;Java&lt;/st1:city&gt;, &lt;st1:country-region st="on"&gt;Singapore&lt;/st1:country-region&gt;, &lt;st1:city st="on"&gt;Buenos  Aires&lt;/st1:city&gt;, &lt;st1:city st="on"&gt;&lt;st1:place st="on"&gt;Barcelona&lt;/st1:place&gt;&lt;/st1:city&gt;.In 1939, Neruda was appointed consul for the Spanish emigration&lt;br /&gt;In 1943, Neruda returned to &lt;st1:country-region st="on"&gt;&lt;st1:place st="on"&gt;Chile&lt;/st1:place&gt;&lt;/st1:country-region&gt;, and in 1945 he was elected senator of the Republic, also joining the Communist Party of Chile. Due to his protests against President Gonzalez Videla's repressive policy against striking miners in 1947, he lived underground until he managed to escape from his country 1949. he spent next three years in exile traveling in Europe India and Soviet Russia.&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;He was awarded Nobel prize in 1971.Neruda died of heart failure on the evening of September 23, 1973, at the age of 69 soon after Pinochet came into Power &lt;/p&gt;  &lt;p class="MsoNormal"&gt;For more information:&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;a href="http://en.wikipedia.org/wiki/Pablo_Neruda"&gt;http://en.wikipedia.org/wiki/Pablo_Neruda&lt;/a&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;to read his poems goto&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;a href="http://www.poemhunter.com/pablo-neruda/"&gt;http://&lt;span style="font-size:-1;"&gt;&lt;span class="a"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:-1;"&gt;&lt;a&gt;www.poemhunter.com/&lt;b&gt;pablo-neruda&lt;/b&gt;/&lt;/a&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-1045738257646545410?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/1045738257646545410/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=1045738257646545410' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/1045738257646545410'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/1045738257646545410'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2007/06/pablo-neruda-july-12-1904-september-23.html' title='Pablo Neruda (July 12, 1904 – September 23, 1973),'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F4N-n7707WM/RnDCFb64fiI/AAAAAAAAAAk/592rkE4QSgc/s72-c/neruda.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-5386137021313630534</id><published>2007-06-12T16:16:00.000+05:30</published><updated>2008-11-15T14:44:49.488+05:30</updated><title type='text'>John Stuart Mill (20 May 1806 – 8 May 1873)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F4N-n7707WM/Rm56uL64fhI/AAAAAAAAAAc/g4tWSGfnHHU/s1600-h/200px-John-stuart-mill-sized.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://1.bp.blogspot.com/_F4N-n7707WM/Rm56uL64fhI/AAAAAAAAAAc/g4tWSGfnHHU/s320/200px-John-stuart-mill-sized.jpg" alt="" id="BLOGGER_PHOTO_ID_5075128763985460754" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;J. S. Mill was a British philosopher, political economist and Member of Parliament, was an influential liberal thinker of the 19th century.&lt;br /&gt;he was an independent Member of Parliament, representing the City and Westminster constituency from 1865 to 1868.&lt;br /&gt;During his time as an MP, Mill advocated easing the burdens on Ireland, and became the first person in Parliament to call for women to be given the right to vote.&lt;br /&gt;Mill's moral philosophy was a modified version of the utilitarian theory he had learned from his father and his god father Jeremy Bentham.&lt;br /&gt;Mill became a strong advocate of women's rights and such political and social reforms as proportional representation, labor unions, and farm cooperatives. In 1869, he argued for the right of women to vote.  He was godfather to Bertrand Russell.&lt;br /&gt;In 1851 he married Harriet Taylor after 21 years of intimate Friendship&lt;br /&gt;&lt;br /&gt;Taylor died in 1858 after developing severe lung congestion, only seven years into her marriage to Mill.&lt;br /&gt;&lt;br /&gt;He died in Avignon, France in 1873, and is buried alongside his wife.&lt;br /&gt;&lt;br /&gt;Mill argued,If society really wanted to discover what is truly natural in gender relations it should establish a free market for all of the services women perform, ensuring a fair economic return for their contributions to the general welfare. Only then would their practical choices be likely to reflect their genuine interests and abilities.&lt;br /&gt;&lt;br /&gt;both of them have written an essay called "The Subjection of Women" stating an argument in favour of equality betweeen the sexes&lt;br /&gt;&lt;br /&gt;eventhough it seems as a essay on feminism it is not , it is clearly utilitarian argument .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-5386137021313630534?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/5386137021313630534/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=5386137021313630534' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/5386137021313630534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/5386137021313630534'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2007/06/john-stuart-mill-20-may-1806-8-may-1873.html' title='John Stuart Mill (20 May 1806 – 8 May 1873)'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F4N-n7707WM/Rm56uL64fhI/AAAAAAAAAAc/g4tWSGfnHHU/s72-c/200px-John-stuart-mill-sized.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-7580231638459041687</id><published>2007-06-11T12:45:00.000+05:30</published><updated>2007-06-11T13:12:42.987+05:30</updated><title type='text'>WHITE ROSE PAPERS</title><content type='html'>Almost every body in this world knows about Hitler was the  German Chancellor  from 1933 to 1945 and &lt;a href="http://en.wikipedia.org/wiki/F%C3%BChrer" title="Führer"&gt;Führer&lt;/a&gt; of Germany from 1934 until 1945. He was also the leader of the &lt;a href="http://en.wikipedia.org/wiki/National_Socialist_German_Workers_Party" title="National Socialist German Workers Party"&gt;National Socialist German Workers Party&lt;/a&gt; (&lt;i&gt;Nationalsozialistische Deutsche Arbeiterpartei&lt;/i&gt;  simply Nazi Party) and is considered the effective founder of &lt;a href="http://en.wikipedia.org/wiki/Nazism" title="Nazism"&gt;Nazism&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;But very few Know about the group "White Rose"  , the group that stood behind the first and the last spontanic revel in the days of the reich was burst in 1943.&lt;br /&gt;&lt;br /&gt;The group acted in the university of Munich and its main leaders was three anti-nazi and idealist students: &lt;span style="font-size:130%;"&gt;Hans Scholl, Christof Probst &lt;/span&gt;and &lt;span style="font-size:130%;"&gt;Alex Schmorell&lt;/span&gt;- medicine students, and &lt;span style="font-size:130%;"&gt;Sophie Scholl&lt;/span&gt;, Hans' sister that studied philosophy and biology.&lt;br /&gt;&lt;br /&gt; Not like the main resistance movement, their activities were hopeless, but they sure proved great heroism and courage among the group's members.&lt;br /&gt;&lt;br /&gt; In the summer of 1942 they wrote four leaflets, and they left them in many places. The leaflets were dropped in public telephone cabins and mailed to students and professors all over Germany. In this way, the anti-nazi ideas  was spread in universities all over the country. Some leaflets found their way to the gestapo, and the secret police started to wonder about their source. The students that carried the leaflets to different places in train just "hoped for the best". In any case, the problem was solved in an interesting way. The leaflets were given to female students, who were less checked by the gestapo.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The leaflets that was written by the group were titled as the "leaves of the white rose". They attacked the nazi regime and mentioned its crimes, from the mass extermination of jews and the murder of the Polish nobility and intellectual elite, to the dictatorship and the elimination of the personal freedom of the German people. The leaflets contained quotes from great philosophers and writers like Goethe, Nobalis, Aristotle and Law Tso, and they were written in a very high level. It was clear that they were written to intellectual public, and especially to students and professors.&lt;br /&gt;&lt;br /&gt;Why those small leaflet are so important ? in a era where no body speak about truth afraid of their lives acted blindly towards ruthless governments.&lt;br /&gt;&lt;br /&gt;These people are a great example for our lives who only think of doing a good job , having a settled family life. They pay for this activity by their lives. Even though they live for ever.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-7580231638459041687?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/7580231638459041687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=7580231638459041687' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/7580231638459041687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/7580231638459041687'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2007/06/white-rose-papers.html' title='WHITE ROSE PAPERS'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4964592698120610187.post-7625604742169776235</id><published>2007-06-08T10:11:00.001+05:30</published><updated>2008-11-15T14:44:49.665+05:30</updated><title type='text'>Rosa Luxemburg (1871-1919)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F4N-n7707WM/RmjeHb64fgI/AAAAAAAAAAU/bw7E9f8C08o/s1600-h/rosa.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://4.bp.blogspot.com/_F4N-n7707WM/RmjeHb64fgI/AAAAAAAAAAU/bw7E9f8C08o/s320/rosa.jpg" alt="" id="BLOGGER_PHOTO_ID_5073549199568043522" border="0"&gt;&lt;/a&gt;&lt;br /&gt;Rosa Luxemburg was a German revolutionary leader, journalist, and socialist theorist, who was killed in Berlin in 1919 during the German revolution. Rosa Luxemburg saw herself as a citizen of the proletariat. She lived the international life of a Socialist 'pilgrim', believing that only socialism could bring true freedom and social justice. Luxemburg was the advocate of mass action, spontaneity, and workers democracy.&lt;br /&gt;&lt;br /&gt;Reevaluation of Luxemburg's work started in Germany in the 1970s. Apart from her works regarding Marxism her theories which is considered to be a alternative to communism or Social Democracy,Luxemburg arose still interest among feminist theorist.&lt;br /&gt;&lt;br /&gt;Luxemburg herself did not participate into women's rights movement; women's liberation was for her part of the liberation from the oppression of capitalism. However, she saw that socialist emancipation is incomplete without women's emancipation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4964592698120610187-7625604742169776235?l=hari-irah.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hari-irah.blogspot.com/feeds/7625604742169776235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4964592698120610187&amp;postID=7625604742169776235' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/7625604742169776235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4964592698120610187/posts/default/7625604742169776235'/><link rel='alternate' type='text/html' href='http://hari-irah.blogspot.com/2007/06/rosa-luxemburg-1871-1919.html' title='Rosa Luxemburg (1871-1919)'/><author><name>HARI</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F4N-n7707WM/RmjeHb64fgI/AAAAAAAAAAU/bw7E9f8C08o/s72-c/rosa.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
