<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hussain Fakhruddin, India Weblog &#187; ajax</title>
	<atom:link href="http://blog.hussulinux.com/category/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hussulinux.com</link>
	<description>Things should be simple. But not any simpler!</description>
	<lastBuildDate>Tue, 07 Sep 2010 19:04:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>html2pdf using jsp and linux</title>
		<link>http://blog.hussulinux.com/2009/01/html2pdf-using-jsp-and-linux/</link>
		<comments>http://blog.hussulinux.com/2009/01/html2pdf-using-jsp-and-linux/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 18:25:18 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.hussulinux.com/?p=88</guid>
		<description><![CDATA[Have you ever thought of downloading the current viewed page as PDF. Here&#8217;a  quick program which can read an HTML and convert it to PDF using JSP or Servlet. I am going to call an external linux command called &#8216;convert&#8217; which does all the magic for me.
All I need is a linux box with ImageMagick [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever thought of downloading the current viewed page as PDF. Here&#8217;a  quick program which can read an HTML and convert it to PDF using JSP or Servlet. I am going to call an external linux command called &#8216;convert&#8217; which does all the magic for me.</p>
<p>All I need is a linux box with ImageMagick setup along with html2ps and ghostscript. I can get this very very easily from my ubuntu&#8217;s apt-get install &#8230;</p>
<p>So here&#8217;s the small snippet which I wrote after setting up.</p>
<p style="text-align: left;"><em>try<br />
{<br />
Runtime rt = Runtime.getRuntime() ;<br />
Process p = rt.exec(&#8220;convert /usr/local/share/pdfformat1.html /usr/local/share/pdfformat.pdf&#8221;  ) ;<br />
p.waitFor();   //&lt;&#8211; This waits until the operation is over<br />
System.out.println(p.exitValue());  //&lt;&#8211; if the output is 0 it means pdf was generated successfully<br />
}<br />
catch (Exception e){<br />
e.printStackTrace();<br />
}</em></p>
<p style="text-align: left;">Now this can be quite a good replacement for iText html to pdf conversion which is quite buggy (I am a huge fan of iText, but somehow this HTML needs to be rendered properly I feel)</p>
<p style="text-align: left;">After having got the file, read the file and reply to your browser by <em>response.setContentType(&#8220;application/pdf&#8221;);</em></p>
<p style="text-align: left;">Please note, ONLY valid HTML tags are allowed. This method doesn&#8217;t support CSS. If someone knows of it, please let me know.This method works perfectly well with valid HTML syntax. So if your output pdf isn&#8217;t looking as expected, please check your HTML.</p>
<p style="text-align: left;">You can use this little utility to check your valid HTML <em>#: sudo apt-get install wdg-html-validator</em> and then run #: validate filename.html<br />
This will list out all the invalid HTML tags.</p>
<p style="text-align: left;">So for all you report building guys out there, here&#8217;s a quick tip: Just output your report as HTML &lt;offcourse with data poluated&gt; and then use this utility to generate a PDF out of it!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2009/01/html2pdf-using-jsp-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Javascript Tips</title>
		<link>http://blog.hussulinux.com/2008/09/some-javascript-tips/</link>
		<comments>http://blog.hussulinux.com/2008/09/some-javascript-tips/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 05:46:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=43</guid>
		<description><![CDATA[I have been doing a lot of JavaScript these days. Each day I learn newer things and each day I am starting to like it more and more.
I am going to compile a few queries where I broke my head.
Q) If I do window.open(&#8216;anotherPage.html&#8217;), How can I change the DOM of the parent window.  [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:85%;"><span style="font-family: verdana;">I have been doing a lot of JavaScript these days. Each day I learn newer things and each day I am starting to like it more and more.</span></p>
<p><span style="font-family: verdana;">I am going to compile a few queries where I broke my head.</span></p>
<p><span style="font-family: verdana;"><span style="font-weight: bold;">Q)</span> If I do window.open(&#8216;anotherPage.html&#8217;), How can I</span><span style="font-weight: bold; font-family: verdana;"> change the DOM of the parent window</span><span style="font-family: verdana;">.</span><br /><span style="font-family: verdana;">     This problem arrived when I was trying to add more rows to a table from another window itself.</span><br /><span style="font-family: verdana;">     Problem: Firefox allows it. But IE doesn&#8217;t allow.</span><br /><span style="font-family: verdana;">     Solution: Use cloneNode() for FF. For IE , create the row again by attachRow()</span><br /><span style="font-family: verdana;">     Now for each cell, loop through it and do insertCells() and then copy the innerHTML to it.</span><br /><span style="font-family: verdana;">     All this is done in a simple loop through the table.</span></p>
<p><span style="font-family: verdana; font-weight: bold;">Q  I have 3 frames on a page, I want to submit requests to page 2 and 3 at the same time</span><br /><span style="font-family: verdana;">     Do: document.forms[2].functionName();</span><br /><span style="font-family: verdana;">     yes, its as easy as this&#8230;</span><br /><span style="font-family: verdana;">     in your functionName(), you can add code to submit the form.submit();</span></p>
<p><span style="font-family: verdana; font-weight: bold;">Q  Recursive Ajax calls.</span><br /><span style="font-family: verdana;">     Problem: To keep refreshing content of a page through Ajax.</span><br /><span style="font-family: verdana;">     One might typically use setInterval() but what if setInterval fires while a request from your ajax is coming back?</span><br /><span style="font-family: verdana;">    Solution: Use a global variable called &#8220;lock&#8221;. Everytime you make a request set this lock, the call back function should release the lock.</span><br /><span style="font-family: verdana;">    When setInterval fires your ajax request function it should exit if its locked.</span></p>
<p><span style="font-family: verdana; font-weight: bold;">Q.  getElementById(&#8216;idname&#8217;). Don&#8217;t use it too often, Try to traverse though the DOM by your code.</span></p>
<p><span style="font-family: verdana;"><span style="font-weight: bold;">Q. Always give IDs to your form. Someday you&#8217;ll find that this is very useful.</span> You can submit a form from anywhere if you do this by getting the refrence of the form and then yourform.submit()</span></p>
<p><span style="font-family: verdana; font-weight: bold;">Q. Try to avoid excess IDs, This will occupy more browser memory interms of DOM parsing.</span><br /><span style="font-family: verdana;">     For example, If you have a table, don&#8217;t give ID to each row. instead give the id to the table and then traverse the table.</span></p>
<p><span style="font-family: verdana;"><span style="font-weight: bold;">Q. Do overuse Ajax and submit multiple requests simultaneously. </span>Browser might allow this, but your database will not. Specially when you&#8217;re doing connection pooling. In connection pooling , you have the same connection object and multiple execution of sql queries on the same object from different clients will result in failed transactions.</span></p>
<p><span style="font-family: verdana;"><span style="font-weight: bold;">Q. attaching events is a good idea , but beware, IE and FF behaves differently.</span> The API is completely different.</span></p>
<p><span style="font-family: verdana;"><span style="font-weight: bold;">Q. Always use a common Javascript Browser detection Module.</span> Make the detected browser global and then customize your scripts that way.</span></p>
<p><span style="font-family: verdana;"><span style="font-weight: bold;">Q. Often while debugging we use alert(&#8220;debug msg here..&#8221;);</span> and waste time in commenting and uncommenting it. Instead use a global variable called &#8220;debug=true&#8221;. And use if (debug) alert(&#8220;&#8221;);</span><br /><span style="font-family: verdana;">You wont have to comment or uncomment it all the time.</span></p>
<p><span style="font-family: verdana;"><span style="font-weight: bold;">Q. There are some good Javascript debuggers. Use them.</span> The simplest one is FF error console. But what about IE? Yes, now you can use FF error console to debug IE related Errors too.. Install the FF IE tab plugin and have fun.</span></p>
<p><span style="font-family: verdana;"><span style="font-weight: bold;">Q. Another great FF extension is Firebug.</span> MUST MUST have for all you JS guys&#8230;.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/09/some-javascript-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Practical DWR Guidelines</title>
		<link>http://blog.hussulinux.com/2008/07/practical-dwr-guidelines/</link>
		<comments>http://blog.hussulinux.com/2008/07/practical-dwr-guidelines/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 06:53:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[ria]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=41</guid>
		<description><![CDATA[I have written a Paper on Practical DWR (Direct Web Remoting) Guidelines.  You&#8217;ll enjoy it if you&#8217;re a J2EE guy who wants to do some Ajax.

Click here to view it (will open on GoogleDocs)
]]></description>
			<content:encoded><![CDATA[<p><span style="font-family:verdana;">I have written a Paper on Practical DWR (Direct Web Remoting) Guidelines.  You&#8217;ll enjoy it if you&#8217;re a J2EE guy who wants to do some Ajax.</p>
<p></span><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_dcS1l9icSOg/SGso53oPumI/AAAAAAAAAYc/QBbbSjXkZro/s1600-h/Preview.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 542px; height: 433px;" src="http://bp3.blogger.com/_dcS1l9icSOg/SGso53oPumI/AAAAAAAAAYc/QBbbSjXkZro/s400/Preview.jpg" alt="" id="BLOGGER_PHOTO_ID_5218309567889259106" border="0" /></a><span style="font-family:verdana;"><br /></span>
<div style="text-align: center;"><a href="https://docs.google.com/Doc?id=dcw9wf3j_8fcv2wchc"><span style="text-decoration: underline;font-family:verdana;" >Click here to view it (will open on GoogleDocs)</span></a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/07/practical-dwr-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hussu Linux: DWR : Direct Web Remoting</title>
		<link>http://blog.hussulinux.com/2008/06/hussu-linux-dwr-direct-web-remoting/</link>
		<comments>http://blog.hussulinux.com/2008/06/hussu-linux-dwr-direct-web-remoting/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 10:04:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=40</guid>
		<description><![CDATA[Hussu Linux: DWR : Direct Web Remoting
]]></description>
			<content:encoded><![CDATA[<p><a href="http://hussulinux.blogspot.com/2008/06/dwr-direct-web-remoting.html">Hussu Linux: DWR : Direct Web Remoting</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/06/hussu-linux-dwr-direct-web-remoting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DWR : Direct Web Remoting</title>
		<link>http://blog.hussulinux.com/2008/06/dwr-direct-web-remoting/</link>
		<comments>http://blog.hussulinux.com/2008/06/dwr-direct-web-remoting/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 09:57:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[ria]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=39</guid>
		<description><![CDATA[Direct Web Remoting or DWR is the future for Ajax and Java.DWR is a tool which allows you to invoke a Java Method residing on your AppServer from the browser through JavaScript.
Here&#8217;s a little introduction about it and a small tutorial which you can try out.You will also find all the necessary ingredients&#8217; links as [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: verdana;">Direct Web Remoting or DWR is the future for Ajax and Java.</span><br /><span style="font-family: verdana;">DWR is a tool which allows you to invoke a Java Method residing on your AppServer from the browser through JavaScript.</span></p>
<p><span style="font-family: verdana;">Here&#8217;s a little introduction about it and a small tutorial which you can try out.</span><br /><span style="font-family: verdana;">You will also find all the necessary ingredients&#8217; links as you move along.</span></p>
<div style="width: 425px; text-align: left;" id="__ss_467154"><object style="margin: 0px;" height="355" width="425"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=dwr2-1213427643461495-8"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=dwr2-1213427643461495-8" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="355" width="425"></embed></object>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;"><a href="http://www.slideshare.net/?src=embed"><img src="http://static.slideshare.net/swf/logo_embd.png" style="border: 0px none ; margin-bottom: -5px;" alt="SlideShare" /></a> | <a href="http://www.slideshare.net/hussulinux/direct-web-remoting-dwr?src=embed" title="View Direct Web Remoting : DWR on SlideShare">View</a> | <a href="http://www.slideshare.net/upload?src=embed">Upload your own</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/06/dwr-direct-web-remoting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barcamp Kolkata : Why Kolkata still doesn&#8217;t have a Barcamp</title>
		<link>http://blog.hussulinux.com/2008/02/barcamp-kolkata-why-kolkata-still-doesnt-have-a-barcamp/</link>
		<comments>http://blog.hussulinux.com/2008/02/barcamp-kolkata-why-kolkata-still-doesnt-have-a-barcamp/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 10:52:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[barcamp]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=35</guid>
		<description><![CDATA[Why Kolkata still doesn&#8217;t have a Barcamp
October 2007, I went to Kolkata for a conference called WebOSS &#8216;07 and I can probably make out why there&#8217;s no way Kolkata can have a barcamp in near future. I tried to carry out a Barcamp in Kolkata. My sympathies to the wonderful city where I grew up.
1. [...]]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_dcS1l9icSOg/R7lkbGyD8pI/AAAAAAAAAUo/iTu5Ty5reL8/s1600-h/victoriamem.jpg"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 174px; height: 127px;" src="http://bp2.blogger.com/_dcS1l9icSOg/R7lkbGyD8pI/AAAAAAAAAUo/iTu5Ty5reL8/s400/victoriamem.jpg" alt="" id="BLOGGER_PHOTO_ID_5168272464224187026" border="0" /></a>Why Kolkata still doesn&#8217;t have a Barcamp</p>
<p>October 2007, I went to Kolkata for a conference called WebOSS &#8216;07 and I can probably make out why there&#8217;s no way Kolkata can have a barcamp in near future. I tried to carry out a Barcamp in Kolkata. My sympathies to the wonderful city where I grew up.</p>
<p>1. What is BarCamp? A &#8216;Drinking Bar&#8217; may be&#8230;I&#8217;m not interested.<br />2. People don&#8217;t know what a WIKI is. They don&#8217;t know how to edit it despite the instructions.<br />3. No one willing to take the effort. They have all the time to sleep.<br />4. The so called &#8216;open source&#8217; community sucks big time. The so called HEAD of LUG group look out for publicity more than helping to get a job done. I am not afraid to take the name of <span style="font-weight: bold;">Krishnendu Paul</span> who promised and suddenly disappeared.<br />5. The student community is suppressed by the colleges.<br />6. The colleges are more interested in Placements rather than knowledge sharing.<br />7. College professors are trying to get some freelance projects all the time.<br />8. Big shots like IBM, TCS etc. are least bothered to even have a look.<br />9. Free T-shirts = Bring in all your friends and leave in next 1 hour.<br />10. Free food = hog as much as you want.<br />11. The IT dept of the government want to just hold on conferences and publicity stunts to make their place in the newspaper. I am again not afraid to blame the minister for not checking his Mailbox which is always full. And also to be <span style="font-weight: bold;">not</span> available to common people without a PROTOCOL!<br />11. What is sponsorship? What will I gain. How many people are going to come? This is the question which all news/publicity media ask!<br />12. Lastly, Who&#8217;s wanting to spoil their weekend!</p>
<p>Way to go Kolkata, I don&#8217;t see a Barcamp Kolkata until some revolutionary thing happen!<br />Dear City of Joy, I left you some time back and I don&#8217;t feel like returning!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/02/barcamp-kolkata-why-kolkata-still-doesnt-have-a-barcamp/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Barcamp Pune 4</title>
		<link>http://blog.hussulinux.com/2008/02/barcamp-pune-4/</link>
		<comments>http://blog.hussulinux.com/2008/02/barcamp-pune-4/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 14:21:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=34</guid>
		<description><![CDATA[&#8220;Barcamp Pune 4: Love for technology&#8221; took place today at Thoughtworks Pune.I gave a workshop on PHP &#38; Ajax along with Priyank. This time I didn&#8217;t develop any website but rather a Proxy server using PHP!We also conducted a BOF session on PHP and Ajax Security and Meta Trader the online forex platform.
Get some pics [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Barcamp Pune 4: Love for technology&#8221; took place today at Thoughtworks Pune.<br />I gave a workshop on PHP &amp; Ajax along with Priyank. This time I didn&#8217;t develop any website but rather a Proxy server using PHP!<br />We also conducted a BOF session on PHP and Ajax Security and Meta Trader the online forex platform.</p>
<p>Get some pics here:<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_dcS1l9icSOg/R7byjmyD8mI/AAAAAAAAAUM/0QvHBmJAHfE/s1600-h/barcamp3.jpg"><img style="cursor: pointer;" src="http://bp1.blogger.com/_dcS1l9icSOg/R7byjmyD8mI/AAAAAAAAAUM/0QvHBmJAHfE/s400/barcamp3.jpg" alt="" id="BLOGGER_PHOTO_ID_5167584315974087266" border="0" /></a><br />Barcamp Pune 4 Logo</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_dcS1l9icSOg/R7byjGyD8kI/AAAAAAAAAT8/nWW3tw6H9vM/s1600-h/barcamp1.jpg"><img style="cursor: pointer;" src="http://bp3.blogger.com/_dcS1l9icSOg/R7byjGyD8kI/AAAAAAAAAT8/nWW3tw6H9vM/s400/barcamp1.jpg" alt="" id="BLOGGER_PHOTO_ID_5167584307384152642" border="0" /></a><br />PHP &amp; Ajax workshop</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_dcS1l9icSOg/R7bykWyD8oI/AAAAAAAAAUc/B4wK95gXrqk/s1600-h/barcamp5.jpg"><img style="cursor: pointer;" src="http://bp0.blogger.com/_dcS1l9icSOg/R7bykWyD8oI/AAAAAAAAAUc/B4wK95gXrqk/s400/barcamp5.jpg" alt="" id="BLOGGER_PHOTO_ID_5167584328858989186" border="0" /></a><br />Barcamp schedule.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_dcS1l9icSOg/R7byjWyD8lI/AAAAAAAAAUE/CN_afmDf78A/s1600-h/barcamp2.jpg"><img style="cursor: pointer;" src="http://bp0.blogger.com/_dcS1l9icSOg/R7byjWyD8lI/AAAAAAAAAUE/CN_afmDf78A/s400/barcamp2.jpg" alt="" id="BLOGGER_PHOTO_ID_5167584311679119954" border="0" /></a><br />Preparing for workshop</p>
<p>Slides and Video to come next..</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/02/barcamp-pune-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gnunify 2008 Pics 2</title>
		<link>http://blog.hussulinux.com/2008/02/gnunify-2008-pics-2/</link>
		<comments>http://blog.hussulinux.com/2008/02/gnunify-2008-pics-2/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 14:41:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[gnunify]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=33</guid>
		<description><![CDATA[With David Axmark, Co-Founder of MySQL
With Robert Adkins, Alolita Sharma and Manish Singh
Me, Manish, BC Shekhar, Shridhar
Helping Hand?
In Atul Kahate&#8217;s Session

]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_dcS1l9icSOg/R68ULmyD8jI/AAAAAAAAATo/U14Hoxzzvmg/s1600-h/davidandme.jpg"><img style="cursor: pointer;" src="http://bp2.blogger.com/_dcS1l9icSOg/R68ULmyD8jI/AAAAAAAAATo/U14Hoxzzvmg/s400/davidandme.jpg" alt="" id="BLOGGER_PHOTO_ID_5165369487238885938" border="0" /></a><br />With David Axmark, Co-Founder of MySQL</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_dcS1l9icSOg/R68RhGyD8eI/AAAAAAAAATA/FynaPv1XJKc/s1600-h/ajaxworkshop5.jpg"><img style="cursor: pointer;" src="http://bp0.blogger.com/_dcS1l9icSOg/R68RhGyD8eI/AAAAAAAAATA/FynaPv1XJKc/s400/ajaxworkshop5.jpg" alt="" id="BLOGGER_PHOTO_ID_5165366558071189986" border="0" /></a><br />With Robert Adkins, Alolita Sharma and Manish Singh</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_dcS1l9icSOg/R68RhWyD8fI/AAAAAAAAATI/d45A6NucxFc/s1600-h/ajaxworkshop4.jpg"><img style="cursor: pointer;" src="http://bp1.blogger.com/_dcS1l9icSOg/R68RhWyD8fI/AAAAAAAAATI/d45A6NucxFc/s400/ajaxworkshop4.jpg" alt="" id="BLOGGER_PHOTO_ID_5165366562366157298" border="0" /></a><br />Me, Manish, BC Shekhar, Shridhar</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_dcS1l9icSOg/R68RhmyD8gI/AAAAAAAAATQ/alNpligNeTI/s1600-h/ajaxworkshop1.jpg"><img style="cursor: pointer;" src="http://bp2.blogger.com/_dcS1l9icSOg/R68RhmyD8gI/AAAAAAAAATQ/alNpligNeTI/s400/ajaxworkshop1.jpg" alt="" id="BLOGGER_PHOTO_ID_5165366566661124610" border="0" /></a><br />Helping Hand?</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_dcS1l9icSOg/R68RhmyD8hI/AAAAAAAAATY/fj_8mclsGu0/s1600-h/ajaxworkshop3.jpg"><img style="cursor: pointer;" src="http://bp2.blogger.com/_dcS1l9icSOg/R68RhmyD8hI/AAAAAAAAATY/fj_8mclsGu0/s400/ajaxworkshop3.jpg" alt="" id="BLOGGER_PHOTO_ID_5165366566661124626" border="0" /></a><br />In Atul Kahate&#8217;s Session</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_dcS1l9icSOg/R68Rh2yD8iI/AAAAAAAAATg/2m3T6CemC1M/s1600-h/ajaxworkshop6.jpg"><img style="cursor: pointer;" src="http://bp3.blogger.com/_dcS1l9icSOg/R68Rh2yD8iI/AAAAAAAAATg/2m3T6CemC1M/s400/ajaxworkshop6.jpg" alt="" id="BLOGGER_PHOTO_ID_5165366570956091938" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/02/gnunify-2008-pics-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gnunify 2008 Pics 1</title>
		<link>http://blog.hussulinux.com/2008/02/gnunify-2008-pics-1/</link>
		<comments>http://blog.hussulinux.com/2008/02/gnunify-2008-pics-1/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 18:55:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[gnunify]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=32</guid>
		<description><![CDATA[Rush to get inside my workshop IRush to get inside my workshop II



]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_dcS1l9icSOg/R634LWyD8cI/AAAAAAAAASw/OkOm63xz6xM/s1600-h/phpajax4.jpg"><img style="cursor: pointer;" src="http://bp3.blogger.com/_dcS1l9icSOg/R634LWyD8cI/AAAAAAAAASw/OkOm63xz6xM/s400/phpajax4.jpg" alt="" id="BLOGGER_PHOTO_ID_5165057221641630146" border="0" /></a><br />Rush to get inside my workshop I<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_dcS1l9icSOg/R634LmyD8dI/AAAAAAAAAS4/9UvlosruyP8/s1600-h/phpajax5.jpg"><img style="cursor: pointer;" src="http://bp0.blogger.com/_dcS1l9icSOg/R634LmyD8dI/AAAAAAAAAS4/9UvlosruyP8/s400/phpajax5.jpg" alt="" id="BLOGGER_PHOTO_ID_5165057225936597458" border="0" /></a><br />Rush to get inside my workshop II</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_dcS1l9icSOg/R634KWyD8ZI/AAAAAAAAASY/W8VmAgl89HE/s1600-h/phpajax1.jpg"><img style="cursor: pointer;" src="http://bp3.blogger.com/_dcS1l9icSOg/R634KWyD8ZI/AAAAAAAAASY/W8VmAgl89HE/s400/phpajax1.jpg" alt="" id="BLOGGER_PHOTO_ID_5165057204461760914" border="0" /></a></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_dcS1l9icSOg/R634KmyD8aI/AAAAAAAAASg/x7jl6eaUQk0/s1600-h/phpajax2.jpg"><img style="cursor: pointer;" src="http://bp0.blogger.com/_dcS1l9icSOg/R634KmyD8aI/AAAAAAAAASg/x7jl6eaUQk0/s400/phpajax2.jpg" alt="" id="BLOGGER_PHOTO_ID_5165057208756728226" border="0" /></a></p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_dcS1l9icSOg/R634K2yD8bI/AAAAAAAAASo/pTwRRugCuy4/s1600-h/phpajax3.jpg"><img style="cursor: pointer;" src="http://bp1.blogger.com/_dcS1l9icSOg/R634K2yD8bI/AAAAAAAAASo/pTwRRugCuy4/s400/phpajax3.jpg" alt="" id="BLOGGER_PHOTO_ID_5165057213051695538" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/02/gnunify-2008-pics-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gnunify 2008 Ajax Workshop</title>
		<link>http://blog.hussulinux.com/2008/02/gnunify-2008-ajax-workshop/</link>
		<comments>http://blog.hussulinux.com/2008/02/gnunify-2008-ajax-workshop/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 15:54:00 +0000</pubDate>
		<dc:creator>Hussain Fakhruddin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[gnunify]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://hussulinux.com/blog/?p=31</guid>
		<description><![CDATA[I attended GNUnify today took a 3 hour workshop on PHP and Ajax. The session was jam packed with people. Here are some pictures.
Gnunify 2008 Banner
With Volunteers
ScheduleWorkshop that I took
Me, conducting the workshop
Workshop scene.
More pictures to come soon..
]]></description>
			<content:encoded><![CDATA[<p>I attended GNUnify today took a 3 hour workshop on PHP and Ajax. The session was jam packed with people. Here are some pictures.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_dcS1l9icSOg/R63NjWyD8TI/AAAAAAAAARo/mSwrAzt_z90/s1600-h/DSC01210.JPG"><img style="cursor: pointer;" src="http://bp3.blogger.com/_dcS1l9icSOg/R63NjWyD8TI/AAAAAAAAARo/mSwrAzt_z90/s400/DSC01210.JPG" alt="" id="BLOGGER_PHOTO_ID_5165010354958496050" border="0" /></a><br />Gnunify 2008 Banner</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_dcS1l9icSOg/R63PImyD8UI/AAAAAAAAARw/815m62g69v8/s1600-h/DSC01212.JPG"><img style="cursor: pointer;" src="http://bp0.blogger.com/_dcS1l9icSOg/R63PImyD8UI/AAAAAAAAARw/815m62g69v8/s400/DSC01212.JPG" alt="" id="BLOGGER_PHOTO_ID_5165012094420250946" border="0" /><br /></a>With Volunteers</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_dcS1l9icSOg/R63PJWyD8VI/AAAAAAAAAR4/HAEESWtTgiA/s1600-h/DSC01214.JPG"><img style="cursor: pointer;" src="http://bp3.blogger.com/_dcS1l9icSOg/R63PJWyD8VI/AAAAAAAAAR4/HAEESWtTgiA/s400/DSC01214.JPG" alt="" id="BLOGGER_PHOTO_ID_5165012107305152850" border="0" /></a><br />Schedule<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_dcS1l9icSOg/R63PJmyD8WI/AAAAAAAAASA/LwtN5O6B-no/s1600-h/DSC01217.JPG"><img style="cursor: pointer;" src="http://bp0.blogger.com/_dcS1l9icSOg/R63PJmyD8WI/AAAAAAAAASA/LwtN5O6B-no/s400/DSC01217.JPG" alt="" id="BLOGGER_PHOTO_ID_5165012111600120162" border="0" /></a><br />Workshop that I took</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_dcS1l9icSOg/R63PKGyD8XI/AAAAAAAAASI/amERqPfdJ2Q/s1600-h/DSC01218.JPG"><img style="cursor: pointer;" src="http://bp2.blogger.com/_dcS1l9icSOg/R63PKGyD8XI/AAAAAAAAASI/amERqPfdJ2Q/s400/DSC01218.JPG" alt="" id="BLOGGER_PHOTO_ID_5165012120190054770" border="0" /></a><br />Me, conducting the workshop</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_dcS1l9icSOg/R63PKmyD8YI/AAAAAAAAASQ/QxPVzijWWCE/s1600-h/DSC01222.JPG"><img style="cursor: pointer;" src="http://bp0.blogger.com/_dcS1l9icSOg/R63PKmyD8YI/AAAAAAAAASQ/QxPVzijWWCE/s400/DSC01222.JPG" alt="" id="BLOGGER_PHOTO_ID_5165012128779989378" border="0" /></a><br />Workshop scene.</p>
<p>More pictures to come soon..</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hussulinux.com/2008/02/gnunify-2008-ajax-workshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
