<?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>Wysmedia.com &#187; My Thought</title>
	<atom:link href="http://www.wysmedia.com/category/my-thought/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wysmedia.com</link>
	<description>~ We make IT easy for you ~</description>
	<lastBuildDate>Fri, 08 May 2009 07:02:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Alternative Text in Image</title>
		<link>http://www.wysmedia.com/2009/05/using-alternative-text-in-image/</link>
		<comments>http://www.wysmedia.com/2009/05/using-alternative-text-in-image/#comments</comments>
		<pubDate>Wed, 06 May 2009 03:06:48 +0000</pubDate>
		<dc:creator>adwin</dc:creator>
				<category><![CDATA[My Thought]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[alt]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://www.wysmedia.com/?p=79</guid>
		<description><![CDATA[I used to browse a web image off in order to save the bandwith usage (also to speed up the loading). It is unpleasant sometimes to see a images that link to something but don&#8217;t have &#8220;alt&#8221; attributs that&#8217;s why sometimes I need to turn on the image for seeing what is the next. 

People [...]]]></description>
			<content:encoded><![CDATA[<p>I used to browse a web image off in order to save the bandwith usage (also to speed up the loading). It is unpleasant sometimes to see a images that link to something but don&#8217;t have &#8220;alt&#8221; attributs that&#8217;s why sometimes I need to turn on the image for seeing what is the next. </p>
<p><span id="more-79"></span><br />
People may not know the importance of using &#8220;alt&#8221; attribute in web design. It is very important, because it is good for Search Engine Optimization (SEO). Suppose someone search about something, the picture could help to increase the rating as well.</p>
<p>I just read this <a href="http://webaim.org/techniques/alttext/">web </a> it explain very well about using &#8220;alt&#8221;. It also encourage people to use alt although it is empty. Alt also shouldn&#8217;t redundant with the content of page. For example, when you want to display picture of Barack Obama, you don&#8217;t need to do like this :</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;p&gt;
Picture of Barack Obama, the President of United States from 2009
&lt;img src='www.barackobama.com/obama.jpg' alt=&quot;picture of barack obama, president of united states&quot;/&gt;
&lt;/p&gt;</pre></td></tr></table></div>

<p>On the browser or web spider it will looks like :</p>
<blockquote><p>Picture of Barack Obama, the President of United States  picture of barack obama, president of united states</p></blockquote>
<p>It is redundant information. So you can simply put empty on the alt because the previous text has already explain it.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;p&gt;
Picture of Barack Obama, the President of United States from 2009
&lt;img src='www.barackobama.com/obama.jpg' alt=&quot;&quot;/&gt;
&lt;/p&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.wysmedia.com/2009/05/using-alternative-text-in-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>which one you prefer ?</title>
		<link>http://www.wysmedia.com/2009/03/which-one-you-prefer/</link>
		<comments>http://www.wysmedia.com/2009/03/which-one-you-prefer/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 04:49:33 +0000</pubDate>
		<dc:creator>adwin</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[My Thought]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.wysmedia.comyr.com/?p=49</guid>
		<description><![CDATA[ I just having thought of current JavaFx that using syntax that looks like Groovy DSL. I think it is fun to have a syntax like that, instead of using XML. I hate XML you know &#8230;. 

Which one you like ?

&#60;html&#62;
    &#60;body&#62;
        &#60;table&#62;
  [...]]]></description>
			<content:encoded><![CDATA[<p> I just having thought of current JavaFx that using syntax that looks like Groovy DSL. I think it is fun to have a syntax like that, instead of using XML. I hate XML you know &#8230;. </p>
<p>
Which one you like ?</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
    &lt;body&gt;
        &lt;table&gt;
            &lt;tr&gt;
                &lt;td&gt; something here &lt;/td&gt;
                &lt;td&gt; something here too &lt;/td&gt;
                &lt;td&gt; something here as well&lt;/td&gt;
            &lt;/tr&gt;
             &lt;tr&gt;
                &lt;td&gt; another line here &lt;/td&gt;
                &lt;td&gt; another line here too &lt;/td&gt;
                &lt;td&gt; another line here as well&lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
        &lt;a href=&quot;http://wysmedia.comyr.com&quot;&gt; wysmedia&lt;/a&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>or</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">html<span style="color: #009900;">&#123;</span>
    body<span style="color: #009900;">&#123;</span>
        table<span style="color: #009900;">&#123;</span>
            tr<span style="color: #009900;">&#123;</span>
                td<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;something here&quot;</span><span style="color: #009900;">&#125;</span>
                td<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;something here too&quot;</span><span style="color: #009900;">&#125;</span>
                td<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;something here as well&quot;</span><span style="color: #009900;">&#125;</span>
            <span style="color: #009900;">&#125;</span>
            tr<span style="color: #009900;">&#123;</span>
                td<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;another line &quot;</span><span style="color: #009900;">&#125;</span>
                td<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;another line too&quot;</span><span style="color: #009900;">&#125;</span>
                td<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;another line as well&quot;</span><span style="color: #009900;">&#125;</span>
            <span style="color: #009900;">&#125;</span>
        <span style="color: #009900;">&#125;</span>
        p<span style="color: #009900;">&#123;</span>
            h2<span style="color: #009900;">&#123;</span><span style="color: #0000ff;">&quot;a paragraph&quot;</span><span style="color: #009900;">&#125;</span>
            a<span style="color: #009900;">&#123;</span>
                href<span style="color: #339933;">:</span><span style="color: #0000ff;">&quot;http://wysmedia.comyr.com&quot;</span>
                title<span style="color: #339933;">:</span><span style="color: #0000ff;">&quot;link to wysmedia&quot;</span>
                <span style="color: #0000ff;">&quot;wysmedia.com&quot;</span>
            <span style="color: #009900;">&#125;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

</p>
<p> which one you like the most ? </p>
]]></content:encoded>
			<wfw:commentRss>http://www.wysmedia.com/2009/03/which-one-you-prefer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Safari 4(beta) = Full of Craps !</title>
		<link>http://www.wysmedia.com/2009/02/safari-4beta-full-of-craps/</link>
		<comments>http://www.wysmedia.com/2009/02/safari-4beta-full-of-craps/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 05:33:35 +0000</pubDate>
		<dc:creator>adwin</dc:creator>
				<category><![CDATA[My Thought]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.wysmedia.comyr.com/?p=40</guid>
		<description><![CDATA[http://corymathews.com/?p=260 says that Safari 4 (beta) is full of crap. I just uninstalled few minutes ago.

When i start the safari, oh, it looks like Chrome. Is it chrome modified ? Seems good &#8230; okay go on .. i tried to setup the fonts, i want to choose which fonts supported .. and dang .. i [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://corymathews.com/?p=260">http://corymathews.com/?p=260</a> says that Safari 4 (beta) is full of crap. I just uninstalled few minutes ago.<br />
<span id="more-40"></span></p>
<p>When i start the safari, oh, it looks like Chrome. Is it chrome modified ? Seems good &#8230; okay go on .. i tried to setup the fonts, i want to choose which fonts supported .. and dang .. i select the graphics font (like dingbat) and my safari went freeze&#8230;. damn. I checked the windows task manager and found that safari ate 100 MB&#8230; wth .. i just load for 2 tabs and it start to ate 100MB &#8230; worst than Firefox.</p>
<p>
Safari 4 beta, my first impression is crap and lots of marketing hype. The development tools are not better than Firebug. Firebug is the best one and I never saw better than firebug.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wysmedia.com/2009/02/safari-4beta-full-of-craps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->
