<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>Tildemark blogs</title>
        <link>http://www.tildemark.com/</link>
        <description>Blogging on uniquely random things. </description>
        <language>en</language>
        <copyright>Copyright 2008</copyright>
        <lastBuildDate>Tue, 22 Jul 2008 08:30:44 +0800</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>What is RSS?</title>
            <description><![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.tildemark.com/images/rss-dummies.jpg"><img alt="rss-dummies.jpg" src="http://www.tildemark.com/images/rss-dummies-thumb-200x250.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" width="200" height="250" /></a></span><b>What is RSS?</b><br />RSS is a document format for reading frequently updated websites in the internet. Similar to other document format like the MS Word documents or the PDF documents, the RSS also needs an interpreter called the "RSS Reader" as the MS Word Application for your MS Word documents and acrobat reader for your PDF documents. Each RSS document is called a "feed" or commonly as RSS Feed. RSS feeds are seen with the icon having an orange background with arcs usually found on the side bar of a blog. <br /><br /><b>How can RSS feed help me?</b><br />RSS are designed to help us read frequently updated websites in just one neat and simple application called the "RSS Reader". I use these programs at home to read my favorite blogs or forum and at work to read the messages from my projects. With this, i do not need to go to each of the websites i often visit just to check for any update but instead the RSS Reader does this for me. RSS Readers really made my life more easier as RSS stands for Really Simple Syndication<br /><br /><b>How do i get RSS?</b><br />You will need an RSS Reader, there are lots of applications that enables you to read RSS documents. Personally, I use the <a href="http://www.google.com/reader/">Google Reader</a> but you might prefer some other applications. Lets just use it because it the only reader use for now. If you have a <a href="http://www.google.com/accounts">Google account</a> then you can use it to read RSS feeds from there. Just click on the "add subscription" link and paste in your RSS feed. Now on the blogs that you read look for the RSS Logo, copy and paste the URL to your favorite RSS Reader in my case its <a href="http://www.google.com/reader/">Google Reader</a>. Some feeds are marked private meaning you will need a password before we could read the contents. Some readers accepts authentication, at the office is use <a href="http://www.sharpreader.net/">Sharp Reader</a> Software.<br /><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.tildemark.com/images/rss-logo.jpg"><img alt="rss-logo.jpg" src="http://www.tildemark.com/images/rss-logo-thumb-200x200.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" width="200" height="200" /></a></span><b>How do I know the link I got is RSS?</b><br />The RSS reader is written in plain text, if you will try to open an RSS document with a text editor, you can actually read it but you might have a little more time understanding because of the way its written. The format the RSS document is written is called XML. XML is like an older brother of the other common technical word called HTML. XML and HTML are not the topic here so lets just ignore them for now. You will know its RSS because every RSS feed has this somewhere at the beginning of the document: &lt;?xml version="1.0"&gt; and it has an orange icon with a arcs in it. You can try using <a href="http://www.tildemark.com/index.xml">Tildemark Blogs RSS feed</a> to use is as a sample or maybe subscribe to it. <br /><br /> <div><br /></div>]]></description>
            <link>http://www.tildemark.com/internet/what-is-rss.html</link>
            <guid>http://www.tildemark.com/internet/what-is-rss.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Blogging</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Internet</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
            <pubDate>Tue, 22 Jul 2008 08:30:44 +0800</pubDate>
        </item>
        
        <item>
            <title>writing accessibility CSS code for the color blind</title>
            <description><![CDATA[Not being able to see the differences between colors is a bit trouble some. Imagine yourself looking at the traffic light and not seeing and red color. These people will see yellowish brown color instead of the red color. Red-green color blind is also called <i>Protanopia</i>, people that are less sensitive to red light and <i>Deuteranopia </i>for people who are less sensitive to the green light.&nbsp; Some study determined that about 10% of the male population are color blind. I am happy I do not belong to those 10%. <br /><br />That is why link urls should stay underlined to help people with color blindness see it immediately. since we are not able to adjust CSS being used on the website we browse, we will just instead use our own CSS page by specifying it on our browser. if you are color blind, this page will help you a lot. If you are not color blind, i don't recommend you using it because it would be weird. <br /><br />First lets create our own CSS file and specify it via our browser settings later. <br /><br /><code><br />* {<br />&nbsp; color: #000 !important;<br />&nbsp; background: #fff !important;<br />}<br /><br />a {<br />&nbsp; text-decoration: underline !important;<br />&nbsp; color: #fff !important;<br />&nbsp; background: #000 !important;<br />}<br /></code><br /><br />the <b>!important</b> specifier must be present on your CSS codes to tell the browser its important and must override the other CSS codes. <br /><br />Using Internet Explorer navigate to&nbsp; <br /><ul><li><b>Tools </b>-&gt;<b> Internet Options</b></li><li>Click on the <b>Accessibility</b> button</li><li>Place a check on the '<b>Format documents using my style sheet</b>' option</li><li><b>Browse</b> to the location where you saved your CSS file above.</li><li>then click <b>OK</b></li></ul>If you are using Firefox go to your profile folder and edit your userCrome.css file of your userContent.css file. just copy-paste the CSS code above to the bottom portion of the file. <br />  ]]></description>
            <link>http://www.tildemark.com/programming/css/writing-accessibility-css-code-for-the-color-blind.html</link>
            <guid>http://www.tildemark.com/programming/css/writing-accessibility-css-code-for-the-color-blind.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">CSS</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">accessibility for color blind</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">css for the color blind</category>
            
            <pubDate>Mon, 14 Jul 2008 10:58:21 +0800</pubDate>
        </item>
        
        <item>
            <title>Keyword competition tool called Stomper Ranker</title>
            <description><![CDATA[Stompernet just released a firefox extension that displays the rank of a site on the top 3 search engines namely, Google, Yahoo and Live. I'm a fan of the StomperNet videos myself and i believe this tool is a good addition to most seo professionals. Stomper Ranker tool allows you to easily see your competitors in ranks in a graphical view based on the search keyword we use. The green represents Google, Red is Yahoo and Blue is Live. Just hover your mouse pointer to each dot to see which site is currently performing well on the ranks. The line denotes the same site url.<br /><br />You may download the <a href="http://about.stompernet.com/tools/ranker/">Stomper Ranker</a> extension at the StomperNet site.<br /><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.tildemark.com/images/ranker.jpg"><img alt="ranker.jpg" src="http://www.tildemark.com/images/ranker-thumb-400x231.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" height="231" width="400" /></a></span><br /> <div><br /></div><div><br /></div>]]></description>
            <link>http://www.tildemark.com/seo/keyword-competition-tool-called-stomper-ranker.html</link>
            <guid>http://www.tildemark.com/seo/keyword-competition-tool-called-stomper-ranker.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">keyword</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">seo</category>
            
            <pubDate>Mon, 30 Jun 2008 14:03:55 +0800</pubDate>
        </item>
        
        <item>
            <title>Removing google public service ads on adsense</title>
            <description><![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="public-service-ads.jpg" src="http://www.tildemark.com/images/public-service-ads.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" height="216" width="324" /></span> <div>You usually get this when you first added your adsense codes to your site. Its alright to get this during this time as adsense wasn't able to get a cache of your keywords yet. It may take some time to get revenue generating ads on your site specially if your content has less meaningful keywords in it. According to the google help center, it would take approximately 48 hours to remove the Gulf Hurricane Relief ad on your site. If its been there for weeks then your copy might have some problems in it.<br /><br /><b>Editing robots.txt</b><br />There are several ways to remove the PSA from appearing on your site, but the most efficient way is to change your content. First things first, your robots.txt might have been configured to disallow adsense crawlers from visiting your site. If you are able to edit your robots.txt file, you may add the following code below:<br /><br />User-agent: Mediapartners-Google*
<br />Disallow:<br /> <br /><b>Avoid iFrames or Frames</b><br />If you have placed your adsense code in an iFrame then the crawler will have no way of getting relevant keywords thus displaying in the Public&nbsp; Service&nbsp; Ads. Google crawlers will have a hard time figuring out which content to get for the ads inside frames so its best not to place your ads in a separate frame or simply avoid using frames on your site just to be safe.<br /><br /><b>Choose&nbsp; your content wisely</b><br />Content is the most important factor in determining the adsense ads that is displayed on your website. the more content you the greater chances of getting a relevant ad. Make sure you have enough content for the crawler to read. Also, the google crawler can't read images, audio files, flash content, java applets or anything except plain text. If you have a small amount of content and you have set your ads to display only images then this might be the reason for displaying only PSA ads. Try changing your adsense codes to display text and images ads. <br /><br /><b>Negative Keywords</b><br />Avoid negative keywords, this includes anything that is related to d%ath, sickness, p%rnography, dr%gs, etc. At anytime avoid mentioning these words on all of your content, but opps there you go i have just listed them here anyway. <br /><br /><b>Avoid automatic refresh<br /></b>If yous page contains the HTML auto refresh code, it might also be the reason why your site is displaying public service ads. Remove the meta refresh code from your page and observe if the PSA ads have been removed. The meta refresh code looks like this one below, remove them:<br /><br />&lt;meta http-equiv="Refresh"&gt;<br /><br /><b>Adsense ad in a login page</b><br />Placing ads on a page that requires user access does not allow the google crawler to visit the page to get the relevant keywords therefore displaying public service ads instead. Avoid placing adsense code behind a login page. <br /><br /><b>Avoid Session Ids on URLs</b><br />Adsense also relies heavily on the URL to display relevant ads. Having a session id on the url confuses the crawler to ad a relevant keyword because your URL keeps on changing. You may use the input type hidden HTML attribute instead of placing the session id in the urls<br /><br /><b>Unsupported localization</b><br />If you site is displaying other language aside from English then this might be the reason why its displaying public service ads. Here's a list of country currently supported by adsense. <br />Arabic&nbsp; <br />Bulgarian <br />Chinese (simplified) <br />Chinese (traditional) <br />Croatian <br />Czech <br />Danish <br />Dutch <br />English <br />Finnish <br />French <br />German <br />Greek <br />Hebrew <br />Hungarian<br />Italian<br />Japanese<br />Korean<br />Norwegian<br />Polish<br />Portuguese<br />Romanian<br />Russian<br />Serbian<br />Slovak<br />Spanish<br />Swedish<br />Turkish<br /></div>]]></description>
            <link>http://www.tildemark.com/seo/removing-google-public-service-ads-on-adsense.html</link>
            <guid>http://www.tildemark.com/seo/removing-google-public-service-ads-on-adsense.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Blogging</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Internet</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">ads</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">adsense</category>
            
            <pubDate>Thu, 01 May 2008 10:22:01 +0800</pubDate>
        </item>
        
        <item>
            <title>Google ads in video thru video overlay</title>
            <description><![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.tildemark.com/images/overlay.jpg"><img alt="overlay.jpg" src="http://www.tildemark.com/images/overlay-thumb-200x149.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" height="149" width="200" /></a></span> <div>Imagine yourself watching your favorite star wars movie, didn't it get into your mind on where you could buy those double edge light sabers? you would even beg for a fake replica, just to get one. What if while watching the movie, you could click on the light saber which brings you to its shopping cart! Isn't that cool? no, its uber cool! <br /><br />Although it's not exactly whats happening right now but eventually the road is going that way. As what i have remembered it was just last month when i saw it at <a href="http://www.overlay.tv/">overlay.tv</a>. Imagine the number of potential customers coming from the movie industry. This is a whole new market opened for us. <br /><br />What is a <a href="http://www.webopedia.com/TERM/v/video_overlay.htm">Video Overlay</a>? It is supposed to be placing a full screen video into a display or a window. When it came, most people added educational information via texts to the video that is currently being watched at the bottom portion on the display. I don't know who's the genius that came up with the idea of adding ads to the video. Whats even clever is that it allows us to click on the product itself inside the running video (of course the video pauses when you hover your mouse over). Video overlay is different from the ones we used to see at youtube, this time it allows us to click within the video itself.<br /><br />Anyway its a new method of monetizing my blogs and an additional revenue, I'm currently studying on how can i implement it with my sites. Currently adsense is offering <a href="http://www.google.com/ads/videoadsolutions/demos.html#">two ad formats</a> namely the InVideo overlay and the Text Overlay. You might want to read <a href="http://www.google.com/ads/videoadsolutions/">google video advertising solutions</a> first to know more on how you can implement it yourself. You can then <a href="https://www.google.com/adsense/support/bin/request.py?contact_type=video_joinbeta">apply for its beta release</a> and start adding in into your sites.<br /><br /><br /></div>]]></description>
            <link>http://www.tildemark.com/seo/google-ads-in-video-thru-video-overlay.html</link>
            <guid>http://www.tildemark.com/seo/google-ads-in-video-thru-video-overlay.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Movies</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Shopping</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">adsense</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">overlay</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">overlay ads</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">video ads</category>
            
            <pubDate>Fri, 22 Feb 2008 20:22:09 +0800</pubDate>
        </item>
        
        <item>
            <title>Search Engine Stop Words</title>
            <description><![CDATA[<p>Search engines ignore these keywords because they are common in most articles, may also slow down the search process and they does not contribute to relevance. These stop words contains conjunctions, prepositions, and articles. </p>

<p>In contrary, when we are optimizing for a keyword that contains any of the stop words(e.g. IT, one, two etc), it would then become troublesome for the seo department. So, it is best to choose the right keywords to optimize for your website beforehand. </p>

<p>a<br />
able<br />
about<br />
above<br />
abroad<br />
according<br />
accordingly<br />
across<br />
actually<br />
ad<br />
</p>]]></description>
            <link>http://www.tildemark.com/seo/search-engine-stop-words.html</link>
            <guid>http://www.tildemark.com/seo/search-engine-stop-words.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">seo</category>
            
                <category domain="http://www.sixapart.com/ns/types#tag">stop words</category>
            
            <pubDate>Wed, 19 Dec 2007 11:13:17 +0800</pubDate>
        </item>
        
        <item>
            <title>Top Searched Keywords</title>
            <description><![CDATA[<p><a href="http://www.google.com">Google</a> lists their mosts searched keywords at the <a href="http://www.google.com/press/zeitgeist.html">Zeitgeist</a> website. You can also search for <a href="http://www.google.com/press/intl-zeitgeist.html">top keywords</a> by country. </p>

<p><a href="http://www.yahoo.com">Yahoo</a> also has its own version but it looks like a blog rather than a list, they call it <a href="http://buzz.yahoo.com/">Yahoo Buzz</a>.</p>

<p><a href="http://www.lycos.com/">Lycos</a> also has its own list <a href="http://50.lycos.com/">here</a>.</p>

<p><a href="http://www.zdnet.com/">ZDNet</a> has an interesting <a href="http://downloads.zdnet.com/topsearch.aspx">list of keywords</a> here, so much for those top celebrities..</p>

<p>If you can afford <a href="http://www.wordtracker.com/">WordTracker</a>, its much better if we search from there. However, they also have a list of <a href="http://wordtracker.com/topkeywords.html">top searched keywords</a> online. </p>

<p>We could also search for most searched keywords at Ask.com from <a href="http://about.ask.com/en/docs/iq/iq.shtml">here</a>.</p>]]></description>
            <link>http://www.tildemark.com/seo/top-searched-keywords.html</link>
            <guid>http://www.tildemark.com/seo/top-searched-keywords.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
            <pubDate>Mon, 19 Feb 2007 16:17:26 +0800</pubDate>
        </item>
        
        <item>
            <title>SEO Challenge</title>
            <description><![CDATA[<p>Here's a website with an <a href="http://www.linkvendor.com/seo-tools/seo-challenge.html">seo challenge</a> service. It lets you compare websites with something i do not know.? I tried www.google.com and www.yahoo.com and somehow i do not know why google lost over to yahoo not to mention the annoying captcha. </p>

<p>i am suspecting its the number of backlinks to the site, that what makes yahoo.com the winner. anyway, they should have described it at least...</p>]]></description>
            <link>http://www.tildemark.com/seo/seo-challenge.html</link>
            <guid>http://www.tildemark.com/seo/seo-challenge.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
            <pubDate>Fri, 02 Feb 2007 23:54:14 +0800</pubDate>
        </item>
        
        <item>
            <title>Google hints</title>
            <description><![CDATA[<p><img alt="google_adsense_logo.jpg" src="http://www.tildemark.com/images/google_adsense_logo.jpg" width="150" height="80" /></p>

<p>I thought it was just a hearsay until i saw it at the <a href="http://www.neopets.com">neopets</a> website. Just keep on refreshing the page until the google ad displays. Take a look at the source code and you will see the google_hint option on google ad script. it looked something like this:</p>

<p><strong>google_hints = "microsoft instant messenger pizza hut virgin mobile doughnut disney world fruit snacks";</strong></p>

<p>Definitely its going to help you display targeted ads to your site specially if its not displaying any relevant ads. The only problem i could see here is that it might be abused just like what happened to the meta keywords which was called <a href="http://en.wikipedia.org/wiki/Keyword_stuffing">keyword stuffing</a>. The main reason why the search engines are nowadays ignoring them. However, you will need to contact google before you can use the code. I dont really know the process and i haven't tested it yet. Total number of characters on google_hints should not exceed by 1024 characters.</p>]]></description>
            <link>http://www.tildemark.com/seo/google-hints.html</link>
            <guid>http://www.tildemark.com/seo/google-hints.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
            <pubDate>Fri, 22 Sep 2006 00:51:26 +0800</pubDate>
        </item>
        
        <item>
            <title>Opt out from DMOZ description</title>
            <description><![CDATA[<p>Most description from SERPs generated from top search engines came from <a href="http://www.dmoz.org/">Open Directory Project (ODP)</a> and not from the actual site description. Now, most of the <a href="http://mattcutts.com/blog/google-supports-meta-noodp-tag">site owners</a> do not like this to happen since most of the descriptions there are outdated or maybe incorrect.</p>

<p><a href="http://sitemaps.blogspot.com/2006/07/more-control-over-page-snippets.html">Google</a> now supports META NOODP while <a href="http://blogs.msdn.com/livesearch/archive/2006/05/22/603917.aspx">MSN</a> gives out their support for the opt out from <a href="http://www.dmoz.org/">DMOZ</a> months ago. After adding this code your site header allow 1 day to 3 weeks to see results depending on how often is your site gets crawled.</p>

<p>Tell all robots not to use site description from DMOZ: <br />
<code>&lt;META NAME="ROBOTS" CONTENT="NOODP"&gt;</code></p>

<p>Also works for attribute combination:<br />
<code>&lt;META NAME="ROBOTS" CONTENT="NOODP, NOFOLLOW"&gt;</code></p>

<p>We could specifically direct Googlebot not to use DMOZ descriptions by: <br />
<code>&lt;META NAME="GOOGLEBOT" CONTENT="NOODP"&gt;</code></p>

<p>Or MSN by:<br />
<code>&lt;META Name="msnbot" CONTENT="NOODP"&gt;</code></p>

<p><br />
Note:<br />
SERPs - Search Engine Result Page</p>]]></description>
            <link>http://www.tildemark.com/seo/opt-out-from-dmoz-description.html</link>
            <guid>http://www.tildemark.com/seo/opt-out-from-dmoz-description.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
            <pubDate>Thu, 31 Aug 2006 17:46:43 +0800</pubDate>
        </item>
        
        <item>
            <title>Adsense Section Targeting</title>
            <description><![CDATA[<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.tildemark.com/images/target.gif"><img alt="target.gif" src="http://www.tildemark.com/images/target-thumb-200x127.gif" width="200" height="127" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></a></span>Right keywords on your site displays the right ads. With <a href="https://www.google.com/support/adsense/bin/answer.py?answer=23168">section targeting</a>, you could redirect google bot to which portion of your site that has more relevant content, most probably a paragraph with your main keyword. This would greatly lessen the PSAs displayed on your site. Although google bot automatically targets your sites keyword, there are some poritions on your site you might want to put some weight on. </p>

<p>Here are some guidelines:<br />
<ul><li>You can have more than one section in a page. </li><br />
<li>The section should have a significant amount of content. </li><br />
<li>Changes will be reflected in at least 1-2 weeks. </li><br />
</ul></p>

<p>To emphasize a page section:<br />
<code>&lt;!-- google_ad_section_start --&gt;</p>

<p>{text content here}</p>

<p>&lt;!-- google_ad_section_end --&gt;</code></p>

<p>You can also mark contents to be of less significant by adding ignore<br />
<code>&lt;!-- google_ad_section_start(weight=ignore) --&gt;</p>

<p>{ignored text here}</p>

<p>&lt;!-- google_ad_section_end --&gt;</code></p>

<p><br />
Notes:<br />
PSAs - Public Service Ads</p>]]></description>
            <link>http://www.tildemark.com/seo/adsense-section-targeting.html</link>
            <guid>http://www.tildemark.com/seo/adsense-section-targeting.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">SEO</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">adsense</category>
            
            <pubDate>Wed, 30 Aug 2006 10:33:56 +0800</pubDate>
        </item>
        
    </channel>
</rss>






