<?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>Burad&#039;s Blog &#187; html</title>
	<atom:link href="http://www.aburad.com/blog/tag/html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.aburad.com/blog</link>
	<description>A computer nerd who would soon be an MBA</description>
	<lastBuildDate>Thu, 28 Oct 2010 15:53:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>View contents of Zip/Jar files using firefox</title>
		<link>http://www.aburad.com/blog/2008/05/view-contents-of-zipjar-files-using-firefox.html</link>
		<comments>http://www.aburad.com/blog/2008/05/view-contents-of-zipjar-files-using-firefox.html#comments</comments>
		<pubDate>Tue, 13 May 2008 20:19:02 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/?p=231</guid>
		<description><![CDATA[With Firefox 3, you can use firefox browser to view contents of zip/jar files. For viewing contents of filename.zip type following at location bar: jar:file://&#60; full path to filename.zip &#62;!/ Example: jar:file:///home/user/Desktop/filename.zip!/ Also: jar:file:///home/user/Desktop/filename.zip!/dir/file1.js This is specially very useful when you want to see contents (.js, .css, .html files) included in firefox extension&#8217;s jar file. [...]]]></description>
			<content:encoded><![CDATA[<p>With Firefox 3, you can use firefox browser to view contents of zip/jar files.<br />
For viewing contents of filename.zip type following at location bar:</p>
<blockquote><p><strong>jar:file://&lt; full path to filename.zip &gt;!/</strong><br />
<span style="text-decoration: underline;">Example</span>:   jar:file:///home/user/Desktop/filename.zip!/<br />
<span style="text-decoration: underline;">Also:</span> jar:file:///home/user/Desktop/filename.zip!/dir/file1.js</p></blockquote>
<p>This is specially very useful when you want to see contents (.js, .css, .html files) included in firefox extension&#8217;s jar file. After it list the contents, you can easily browse through the directory, sorting files etc.</p>
<p><strong>Update: </strong><span style="text-decoration: underline;"><strong>Security problems that come with jar: protocol</strong></span><br />
While serching for pages related to jar protocol in firefox, I <a href="http://www.gnucitizen.org/blog/web-mayhem-firefoxs-jar-protocol-issues/">found an interesting article</a> at www.gnucitizen.org</p>
<blockquote><p>In simple terms, it means that any application which allows upload of JAR/ZIP files is potentially vulnerable to a persistent <a href="http://aburad.com/blog/2008/04/cross-site-scripting-xss.html">Cross-site Scripting.</a> Potential targets for this attack include applications such as web mail clients, collaboration systems, document sharing systems, almost everything that smells like Web2.0, etc, etc, etc.</p></blockquote>
<p><a href="http://www.gnucitizen.org/blog/bugs-in-the-browser-firefoxs-data-url-scheme-vulnerability">Similar security concerns</a> also arise in data: protocol in firefox. So one need to be careful to filter files you want to allow for upload. Actually, once I had similar situation with a website which allowed you to host image files, but the problem was they were not checking for file types. Thats means you are allowed to upload a php file too. So now you can do anything you want with that server (don&#8217;t ask me what I did <img src='http://www.aburad.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ). So beware of such issues.</p>
<p>Related Post:<br />
<a href="http://aburad.com/blog/2008/05/perfect-password-according-to-firefox.html">Perfect password according to firefox </a><br />
<a href="http://aburad.com/blog/2008/04/view-page-source-trick-in-firefox-flock.html">View Page Source trick in firefox/flock </a><br />
<a href="http://aburad.com/blog/2007/01/firefox-about-pages.html">Firefox about pages</a><br />
<a href="http://aburad.com/blog/2008/04/cross-site-scripting-xss.html">Cross Site Scripting</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2008/05/view-contents-of-zipjar-files-using-firefox.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Perfect Home Page</title>
		<link>http://www.aburad.com/blog/2008/04/the-perfect-home-page.html</link>
		<comments>http://www.aburad.com/blog/2008/04/the-perfect-home-page.html#comments</comments>
		<pubDate>Sat, 26 Apr 2008 12:44:30 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/?p=220</guid>
		<description><![CDATA[Through ajaxian.com, I found about this project &#8220;TPHP &#8220;. &#8220;command based way to start your web journey&#8221; An simple designed HTML page with javascripts to provide various functionality like search from google, yahoo etc and others like whois, dns lookup. It provides all these functionality with a simple command like interface. For example you can [...]]]></description>
			<content:encoded><![CDATA[<p>Through <a href="http://ajaxian.com/archives/tphp-your-home-page-can-be-a-javascript-command-line">ajaxian.com</a>, I found about this project <a href="http://code.google.com/p/tphp/">&#8220;TPHP &#8220;</a>.</p>
<blockquote><p>&#8220;command based way to start your web journey&#8221;</p></blockquote>
<p> An simple designed HTML page with javascripts to provide various functionality like search from google, yahoo etc and others like whois, dns lookup. It provides all these functionality with a simple command like interface. For example you can do :</p>
<blockquote><p>-g India                   // to do a google search for India<br />
-g India&gt;&gt;               // to take you to first result of google search<br />
-whois google.com  // to do whois query</p></blockquote>
<p style="text-align: center;"><a href="http://aburad.com/blog/wp-content/uploads/2008/04/tphppreview1.png"><img class="aligncenter size-medium wp-image-221" title="tphppreview1" src="http://aburad.com/blog/wp-content/uploads/2008/04/tphppreview1.png" alt="" width="450" height="200" /></a></p>
<p>It also provides recommendation based on previous searches.<br />
Try it..and give your feedback , would you prefer such homepage ?<br />
For more details :<a href="http://code.google.com/p/tphp/">TPHP: The Perfect Home Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2008/04/the-perfect-home-page.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating Error 404 page</title>
		<link>http://www.aburad.com/blog/2008/04/creating-error-404-page.html</link>
		<comments>http://www.aburad.com/blog/2008/04/creating-error-404-page.html#comments</comments>
		<pubDate>Wed, 16 Apr 2008 20:54:24 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Search functionality]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/2008/04/16/creating-error-404-page/</guid>
		<description><![CDATA[Helping lost visitors? Sometimes a link provided by you may end up as 404 page or viewer might have typed wrong URL that doesn&#8217;t lead correct page on your site. To help your visitors you can actually use .htaccess file (for Apache servers) to redirect all such links to a special page which will be [...]]]></description>
			<content:encoded><![CDATA[<p>Helping lost visitors? Sometimes a link provided by you may end up as 404 page or viewer might have typed wrong URL that doesn&#8217;t lead correct page on your site. To help your visitors you can actually use .htaccess file (for Apache servers) to redirect all such links to a special page which will be more useful than plain &#8220;404 File Not found&#8221; error.</p>
<p>You can add this one line to .htaccess file (create this file if it doesn&#8217;t exist)</p>
<p class="codeblock">&nbsp;</p>
<blockquote><p> ErrorDocument 404 /web404.html</p></blockquote>
<p>This will redirect all queries for files not found in that directory and sub directories to <span style="font-style: italic">web404.html</span><br />
On that page you can provide user with:</p>
<ul>
<li>Link to homepage</li>
<li>Tell them to check the URL or Go Back</li>
<li>Search functionality for your website will be very useful.</li>
</ul>
<p>So yesterday I added a <a href="http://aburad.com/endofweb.html">404 page</a> for <a href="http://aburad.com/">my website</a>: <a href="http://aburad.com/non_existent_page.html">Check it out</a></p>
<p>I have also added similar functionality for my wordpress blog. For setting up 404 Error page on wordpress follow this well compiled article: <a href="http://codex.wordpress.org/Creating_an_Error_404_Page">Creating an Error 404 Page</a></p>
<p>Interesting read: <a href="http://www.codinghorror.com/blog/archives/000819.html" class="title-link">Creating User Friendly 404 Pages</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2008/04/creating-error-404-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross-site Scripting (XSS)</title>
		<link>http://www.aburad.com/blog/2008/04/cross-site-scripting-xss.html</link>
		<comments>http://www.aburad.com/blog/2008/04/cross-site-scripting-xss.html#comments</comments>
		<pubDate>Tue, 15 Apr 2008 17:58:39 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[hacks]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Cross-site]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/2008/04/15/cross-site-scripting-xss/</guid>
		<description><![CDATA[Two days back, my shoutbox was hacked . I was not aware that people are actually visiting this, which I made long back to have similar thing for Ethos in june, 2005. After that i haven&#8217;t updated the code and many things were left in between. What actually happened: Cross Site Scripting, when we want [...]]]></description>
			<content:encoded><![CDATA[<p>Two days back, my <a href="http://aburad.com/shoutbox/">shoutbox</a> was hacked <img src='http://www.aburad.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I was not aware that people are actually visiting this, which I made<a href="http://aburad.com/blog/2005/06/shout-box-2.html"> long back to have similar thing for Ethos</a> in june, 2005. After that i haven&#8217;t updated the code and many things were left in between.</p>
<p><span style="font-style: italic; font-weight: bold;">What actually happened</span>:  Cross Site Scripting, when we want user to input some data (which may be html/javascript) and displays it back. So if html/script tags are not properly checked it can cause trouble. Earlier I hadn&#8217;t checked for javascript, iframe inputs. So somebody just inserted an iframe as message input in my shout box. And the source of iframe contained redirection to another website. So when shouts were displayed on the page the iframe code was displayed as it is and page got redirected to other page.</p>
<p>Luckily I checked the page just after the day this happened, So that way i actually got chance to update this orphaned code and made some fixes.</p>
<p><span style="font-weight: bold; font-style: italic;">Solution :</span> Idea is to filter meta characters such as (&lt; , &gt;, &#8216; , &#8221; etc) Which will prevent browser from processing them as part of some script, they will be processed as plain text only.<br />
So while doing in php you can do:</p>
<p><code>$shout=str_replace("&lt;","&lt;",$_GET["shout"]);</code></p>
<p>And to be on safer side we should also replace following characters:<br />
<code><br />
replace   (       with    (<br />
replace   )       with    )<br />
replace &amp;  with    &amp;<br />
replace   '        with    '<br />
replace   "        with    "<br />
</code><br />
Or If you are not expecting user to input these characters then you can simply replace these with null string;</p>
<p>Update: (25-apr-2008)<br />
You can also use php functions <a href="http://ch2.php.net/manual/en/function.htmlspecialchars.php">htmlspecialchars</a>, <a href="http://ch2.php.net/htmlentities">htmlentities</a>, <a href="http://ch2.php.net/manual/en/function.strip-tags.php">strip_tags</a>.</p>
<p>The replacements which I have mentioned above can be easily done using <a href="http://ch2.php.net/manual/en/function.htmlspecialchars.php">htmlspecialchars</a> but if you want to extend it to all html tags then you can use <a href="http://ch2.php.net/htmlentities">htmlentities</a>. And to strip both html and php tags from string you can use <a href="http://ch2.php.net/manual/en/function.strip-tags.php">strip_tags</a>. The disadvantage with strip_tags is that it doesn&#8217;t validate html so can cause trouble in case of broken html tags. It also provide you option to exclude list of tags from being stripped.</p>
<p>So now you can enjoy <a href="http://aburad.com/shoutbox/">Shout Box</a> until some new bug is found or its hacked again [;)]</p>
<p>Related post:<br />
<a href="http://aburad.com/blog/2006/03/sql-attacks-hacking.html">SQL Attacks: Hacking</a> (SQL injection)</p>
<p>Update(14th May 2008): <a href="http://ha.ckers.org/xss.html">XSS cheatsheet by ha.ckers.org</a> lists possible cross site scripting methods on various browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2008/04/cross-site-scripting-xss.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adobe AIR: Web to Desktop</title>
		<link>http://www.aburad.com/blog/2008/02/adobe-air-web-to-desktop.html</link>
		<comments>http://www.aburad.com/blog/2008/02/adobe-air-web-to-desktop.html#comments</comments>
		<pubDate>Tue, 19 Feb 2008 21:28:44 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[rubik]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/?p=212</guid>
		<description><![CDATA[Past few days, I have came across Adobe AIR through digg, techmeme, delicious and so today i thought i should try this. Adobe AIR lets us their existing web development skills in HTML, AJAX, Flash and Flex to build and deploy rich Internet applications to the desktop. For Application development you will need two things: [...]]]></description>
			<content:encoded><![CDATA[<p>Past few days, I have came across Adobe AIR through digg, techmeme, delicious and so today i thought i should try this. Adobe AIR lets us their existing web development skills in HTML, AJAX, Flash and Flex to build and deploy rich Internet applications to the desktop. For Application development you will need two things:</p>
<ul>
<li><a href="http://labs.adobe.com/downloads/air.html" title="Adobe AIR Runtime">Adobe AIR Runtime</a> : Necessary for running AIR applications. (For windows &amp; mac)</li>
<li><a href="http://labs.adobe.com/downloads/airsdk.html" title="AIR_SDK">AIR_SDK</a> Provide necessary libraries to build AIR application</li>
</ul>
<p>Having <a href="http://labs.adobe.com/wiki/index.php/AIR:Dreamweaver_CS3_Extension">Adobe AIR extension for Dreamweaver CS3</a> can be very helpful as it facilitates to package and preview .air application files directly within Adobe Dreamweaver CS3.</p>
<p>As my first AIR application, I ported my <a href="http://www.aburad.com/cubing/timer.html" title="Rubik Cube Timer">rubiks cube timer</a> as a desktop application (<a href="http://www.aburad.com/cubing/RubikTimer.air" title="RubikTimer">RubikTimer.air</a>). Its very easy using dreamweaver extension, have a look here : <a href="http://livedocs.adobe.com/labs/air/1/devappshtml/help.html?content=HTMLHelloWorld_1.html">Create your first HTML-based AIR application with the AIR SDK </a>(great tutorial for beginners).</p>
<p>One problem I faced: Usually <em>setInterval(&#8220;display()&#8221;,500)</em> works with Firefox/IE but it was not starting with no error message to look into but then i found out about using Adobe CommandLine tool. (via <a href="http://www.blog.mediaprojekte.de/tutorials/three-ways-to-debug-an-adobe-air-javascript-application/">Three ways to debug Adobe javascript Application</a>). It´s called ADL and resides in the /bin folder of the SDK. ADL showed the Error: &#8220;Unsafe javascript&#8221;. Then after some random changes when i change it to <em>&#8220;setInterval(display,500)&#8221;</em>, It started working. Another problem I faced was related to <em>keypress events in javascript</em>, were not working with AIR (still have to resolve this issue)</p>
<p>Download <a href="http://www.aburad.com/cubing/RubikTimer.air">RubikTimer.air here</a><br />
Web Based <a href="http://www.aburad.com/cubing/timer.html">Rubik Cube Timer</a></p>
<p>Related Post:</p>
<p><a href="http://labs.adobe.com/technologies/air/samples/">Sample Adobe AIR Applications</a><a rel="bookmark" href="http://aburad.com/blog/2008/02/trying-hands-on-google-gadgets.html" title="Permanent Link to Trying hands on Google gadgets"><br />
Trying hands on Google gadgets</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2008/02/adobe-air-web-to-desktop.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Trying hands on Google gadgets</title>
		<link>http://www.aburad.com/blog/2008/02/trying-hands-on-google-gadgets.html</link>
		<comments>http://www.aburad.com/blog/2008/02/trying-hands-on-google-gadgets.html#comments</comments>
		<pubDate>Sun, 17 Feb 2008 00:16:26 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[rubik]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/?p=211</guid>
		<description><![CDATA[Tonight i tried creating some google gadgets (actually its quite easy using Google Gadget Creator). You can check out them here: Google gadgets . You can use html / javascript (as in any other webapage) to create gadgets. So i converted my Rubiks Cube Timer to a gadget. Other one is a gadget to search [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight i tried creating some google gadgets (actually its quite easy using <a href="http://code.google.com/apis/gadgets/docs/gs.html#GGE" title="Google Gadget Creator">Google Gadget Creator</a>).  You can check out them here: <a href="http://www.aburad.com/googlegadget.html">Google gadgets </a>. You can use html / javascript (as in any other webapage) to create gadgets.<img src="http://aburad.com/cubing/rubiktimergadget.png" alt="Rubik timer gadget" align="left" height="196" hspace="5" vspace="5" width="263" /> So i converted my <a href="http://www.aburad.com/cubing/timer.html" title="Rubik Cube Timer">Rubiks Cube Timer</a> to  a <a href="http://fusion.google.com/ig/add?synd=open&amp;source=ggyp&amp;moduleurl=http://burad-gadgets.googlecode.com/files/rubikcubetimer-gadget.xml" title="gadget" target="_blank">gadget</a>. Other  one is a gadget to search stock, scripts on bombay stock exchange.</p>
<p>You can also create gadgets using : <a href="http://www.google.com/ig/gmchoices" title="Make your own Gadget">Make your Own Gadget</a> (Which is as simple as filling out forms)</p>
<p>P.S. : My first post on wordpress blog. (I imported my previous posts from <a href="http://burad.blogspot.com" title="blogger">blogger</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2008/02/trying-hands-on-google-gadgets.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Paint Online</title>
		<link>http://www.aburad.com/blog/2007/04/paint-online.html</link>
		<comments>http://www.aburad.com/blog/2007/04/paint-online.html#comments</comments>
		<pubDate>Wed, 18 Apr 2007 16:33:00 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[listing]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Online Paint Brush]]></category>
		<category><![CDATA[paint]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/?p=200</guid>
		<description><![CDATA[These days i&#8217;m getting so many websites which allows you to draw online..here is a list of some Flash Based: Imagination Cubed Wetpaint Please Touch &#8211; Create Your Own Masterpiece! Artpad FlashPaint Sketchr (also available at http://www.queeky.com) Scratchpad Online Paint Brush HTML &#60; canvas &#62; Based: Paint Chat [designed by me ] Canvas Painter Canvas [...]]]></description>
			<content:encoded><![CDATA[<p>These days i&#8217;m getting so many websites which allows you to draw online..here is a list of some<br />
<span style="font-style: italic">Flash Based:</span></p>
<ul>
<li><a href="http://imaginationcubed.com/LaunchPage">Imagination Cubed</a></li>
<li><a href="http://www.wetpaintpleasetouch.com/">Wetpaint Please Touch &#8211; Create Your Own Masterpiece!</a></li>
<li><a href="http://artpad.art.com/artpad/painter/">Artpad</a></li>
<li><a href="http://www.flashpaint.com/">FlashPaint</a></li>
<li><a href="http://www.sketchr.net/">Sketchr</a> (also available at <a href="http://www.queeky.com/" class="user">http://www.queeky.com)</a></li>
<li><a href="http://web.okaygo.co.uk/apps/scratchpad/flashcom/">Scratchpad</a></li>
<li><a href="http://www.ababasoft.com/how_to_draw/paint_brush_mi.html">Online Paint Brush</a></li>
</ul>
<p><span style="font-style: italic">HTML &lt; canvas &gt; Based:</span></p>
<ul>
<li><a href="http://www.aburad.com/paintchat/paint_chat.php">Paint Chat</a> [designed by me <img src='http://www.aburad.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ]</li>
<li><a href="http://caimansys.com/painter/">Canvas Painter</a></li>
<li><a href="http://canvaspaint.org/">Canvas Paint</a> (resembles to MS paint)</li>
</ul>
<p><span style="font-style: italic">Java Based:</span></p>
<ul>
<li><a href="http://www.billybear4kids.com/Learn2Draw/PaintProgram/drawing.htm">Drawing Online</a></li>
<li><a href="http://www.zewall.com/index.htm">ZEwall: Online Painting</a></li>
<li><a href="http://www.izhuk.com/painter/">JPainter : Online image editor</a></li>
</ul>
<p>Related Post :<br />
<a href="http://aburad.com/blog/2007/02/paint-chat.html">Paint Chat !!</a><br />
<a href="http://aburad.com/blog/2006/03/web20-applications.html">Web2.0 Applications</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2007/04/paint-online.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web Development Tools</title>
		<link>http://www.aburad.com/blog/2007/02/web-development-tools.html</link>
		<comments>http://www.aburad.com/blog/2007/02/web-development-tools.html#comments</comments>
		<pubDate>Sat, 24 Feb 2007 17:34:00 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web developer tools]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/?p=189</guid>
		<description><![CDATA[Great listing of web developers powertools by Brennan Stehling. I&#8217;ll starts with extension for firefox that comes very handy while web devlopment. Web Developer : Adds a menu and a toolbar with various web developer tools. Firebug: Allows you to edit debug, and monitor CSS, HTML, and JavaScript live in any web page. ColorZilla: Advanced [...]]]></description>
			<content:encoded><![CDATA[<p>Great listing of web developers powertools by <a href="http://brennan.offwhite.net/blog/2006/09/10/web-development-tools-for-the-power-developer/">Brennan Stehling</a>.<br />
I&#8217;ll starts with extension for firefox that comes very handy while web devlopment.</p>
<ul>
<li><a href="https://addons.mozilla.org/firefox/60/">Web Developer</a> : Adds a menu and a toolbar with various web developer tools.</li>
<li><a href="https://addons.mozilla.org/firefox/1843/">Firebug</a>: Allows you to edit debug, and monitor CSS, HTML, and JavaScript live in any web page.</li>
<li><a href="https://addons.mozilla.org/firefox/271/">ColorZilla</a>: Advanced Eyedropper, ColorPicker, Page Zoomer and other colorful goodies.</li>
<li><a href="https://addons.mozilla.org/firefox/3829/">Live HTTP Headers</a></li>
</ul>
<p>The list <a href="http://brennan.offwhite.net/blog/2006/09/10/web-development-tools-for-the-power-developer/">Web Development Tools for the Power Developer</a> contains :</p>
<h3>Validators</h3>
<ul>
<li><a href="http://validator.w3.org/">HTML/XHTML Validator</a></li>
<li><a href="http://jigsaw.w3.org/css-validator/">CSS Validator</a></li>
<li><a href="http://feedvalidator.org/">Feed Validator (RSS and Atom)</a></li>
</ul>
<h3>Javascript</h3>
<ul>
<li><a href="http://prototype.conio.net/">Prototype Javascript Framework</a></li>
<li><a href="http://script.aculo.us/">Script.aculo.us</a></li>
<li><a href="http://developer.yahoo.com/javascript/">Yahoo! JavaScript Developer Center</a></li>
<li><a href="http://www.javascriptlint.com/">Javascript Lint</a></li>
</ul>
<h3>Websites</h3>
<ul>
<li><a href="http://www.alistapart.com/">A List Apart</a></li>
<li><a href="http://www.positioniseverything.net/">Position Is Everything</a></li>
<li><a href="http://www.quirksmode.org/">Quirks Mode</a></li>
<li><a href="http://www.webstandards.org/">WaSP</a></li>
<li><a href="http://www.csszengarden.com/">CSS Zen Garden</a></li>
</ul>
<p><a href="http://brennan.offwhite.net/blog/2006/09/10/web-development-tools-for-the-power-developer/">Read More&gt;&gt;</a> (also containing ASP.NET, Proxy tools)<br />
And <a href="http://www.w3schools.com/">w3schools</a>, a great place for finding tutorials realted to web development.</p>
<p>Updated(29 April 2007) : <a href="http://www.tlbox.com/web_designers/" style="font-weight: bold">Tools for web-designers.</a></p>
<p>Related Post :</p>
<ul>
<li><a href="http://aburad.com/blog/2007/02/improving-interactivity-with-javascript.html">Improving interactivity with Javascript</a></li>
<li><a href="http://aburad.com/blog/2007/02/firebug-web-development-evolved.html">Firebug : web development evolved</a></li>
<li><a href="http://aburad.com/blog/2007/02/play-with-html-using-javascript.html">Play with html using javascript</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2007/02/web-development-tools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improving interactivity with Javascript</title>
		<link>http://www.aburad.com/blog/2007/02/improving-interactivity-with-javascript.html</link>
		<comments>http://www.aburad.com/blog/2007/02/improving-interactivity-with-javascript.html#comments</comments>
		<pubDate>Thu, 22 Feb 2007 04:37:00 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/?p=188</guid>
		<description><![CDATA[HTML controls other than conventional Push buttons, radio buttons, check boxes, select boxes, and text inputs, can power up forms, webdev using javascript to increase interactivity and easy (for users). List of such controls includes : slider, Date picker, Smart text boxes, Advanced tooltips, Auto validation etc. Read more friendly bit &#62;&#62; Improving interactivity with [...]]]></description>
			<content:encoded><![CDATA[<p>HTML controls other than conventional Push buttons, radio buttons, check boxes, select boxes, and text inputs, can power up forms, webdev using javascript to increase interactivity and easy (for users). List of such controls includes : <a href="http://webfx.eae.net/dhtml/slider/slider.html">slider</a>, <a href="http://www.basicdatepicker.com/">Date picker</a>, <a href="http://www.cambiaresearch.com/c4/029c978b-aac5-472e-97a8-95b256f5febd/How-Can-I-Use-Javascript-to-Allow-Only-Numbers-to-Be-Entered-in-a-TextBox.aspx">Smart text boxes</a>, Advanced tooltips, Auto validation etc.</p>
<p><a href="http://bp2.blogger.com/_qhHaEAh26gI/Rd0lpUqmA7I/AAAAAAAAAFk/mHsxUi9wQ3s/s1600-h/slider.png"><img border="0" src="http://bp2.blogger.com/_qhHaEAh26gI/Rd0lpUqmA7I/AAAAAAAAAFk/mHsxUi9wQ3s/s400/slider.png" style="display: block; margin: 0px auto 10px; cursor: pointer; text-align: center; border: 0pt" id="BLOGGER_PHOTO_ID_5034221350322308018" /></a><a href="http://bp0.blogger.com/_qhHaEAh26gI/Rd0ld0qmA6I/AAAAAAAAAFc/R7siRwedLkA/s1600-h/tooltip.png" ><img border="0" src="http://bp0.blogger.com/_qhHaEAh26gI/Rd0ld0qmA6I/AAAAAAAAAFc/R7siRwedLkA/s400/tooltip.png" style="display: block; margin: 0px auto 10px; cursor: pointer; text-align: center; border: 0pt" id="BLOGGER_PHOTO_ID_5034221152753812386" /></a>Read more <a href="http://friendlybit.com/">friendly bit</a> &gt;&gt; <a href="http://friendlybit.com/js/improving-interactivity-with-javascript/">Improving interactivity with Javascript</a><br />
In addition, I find image maps also very handy when it comes to intereactivity when used properly with tooltips&#8230;as i used them in <a rel="nofollow" href="http://www.aburad.com/paintchat/paint_chat.php">Paint Chat.</a></p>
<p>Bonus link[ <img src='http://www.aburad.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ] <a href="http://www.dailyblogtips.com/web-design-tutorials/">DailyBlogTips</a> &gt; <a href="http://www.drweb.de/weblog/weblog/?p=780">Web 2.0 Webdesign Tutorials</a><br />
Related post :</p>
<ul>
<li><a href="http://aburad.com/blog/2007/02/play-with-html-using-javascript.html">Play with html using javascript</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2007/02/improving-interactivity-with-javascript.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GPRS on Mobile</title>
		<link>http://www.aburad.com/blog/2007/02/gprs-on-mobile.html</link>
		<comments>http://www.aburad.com/blog/2007/02/gprs-on-mobile.html#comments</comments>
		<pubDate>Thu, 15 Feb 2007 19:29:00 +0000</pubDate>
		<dc:creator>burad</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mobile phones]]></category>
		<category><![CDATA[WAP]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://aburad.com/blog/?p=186</guid>
		<description><![CDATA[Yesterday I activated GPRS on my mobile (nokia 6030) &#8230;its quite cheap( 10paise/10kb) So I tried different pages which works for mobile Yahoo Search Flickr : http://m.flickr.com W3schools.com: http://w3scholls.com/wap.wml Google Mpas: http://www.google.com/gmm Some more websites which works on mobile can be found here : Mobile Compatibe Wesites So I thougth i should have a mobile [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I activated GPRS on my mobile (nokia 6030) &#8230;its quite cheap( 10paise/10kb)<br />
So I tried different pages which works for mobile</p>
<ul>
<li>Yahoo Search</li>
<li>Flickr : http://m.flickr.com</li>
<li>W3schools.com: http://w3scholls.com/wap.wml</li>
<li>Google Mpas: http://www.google.com/gmm</li>
</ul>
<p>Some more websites which works on mobile can be found here : <a href="http://forums.whirlpool.net.au/forum-replies-archive.cfm/378227.html">Mobile Compatibe Wesites</a></p>
<p>So I thougth i should have a mobile webpage too.. so i searched for it and found this great tutorial on w3schools: <a href="http://www.w3schools.com/wap/default.asp">WAP/WML tutorial</a>. It has also got a <a href="http://www.w3schools.com/wap/tryit_wap.asp?file=demo_helloworld.wml">demo page</a> which works with explorer only but it contains simple and good examples explaining basic features of wml along with preview on how it looks on mobile.</p>
<blockquote><p>The WAP (<strong>W</strong>ireless <strong>A</strong>pplication <strong>P</strong>rotocol) protocol is the leading standard for information services on wireless terminals like digital mobile phones. WML stands for <strong>W</strong>ireless <strong>M</strong>arkup <strong>L</strong>anguage. It is a mark-up language inherited from HTML, but WML is based on XML, so it is much stricter than HTML.</p></blockquote>
<p>Tutorial was pretty easy..so i create my own pae which works on mobile. You can access it at:<br />
<a href="http://www.aburad.com/m.wml">http://www.aburad.com/m.wml</a>, though it contain my pic, blog address and some content only(I will add some more content). WML supports wbmp(which is black &amp; white) image format,( you can convert image to wbmp using <a href="http://www.online-utility.org/image_converter.jsp?outputType=WBMP">http://www.online-utility.org/</a>. It als o supports jpg format. One more thing while designing your pages for mobile, you can opera to see how it looks as it supports wml files. Or check it at online wap emulator: <a href="http://www.waptiger.com/waptiger/">WapTiger</a><br />
Some more links : <a href="http://www.palowireless.com/wap/tutorials.asp">Wap Tutorials</a>(haven&#8217;t tried yet).</p>
<p>Related Post :<a href="http://aburad.com/blog/2006/08/things-you-never-knew-your-cell-phone-could-do.html">Things You Never Knew Your Cell Phone Could Do</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aburad.com/blog/2007/02/gprs-on-mobile.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

