<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" 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/" > <channel><title>Comments for ColtonCat</title> <atom:link href="http://coltoncat.com/comments/feed/" rel="self" type="application/rss+xml" /><link>http://coltoncat.com</link> <description>Just some Rambling...</description> <lastBuildDate>Mon, 09 Jan 2012 21:09:59 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Comment on Barracuda/EmailReg.org pure opportunism? by Stacey Dunning</title><link>http://coltoncat.com/barracuda-emailreg_org-opportunism/comment-page-1/#comment-5362</link> <dc:creator>Stacey Dunning</dc:creator> <pubDate>Mon, 09 Jan 2012 21:09:59 +0000</pubDate> <guid isPermaLink="false">http://coltoncat.com/?p=282#comment-5362</guid> <description>I have seen a few of these in the past few days: host scanner.tabletoptelephone.com [63.235.184.34]: 554 Service unavailable; Client host [mymailserver] blocked using Barracuda Reputation; http://bbl.barracudacentral.com/q.cgi?ip=[myipaddress]So who are these email hosts who are using this company?  I&#039;m glad I found your post.  I thought, &quot;Well if $20 will help get my newsletter out to more of the subscribers, it&#039;s worth it.&quot;   But, you&#039;re right, this is extortion.  I&#039;m also very careful to comply with CAN-SPAM and don&#039;t send newsletters to anyone who hasn&#039;t signed up, that&#039;s not to say people don&#039;t get lazy and mark us as spam rather than clicking the &quot;unsubscribe&quot; link when they are no longer interested in getting the newsletter.</description> <content:encoded><![CDATA[<p>I have seen a few of these in the past few days:<br /> host scanner.tabletoptelephone.com [63.235.184.34]:<br /> 554 Service unavailable; Client host [mymailserver] blocked using Barracuda Reputation; <a href="http://bbl.barracudacentral.com/q.cgi?ip=myipaddress" rel="nofollow">http://bbl.barracudacentral.com/q.cgi?ip=myipaddress</a></p><p>So who are these email hosts who are using this company?  I&#8217;m glad I found your post.  I thought, &#8220;Well if $20 will help get my newsletter out to more of the subscribers, it&#8217;s worth it.&#8221;   But, you&#8217;re right, this is extortion.  I&#8217;m also very careful to comply with CAN-SPAM and don&#8217;t send newsletters to anyone who hasn&#8217;t signed up, that&#8217;s not to say people don&#8217;t get lazy and mark us as spam rather than clicking the &#8220;unsubscribe&#8221; link when they are no longer interested in getting the newsletter.</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Wireless Client Bridge by Lausanne Salas</title><link>http://coltoncat.com/creating-a-wireless-client-bridge/comment-page-1/#comment-2848</link> <dc:creator>Lausanne Salas</dc:creator> <pubDate>Sun, 19 Jun 2011 13:29:53 +0000</pubDate> <guid isPermaLink="false">http://clements.za.net/?p=123#comment-2848</guid> <description>Hi. Your article is very helpful. would you mind if you can send a screenshot of how you did it?I would really appreciate your help.ThanksZane</description> <content:encoded><![CDATA[<p>Hi. Your article is very helpful. would you mind if you can send a screenshot of how you did it?</p><p>I would really appreciate your help.</p><p>Thanks</p><p>Zane</p> ]]></content:encoded> </item> <item><title>Comment on Redirecting /index.php to / to avoid duplicate content by clementsm</title><link>http://coltoncat.com/apache-redirect-to-root/comment-page-1/#comment-2556</link> <dc:creator>clementsm</dc:creator> <pubDate>Sun, 22 May 2011 02:09:35 +0000</pubDate> <guid isPermaLink="false">http://clements.za.net/?p=146#comment-2556</guid> <description>No, you won&#039;t have a problem... the &quot;index&quot; page as you refer to it is set in the configuration of the web-server, in Apache it is set with the &quot;DirectoryIndex&quot; directive, usually placed in the .htaccess file.  This tells the web-server what file to return when a call to just the directory is made -- so if you type just &quot;http://www.example.com&quot; into the browser address bar, the web-server will return whatever it has been configured to return as its default document.  Apache does this through an internal redirect.What the code in this post does (and use the code in my &lt;a href=&quot;#comment-291&quot; rel=&quot;nofollow&quot;&gt;comment below&lt;/a&gt; -- not that in the post as it is more efficient) is to tell a client that requests http://example.com/index.php that it should really request http://example.com/ from the web-server.  The web-server will still return the content of index.php as this is the configured default file to return.Usually a web-server will only return a listing of the files in a directory if there is no default document configured, however, I also thing it is a good practise to implicitly turn off directory listings on public web-servers.  In Apache you do this with the Options -Indexes statement in .htaccess (or the server configuration file). For more information on this, you can checkout the section on the Options statement on the &lt;a href=&quot;http://httpd.apache.org/docs/2.0/mod/core.html#options&quot; rel=&quot;nofollow&quot;&gt;Apache Documentation&lt;/a&gt; website.The process of ensuring that each bit of content on your website is accessed through a singe, unique URL is called URL Canonicalization, and it is considered to be an important basic &lt;abbr title=&quot;Search Engine Optimization&quot;&gt;SEO&lt;/abbr&gt; technique.</description> <content:encoded><![CDATA[<p>No, you won&#8217;t have a problem&#8230; the &#8220;index&#8221; page as you refer to it is set in the configuration of the web-server, in Apache it is set with the &#8220;DirectoryIndex&#8221; directive, usually placed in the .htaccess file.  This tells the web-server what file to return when a call to just the directory is made &#8212; so if you type just &#8220;http://www.example.com&#8221; into the browser address bar, the web-server will return whatever it has been configured to return as its default document.  Apache does this through an internal redirect.</p><p>What the code in this post does (and use the code in my <a href="#comment-291" rel="nofollow">comment below</a> &#8212; not that in the post as it is more efficient) is to tell a client that requests <a href="http://example.com/index.php" rel="nofollow">http://example.com/index.php</a> that it should really request <a href="http://example.com/" rel="nofollow">http://example.com/</a> from the web-server.  The web-server will still return the content of index.php as this is the configured default file to return.</p><p>Usually a web-server will only return a listing of the files in a directory if there is no default document configured, however, I also thing it is a good practise to implicitly turn off directory listings on public web-servers.  In Apache you do this with the Options -Indexes statement in .htaccess (or the server configuration file). For more information on this, you can checkout the section on the Options statement on the <a href="http://httpd.apache.org/docs/2.0/mod/core.html#options" rel="nofollow">Apache Documentation</a> website.</p><p>The process of ensuring that each bit of content on your website is accessed through a singe, unique URL is called URL Canonicalization, and it is considered to be an important basic <abbr title="Search Engine Optimization">SEO</abbr> technique.</p> ]]></content:encoded> </item> <item><title>Comment on Redirecting /index.php to / to avoid duplicate content by Jackie</title><link>http://coltoncat.com/apache-redirect-to-root/comment-page-1/#comment-2536</link> <dc:creator>Jackie</dc:creator> <pubDate>Wed, 18 May 2011 21:31:10 +0000</pubDate> <guid isPermaLink="false">http://clements.za.net/?p=146#comment-2536</guid> <description>Redirecting www.sample.com/index.html to www.sample.com to avoid duplicationIf there is an index.html or index.htm or a variant of these files inside of the directory, the web server won&#039;t let you browse through directories.  If I redirect “/index.html” to “/”, will this allow browsing of my website because it no longer has a page titled “/index.html” or does the page it is redirected to www.sample.com/  still serve as the index page? In other words, will this open my directories up for everyone to view or are they still safe?</description> <content:encoded><![CDATA[<p>Redirecting <a href="http://www.sample.com/index.html" rel="nofollow">http://www.sample.com/index.html</a> to <a href="http://www.sample.com" rel="nofollow">http://www.sample.com</a> to avoid duplication</p><p>If there is an index.html or index.htm or a variant of these files inside of the directory, the web server won&#8217;t let you browse through directories.  If I redirect “/index.html” to “/”, will this allow browsing of my website because it no longer has a page titled “/index.html” or does the page it is redirected to <a href="http://www.sample.com/" rel="nofollow">http://www.sample.com/</a> still serve as the index page? In other words, will this open my directories up for everyone to view or are they still safe?</p> ]]></content:encoded> </item> <item><title>Comment on Telus TV &#8211; Yet Another Review by clementsm</title><link>http://coltoncat.com/telus-tv-first-impressions/comment-page-1/#comment-1847</link> <dc:creator>clementsm</dc:creator> <pubDate>Sun, 06 Feb 2011 23:15:42 +0000</pubDate> <guid isPermaLink="false">http://clements.za.net/?p=47#comment-1847</guid> <description>Just bear in mind that their Optik service is usually based on a VDSL2 connection. I hear you with the D-Link DSL modem and your own router concept and this is really in my opinion a much better idea than that all-in-one Actiontec modem they are putting in today, but if you are on a VDSL2 link you don&#039;t really have much choice as the Actiontec they use is one of the only VDSL2 devices  on the market.  There are products from Cisco, Alcatel and Zyxel but you may have a better time finding hens teeth then getting one of these at a good price.</description> <content:encoded><![CDATA[<p>Just bear in mind that their Optik service is usually based on a VDSL2 connection. I hear you with the D-Link DSL modem and your own router concept and this is really in my opinion a much better idea than that all-in-one Actiontec modem they are putting in today, but if you are on a VDSL2 link you don&#8217;t really have much choice as the Actiontec they use is one of the only VDSL2 devices  on the market.  There are products from Cisco, Alcatel and Zyxel but you may have a better time finding hens teeth then getting one of these at a good price.</p> ]]></content:encoded> </item> <item><title>Comment on Telus TV &#8211; Yet Another Review by Chester</title><link>http://coltoncat.com/telus-tv-first-impressions/comment-page-1/#comment-1843</link> <dc:creator>Chester</dc:creator> <pubDate>Sun, 06 Feb 2011 03:23:20 +0000</pubDate> <guid isPermaLink="false">http://clements.za.net/?p=47#comment-1843</guid> <description>Quick note: I have ran this system with small DSL modem  (telus gives you)  and my own linksys Router for months with no problems. I put PVR in DMZ zone and it worked flawless. So you can run this on your own setup but telus will tell inform you only works on there all-in-one modem/routers. That in fact is a lie. They use D-link or Actiontec all in one  routers, Both are Crap.. They are confusing and not very configurable.  I&#039;ve had nothing but problems with Telus all in one routers.I have had Optik tv since um Early Nov of 2009.  The menu/guild on the Cisco 430 PVR Boxes is far Superior to what shaw currently has. Tho I have not seen there boxes, I did have old older  HD 6200 I think and I had nothing but problems. I could not run HDMI from shaw box to my bran new LG 42 inch HD tv. As there some kinda handshaking error and screen would blink on and off. I tried to inform shaw but they just make excuse and say was my HDMI cable.  Even tho my ps3 runs fine and if I switched hdmi cable.  I got same results.   shaw hd box did not work on very well with HDMI.The good:Telus PVR box is years ahead shaw -Fast channel change/surf -Much better menu/guild - anything recorded can be watch on any telus boxs -Get more channels then what u get with shaw cable. -Faster upload speeds then shaw. -You can watch HD channels on normal SD tv.. -Picture quality on HD channel when on SD  tv using S-video is decent. -Works best if use CAT 5 eithernet. -internet speed is about same I&#039;d say.. I haven&#039;t really notice that much of difference but i don&#039;t do a lot downloading.The cons: -picture quality on SD channels is very bad -Picture quality on HD channels is very soft/pixialed There quality is no where near what Sat or cable gives and seems be getting worst with each month.. HD channels that have fast moving picture or water seem be very very pixailed like there using too much compression. blocky artifacts are common on SD and HD channels too. -Sound on ALL HD and SD channels goes up and down like crazy. -Dolby Digital is also has up/down issues at time.. The remote as has nice feel. but You have to point it right at the box.   A bit of pain. They still haven updated to version 2.0. I&#039;v hurd rumors that when move beond currently 1.6? ver Version 2.0 I hear is suppose be really good, but only time will tell. This system is much better then shaw.. I was paying $160-$170 a month for most HD channel and SD channels and $20 a month to rent the crapy HD box. Not even PVR.Currently I&#039;m getting 2 Boxes no extra cost. but I never signed any contract nor did agree any verbal contract. But I am only paying about $130 a month..  The PVR is solid. Menu/guild fast surf channels. PVR recoding has few issues. Sometime you&#039;ll get double shows, Sometime it don&#039;t record properly, but  has only happens few times. ALL PVRs seem have few record issues.. If you wire these via eithernet. You&#039;ll should have no issues.. yes its bit of pain, but it is the best way to go. If they fix the sound issues, fix the HD and SD channels so they not so badly compressed Id be happy. but for now its is better, but these minor issues are starting to annoying me.. It&#039;s why I have 42 inch HD tv and Surrounded system. I love the PVR box as I wish I could just hook this up to shaw cable and id be happy. Hopefully the system updates soon and gets better.</description> <content:encoded><![CDATA[<p>Quick note:<br /> I have ran this system with small DSL modem  (telus gives you)  and my own linksys Router for months with no problems. I put PVR in DMZ zone and it worked flawless.<br /> So you can run this on your own setup but telus will tell inform you only works on there all-in-one modem/routers. That in fact is a lie. They use D-link or Actiontec all in one  routers,<br /> Both are Crap.. They are confusing and not very configurable.  I&#8217;ve had nothing but problems with Telus all in one routers.</p><p>I have had Optik tv since um Early Nov of 2009.  The menu/guild on the Cisco 430 PVR Boxes is far Superior to what shaw currently has. Tho I have not seen there boxes, I did have old older  HD 6200 I think and I had nothing but problems. I could not run HDMI from shaw box to my bran new LG 42 inch HD tv. As there some kinda handshaking error and screen would blink on and off. I tried to inform shaw but they just make excuse and say was my HDMI cable.  Even tho my ps3 runs fine and if I switched hdmi cable.  I got same results.   shaw hd box did not work on very well with HDMI.</p><p>The good:</p><p>Telus PVR box is years ahead shaw<br /> -Fast channel change/surf<br /> -Much better menu/guild<br /> - anything recorded can be watch on any telus boxs<br /> -Get more channels then what u get with shaw cable.<br /> -Faster upload speeds then shaw.<br /> -You can watch HD channels on normal SD tv..<br /> -Picture quality on HD channel when on SD  tv using S-video is decent.<br /> -Works best if use CAT 5 eithernet.<br /> -internet speed is about same I&#8217;d say.. I haven&#8217;t really notice that much of difference but i don&#8217;t do a lot downloading.</p><p>The cons:<br /> -picture quality on SD channels is very bad<br /> -Picture quality on HD channels is very soft/pixialed<br /> There quality is no where near what Sat or cable gives and seems be getting worst with each month.. HD channels that have fast moving picture or water seem be very very pixailed like there using too much compression. blocky artifacts are common on SD and HD channels too.<br /> -Sound on ALL HD and SD channels goes up and down like crazy.<br /> -Dolby Digital is also has up/down issues at time..<br /> The remote as has nice feel. but You have to point it right at the box.   A bit of pain.<br /> They still haven updated to version 2.0. I&#8217;v hurd rumors<br /> that when move beond currently 1.6? ver Version 2.0 I hear is suppose be really good, but only time will tell.<br /> This system is much better then shaw.. I was paying $160-$170 a month for most HD channel and SD channels and $20 a month to rent the crapy HD box. Not even PVR.</p><p>Currently I&#8217;m getting 2 Boxes no extra cost. but I never signed any contract nor did agree any verbal contract. But I am only paying about $130 a month..  The PVR is solid. Menu/guild fast surf channels. PVR recoding has few issues. Sometime you&#8217;ll get double shows, Sometime it don&#8217;t record properly, but  has only happens few times. ALL PVRs seem have few record issues..<br /> If you wire these via eithernet. You&#8217;ll should have no issues..<br /> yes its bit of pain, but it is the best way to go.<br /> If they fix the sound issues, fix the HD and SD channels so they not so badly compressed Id be happy. but for now its is better, but these minor issues are starting to annoying me.. It&#8217;s why I have 42 inch HD tv and Surrounded system. I love the PVR box as I wish I could just hook this up to shaw cable and id be happy.<br /> Hopefully the system updates soon and gets better.</p> ]]></content:encoded> </item> <item><title>Comment on Blackberry Bold 9000 OS 5.0.0.348 does not work with AT&amp;T by Leaked Bold 9000 OS 5.0.0.348 Torrent Found</title><link>http://coltoncat.com/blackberry-bold-9000-os-5-0-0-348-does-not-work-with-att/comment-page-1/#comment-1806</link> <dc:creator>Leaked Bold 9000 OS 5.0.0.348 Torrent Found</dc:creator> <pubDate>Tue, 25 Jan 2011 18:21:40 +0000</pubDate> <guid isPermaLink="false">http://coltoncat.com/?p=569#comment-1806</guid> <description>[...] version (5.0.0.348) has been reported by AT&amp;T users to cause a reboot-loop. Check this post BlackBerry Bold 9000 OS 5.0.0.348 Does Not Work with AT&amp;T. Either way, you probably want to take care using this if you are using AT&amp;T in the USA on a [...]</description> <content:encoded><![CDATA[<p>[...] version (5.0.0.348) has been reported by AT&amp;T users to cause a reboot-loop. Check this post BlackBerry Bold 9000 OS 5.0.0.348 Does Not Work with AT&amp;T. Either way, you probably want to take care using this if you are using AT&amp;T in the USA on a [...]</p> ]]></content:encoded> </item> <item><title>Comment on Blackberry Bold 9000 OS 5.0.0.348 does not work with AT&amp;T by OS 5.0.0.411 for Bold 9000 &#38; Curve 8900</title><link>http://coltoncat.com/blackberry-bold-9000-os-5-0-0-348-does-not-work-with-att/comment-page-1/#comment-1805</link> <dc:creator>OS 5.0.0.411 for Bold 9000 &#38; Curve 8900</dc:creator> <pubDate>Tue, 25 Jan 2011 18:21:23 +0000</pubDate> <guid isPermaLink="false">http://coltoncat.com/?p=569#comment-1805</guid> <description>[...] RIM, not your network operator nor I will be able to help you! There have been reported issues of a reboot loop with .348 on AT&amp;T, I don&#8217;t know if this firmware suffers from the same problem. Also, if you have a company [...]</description> <content:encoded><![CDATA[<p>[...] RIM, not your network operator nor I will be able to help you! There have been reported issues of a reboot loop with .348 on AT&amp;T, I don&#8217;t know if this firmware suffers from the same problem. Also, if you have a company [...]</p> ]]></content:encoded> </item> <item><title>Comment on Rogers Selling Curve Bold 9700 online&#8230; by Bell selling the Blackberry&#174; Bold&#8482; 9700 for less than Rogers</title><link>http://coltoncat.com/rogers-selling-curve-bold-9700-online/comment-page-1/#comment-1804</link> <dc:creator>Bell selling the Blackberry&#174; Bold&#8482; 9700 for less than Rogers</dc:creator> <pubDate>Tue, 25 Jan 2011 18:20:57 +0000</pubDate> <guid isPermaLink="false">http://coltoncat.com/?p=525#comment-1804</guid> <description>[...] Rogers &#8211; who incorrectly listed the Bold&#8482; 9700 as the Curve&#8482; 9700 on the detail page of their website &#8211; Bell have managed to get all the details [...]</description> <content:encoded><![CDATA[<p>[...] Rogers &ndash; who incorrectly listed the Bold&trade; 9700 as the Curve&trade; 9700 on the detail page of their website &ndash; Bell have managed to get all the details [...]</p> ]]></content:encoded> </item> <item><title>Comment on Leaked Bold 9000 OS 5.0.0.348 Torrent Found by Blackberry Bold (9000) OS 5.0.0.314 Leaked</title><link>http://coltoncat.com/leaked-bold-9000-os-5-0-0-348-torrent-found/comment-page-1/#comment-1803</link> <dc:creator>Blackberry Bold (9000) OS 5.0.0.314 Leaked</dc:creator> <pubDate>Tue, 25 Jan 2011 18:20:41 +0000</pubDate> <guid isPermaLink="false">http://coltoncat.com/?p=547#comment-1803</guid> <description>[...] Update: A new leaked torrent for the Bold 9000 for 5.0.0.348 here&#8230; [...]</description> <content:encoded><![CDATA[<p>[...] Update: A new leaked torrent for the Bold 9000 for 5.0.0.348 here&hellip; [...]</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Served from: coltoncat.com @ 2012-02-08 15:19:53 by W3 Total Cache -->
