<?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>LAN Net Work!</title>
	<atom:link href="http://alantait.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://alantait.net</link>
	<description>LAN Tait is Net Working!</description>
	<lastBuildDate>Tue, 12 Mar 2013 07:16:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>How to get blank lines in WordPress lists?</title>
		<link>http://alantait.net/2013/03/12/how-to-get-blank-lines-in-wordpress-lists/</link>
		<comments>http://alantait.net/2013/03/12/how-to-get-blank-lines-in-wordpress-lists/#comments</comments>
		<pubDate>Tue, 12 Mar 2013 07:08:13 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1269</guid>
		<description><![CDATA[Getting Frustrated trying to put blank lines into WordPress ordered and non-ordered lists? Well, copy/past these codes and you will have no more problems. [...]]]></description>
			<content:encoded><![CDATA[<p>I have wanted to add some blank lines in my document between list items (either ordered or not).</p>
<p>For example I want&#8230;</p>
<ol>
<li>Text1</li>
<li>Test2</li>
<li>Test3</li>
</ol>
<p><code><br />
&lt;li&gt;Text1&lt;/li&gt;<br />
&lt;li&gt;Test2&lt;/li&gt;<br />
&lt;li&gt;Test3&lt;/li&gt;<br />
</code><br />
To look like:</p>
<ol>
<li style="margin-bottom: 1em;">Text1</li>
<li style="margin-bottom: 1em;">Test2</li>
<li style="margin-bottom: 1em;">Test3</li>
</ol>
<p>&nbsp;</p>
<h2>First Attempt ( Failed! )</h2>
<p>I tried adding a new line and even a &amp;nbsp; but neither worked, like this&#8230;</p>
<p><code><br />
&lt;li&gt;Text1<br />
&amp;nbsp;&lt;/li&gt;<br />
&lt;li&gt;Test2<br />
&amp;nbsp;&lt;/li&gt;<br />
&lt;li&gt;Test3<br />
&amp;nbsp;&lt;/li&gt;<br />
</code></p>
<p>Or</p>
<p><code><br />
&lt;li&gt;Text1&lt;br /&gt;<br />
&amp;nbsp;&lt;/li&gt;<br />
&lt;li&gt;Test2&lt;br /&gt;<br />
&amp;nbsp;&lt;/li&gt;<br />
&lt;li&gt;Test3&lt;br /&gt;<br />
&amp;nbsp;</code>&lt;/li&gt;</p>
<p>But when you switch from Visual to HTML mode and back again it deletes it and returns to the same as before.</p>
<p>&nbsp;</p>
<h2>Solution One  ( Best! )</h2>
<p>&lt;li style=&#8221;margin-bottom:1em&#8221;&gt;</p>
<p>Like this:</p>
<p><code><br />
&lt;li style="margin-bottom:1em"&gt;Text 1&lt;/li&gt;<br />
&lt;li style="margin-bottom:1em"&gt;Test 2&lt;/li&gt;<br />
&lt;li style="margin-bottom:1em"&gt;Test 3&lt;/li&gt;<br />
</code></p>
<ol>
<li style="margin-bottom: 1em;">Text 1</li>
<li style="margin-bottom: 1em;">Test 2</li>
<li style="margin-bottom: 1em;">Test 3</li>
</ol>
<p>&nbsp;</p>
<h2>Solution Two (Good)</h2>
<p><code>&lt;p style="margin-bottom:1em"&gt;</code></p>
<p>Like this:</p>
<p><code><br />
&lt;li&gt;&lt;p style="margin-bottom:1em"&gt;text1&lt;/p&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;p style="margin-bottom:1em"&gt;text2&lt;/p&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;p style="margin-bottom:1em"&gt;text3&lt;/p&gt;&lt;/li&gt;<br />
</code></p>
<ol>
<li>
<p style="margin-bottom: 1em;">text1</p>
</li>
<li>
<p style="margin-bottom: 1em;">text2</p>
</li>
<li>
<p style="margin-bottom: 1em;">text3</p>
</li>
</ol>
<h2>Solution Three  ( Also Good! )</h2>
<p>Change the p tag to an h tag</p>
<p><code>&lt;h2 style="margin-bottom:1em"&gt;</code></p>
<p>Like this:</p>
<p><code><br />
&lt;li&gt;&lt;h2 style="margin-bottom:1em"&gt;text1&lt;/h2&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;h2 style="margin-bottom:1em"&gt;text2&lt;/h2&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;h2 style="margin-bottom:1em"&gt;text3&lt;/h2&gt;&lt;/li&gt;<br />
</code></p>
<ol>
<li>
<h2 style="margin-bottom: 1em;">text1</h2>
</li>
<li>
<h2 style="margin-bottom: 1em;">text2</h2>
</li>
<li>
<h2 style="margin-bottom: 1em;">text3</h2>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2013/03/12/how-to-get-blank-lines-in-wordpress-lists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO in Meta Tags! &#8211; Meta Tags for SERP!</title>
		<link>http://alantait.net/2013/03/12/seo-in-meta-tags-meta-tags-for-serp/</link>
		<comments>http://alantait.net/2013/03/12/seo-in-meta-tags-meta-tags-for-serp/#comments</comments>
		<pubDate>Tue, 12 Mar 2013 03:08:25 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Websites - SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress - SEO]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1253</guid>
		<description><![CDATA[Everyone wants to be #1 on the SERP (Search Engine Results Page). Here are some easy SEO (Search Engine Optimization) Tips on how to bring your website to where you need it to be. [...]]]></description>
			<content:encoded><![CDATA[<h2>How to get better SEO using Meta Tags</h2>
<p>For a number of years I have used a standard meta tag formula.  My belief was that real SEO (Search Engine Optimization) was about&#8230;</p>
<ol>
<li><strong>Content</strong></li>
<li><strong>Content</strong></li>
<li><strong>Content</strong></li>
</ol>
<p><strong>In that order!</strong></p>
<h2>New Rules</h2>
<p><span id="more-1253"></span>Then I decided to listen to what the&#8221; experts&#8221; say about SEO and my rank on the SERP (Search Engine Results Page) actually DROPPED!</p>
<p>So I decided to share a few of my own SEO tips, these are about Meta Tags in HTML5 but they also work in any version of HTML/XHTML.  I do this all the time in WordPress, using our own TuKod Theme.</p>
<h2>SEO vs SERP</h2>
<p>Let&#8217;s face the facts, when most people talk about <em>SEO</em>, they are looking for <em>SERP Rank</em>.  That is the position on the SERP.  One of these days I am going to write a post on <em><strong>Effective SEO for SERP Rank!</strong></em>  Until then, here is my way of doing <em>Meta Tags</em> for <em>SERP!</em></p>
<h2>Which Meta Tags for SEO</h2>
<p>The first question to answer is which of the many <em>Meta Tags</em> to use for SEO.  My answer may surprise you.  Use as many as you want!  However, only three will really change your <em>SERP.</em>  So here are the <strong>secret three:</strong></p>
<ol>
<li style="margin-bottom: 1em;">
<h3><strong>Keywords</strong></h3>
</li>
<li style="margin-bottom: 1em;">
<h3><strong>Title</strong></h3>
</li>
<li style="margin-bottom: 1em;">
<h3><strong>Description</strong></h3>
</li>
</ol>
<h2>It may surprise you&#8230;</h2>
<p>Most SEO experts will tell you things like:</p>
<ul>
<li style="margin-bottom: 1em;">The Domain Name is the most important, it must have you <em>main keyword</em> and keep it <em>short</em>! ( False! )</li>
<li style="margin-bottom: 1em;">It is critical you have a <em>dot com! </em> ( False! )</li>
<li style="margin-bottom: 1em;"><em>Keywords don&#8217;t matter</em> to search engines, they do not even read them!  ( They matter to SERP! )</li>
</ul>
<h2> Keywords</h2>
<p>Let me tell you <em>why</em> keywords do matter!</p>
<p>First of all they help you organize your thoughts.  They help you to do better SEO and get better SERP Rank.</p>
<p>Make a list of 20-30 keywords.  Doing it in a spread sheet is easy.  Set your priority keywords at the top (row 1 would be your highest priority, row 30 would be the lowest priority).</p>
<h2>What is a Keyword?</h2>
<p>Now to organize these 20-30 keywords, you need to know what a keyword is!</p>
<p>Basically a keyword is what a person will type into Google or Bing.  It is the smallest &#8220;topic&#8221; on your web page.  The most important words, set in a priority list.</p>
<h2>What is Not a Keyword?</h2>
<p>Remember, a keyword is what someone is searching for.</p>
<p>I know a very fine dentist in Cebu, Philippines who is Dr. Pe.  &#8220;Pe&#8221; is not a keyword (or maybe not a top ten keyword) because the person searching for a dentist in Cebu, Philippines, is not going to know Dr. Pe&#8217;s name is Dr. Pe!  I would suggest one of the pages on Dr. Pe&#8217;s website have the top three keywords as, Dentist, Cebu, and Philippines!</p>
<h2>The Top Ten</h2>
<p>Now that you have 20-30 (I always try for 30) keywords, go through the list and pick out the words that you think people are most likely to type into Google or Bing, and make a Top Ten List.</p>
<p>Don&#8217;t be surprised if some of the Top Ten List are not within the top ten on your 30 keyword list.  It happens to me all the time.  Adjust your 30 keyword list so the top ten is the Top Ten list.</p>
<h2>Make Additional Lists</h2>
<ul>
<li><strong>Make a Top Five List</strong></li>
<li><strong>Make a Top Three List</strong></li>
<li><strong>Make a Top Two List</strong></li>
<li><strong>Make a Top Priority List!</strong>  &#8211; That is the Number One Keyword for this Page!</li>
</ul>
<h2>Using The Keywords</h2>
<p>You should use your top priority ( #1 ) keyword, or its derivative, as the most used word on your page, it is your main topic.</p>
<p>What is a derivative word, for example, for &#8220;dentist&#8221; the words dental and dentists come to mind. As used in &#8220;dental clinic&#8221; and &#8220;staff of trained dentists.&#8221;</p>
<p>If you are having a hard time using your priority keyword, perhaps it is not really your priority, and you should consider revising your lists.</p>
<h2>The Other Keywords</h2>
<p>Likewise, the main keyword should be used the most in your page, the second keyword should be used the second most and the third keyword should be used the third most on the page.  The top three is enough for some pages, but I recommend you continue this for the top five keywords&#8230;</p>
<h2>Content is Everything</h2>
<p>If content is everything, then using your keywords in your content is a very high priority!</p>
<p>Any keyword that is not on your page, remove from your keyword list!</p>
<p>Put your top 20 to 30 keywords into the Keyword Meta Tag. (I usually end up with 20 or more.)</p>
<address><strong>Note:</strong> If you use WordPress and you do not have a place to put the Title, Keywords and Description Meta information, Change Themes!</address>
<h2>Page Title</h2>
<p>Now that we have a working keyword list for this page, try to use your top three keywords in your title.  Remember that titles are for humans to read, so do it properly, to make it easy to read and understand for humans.</p>
<p>However, having your most important keywords first are a consideration.  Try to make the first word of your title the first priority keyword of your page, followed closely by the other keywords, but still in a human readable format.</p>
<h2>Page Title Length</h2>
<p><strong><span style="color: #ff0000;">Hint:</span></strong> <em>70 Characters AND SPACES Max!  These are your ~ <strong>Most Important Keywords</strong> ~ and MUST be included both in your visible text, and in the first words of your</em> Page Keywords.</p>
<h2>Page Description</h2>
<p>When you write your description, start out by writing a description of <em><strong>150</strong></em> characters.  This is what will display in the SERP.  Be sure it is very close to 150 in length, like 148-154 characters!  End this with a period (.) which is a full stop to Google and Bing.</p>
<p>This Description must use all 3 (and maybe 5) of your top priority keywords.</p>
<p>Then add a short &#8220;add on&#8221; sentence (100 characters) that contains both your main keyword (again) and additional keywords.  Together these should be less than 250 characters and spaces (be sure to count spaces)&#8230;</p>
<h2>Page Description Length</h2>
<p><strong><span style="color: #ff0000;">Hint:</span></strong> <em>250 MAX! Google indexes all 250 but PRINTS the first 150 or less! Try to use many of your</em> Page Keywords.</p>
<h2>Page Keywords:</h2>
<p><strong><span style="color: #ff0000;">Hint:</span></strong> <em>What words or phrases (separate by comas) people will search with to find your site! About 20-30 priority words, put most important words FIRST!<br />
</em></p>
<p style="text-align: center;"><em><span style="color: #ff0000;">~ <strong>All keywords MUST also be within visible text.</strong> ~ </span></em></p>
<h2>SERP Results</h2>
<p>Here are the results you should expect if you do this properly.  This is the first steps in obtaining the SERP result you need for each of your pages.</p>
<h2>Top Keyword</h2>
<p>Unless you picked a wildly popular keyword, you should come to the top 100 SERP results, within about a month, by searching for your top keyword.  That means you will reach the top 1000 results!  Many people do much better!  Remember, it takes time and inbound links to reach the top pages&#8230;  This is actually a great start!</p>
<h2>Top Two Keywords</h2>
<p>Unless you picked wildly popular keywords, you should come to the top 10 SERP results withing about a month by searching for your top two keywords.  That means you will reach the top 100 results!</p>
<h2>Top Three Keywords</h2>
<p>Again, unless you picked wildly popular keywords, you should come to the top 3 SERP results withing about a month by searching for your top three keywords.  That means you will reach the top 30 results!</p>
<h2>#1 in the SERPS!</h2>
<p>Since Search Engine Results Pages were invented (even before they were called that!) everyone wanted to be ranked #1.  Obviously everyone cannot be #1!</p>
<p>So back then, they noticed that people who were on SERP #1 did best, but people on SERP #2 did well to.  Experts in SEO were born to advise people how to get and stay in the #1 spot.  Weaknesses were exploited and Search Engines evolved&#8230; So people started realizing that over the long run, <em>Content is King</em> and <em>do not worry about your <strong>exact</strong> SERP Rank</em>, just &#8220;aim for the first two SERP pages.&#8221;</p>
<h2>SERPs Today</h2>
<p>That same advice, slightly modified. continues today.</p>
<ul>
<li><strong>Content is King</strong></li>
<li>Aim for the First <strong>Three SERP Pages</strong> (Top 30 Results)</li>
</ul>
<p>Today Page Two of the SERP performs like page one did in the past.  In fact, with so much money being thrown into SEO, many people do not look at the first few results, or even skip the first SERP page entirely!</p>
<h2>SERP Three is the New Two</h2>
<p>Likewise SERP Page Three is not performing as well at sending traffic to a website as SERP Page Two did in the past.</p>
<p>So if you have an SERP Rank within the Top Thirty, be grateful, the Search Engine is sending people to your website!  You will notice the traffic!</p>
<p>That is a good time to start building meaningful links on other websites on the same topic.</p>
<h2>The Proof is in the SERPs!</h2>
<p>The old saying, &#8220;The proof of the pudding is in the eating!&#8221; still applies.  Here is an example of the above applied to the three keywords:</p>
<h2>Pizza Dog History</h2>
<p>Google <a title="Google Pizza Dog History" href="https://www.google.com.ph/#hl=en&amp;output=search&amp;sclient=psy-ab&amp;q=Pizza+Dog+History&amp;oq=Pizza+Dog+History&amp;gs_l=hp.12..0i22i30.2740.2740.1.4621.1.1.0.0.0.0.274.274.2-1.1.0.les%3B..0.0...1c..5.hp.eGDdpC40AsI&amp;psj=1&amp;bav=on.2,or.r_qf.&amp;bvm=bv.43287494,d.aGc&amp;fp=c0364ea2edc913d6&amp;biw=1280&amp;bih=591"><strong>Pizza Dog History</strong></a> (or just click the link) and look at the SERP.</p>
<p>Today (as of this writing) it shows:</p>
<h3 style="text-align: center;">&#8220;About 175,000,000 results&#8221;</h3>
<p>175 Million Results for the three keywords, &#8220;Pizza Dog History!&#8221;</p>
<h2 style="text-align: center;">Number One out of 175 Million</h2>
<p>Drum Roll Please&#8230; The Number One SERP Result is&#8230;</p>
<p style="text-align: center;"><strong><a title="Pizza Dog History" href="http://kjfuirkjvjvmnftihkjhfjncgdkhdkgmcmgdgdhgmbcmgdhdqwerty.ph2.biz/">kjfuirkjvjvmnftihkjhfjncgdkhdkgmcmgdgdhgmbcmgdhdqwerty.ph2.biz</a></strong></p>
<p>Remember what Most SEO Experts say?  ( Reviewing above&#8230; <em><strong>It may surprise you&#8230;</strong></em> )</p>
<ul>
<li>The Domain Name is the <strong><em>most important</em></strong>, it must have you <strong><em>main keyword</em></strong> and it <strong><em>must be short!</em></strong></li>
<li>It is critical you have a <em><strong>dot com!</strong></em></li>
<li><strong><em>Keywords don&#8217;t matter</em></strong> to search engines, they do not even read them!</li>
</ul>
<p>Obviously, someone forgot to tell these &#8220;SEO Rules&#8221; to Google!  The Proof is in the SERPs!</p>
<p>Amazingly, Bing returned the same site as #1 on their SRP, but with only &#8220;1,210,000 results!&#8221;  So we should assume, by the experts on the Internet, that Bing does not know the &#8220;SEO Rules&#8221; either!</p>
<p>It makes me wonder what Internet, or what Search Engine, these &#8220;Experts&#8221; are writing their &#8220;SEO Rules&#8221; for?</p>
<h2>Content Is Everything</h2>
<p>Well, in conclusion, I would like to remind you that content is everything!  Not only what you write, but your structure as well.  Spelling counts, in whatever language you write, so does grammar, capitalization and punctuation!  Making wise choices in your Meta Tags, Keywords, Title and Description will help move up up the SERPs!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2013/03/12/seo-in-meta-tags-meta-tags-for-serp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Philippine SWIFT Bank Codes &#8211; 2013</title>
		<link>http://alantait.net/2012/12/16/philippine-swift-bank-codes-2013/</link>
		<comments>http://alantait.net/2012/12/16/philippine-swift-bank-codes-2013/#comments</comments>
		<pubDate>Sat, 15 Dec 2012 23:51:12 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[Money]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1232</guid>
		<description><![CDATA[The SWIFT code is a standard format of Bank Identifier Codes (BIC) and it is unique identification code for a particular bank. Here is a list of SWIFT codes for the Philippines at the beginning of 2013. These codes are used for wire transfer of money into the Philippines. [...]]]></description>
			<content:encoded><![CDATA[<p>Below is a list of all the active Bank Identifier Codes (BIC) in the active SWIFT Network for banks in the Philippines at the beginning of 2013 (corrections welcome!).  This is a benefit to our Overseas Filipino Workers (OFWs).</p>
<h2>SWIFT CODE</h2>
<p><strong>SWIFT Code</strong> or <strong>BIC code</strong> are part of <strong>ISO 9362</strong> standards. It is a standard format of <strong>Business Identifier Codes (“BIC”)</strong>. BIC sometimes also refers to “Bank Identifier Code”.</p>
<p>SWIFT Code or BIC Code is a unique code to identify financial and non-financial institutions.  The SWIFT code is a standard format of Bank Identifier Codes (BIC) and it is unique identification code for a particular bank. These codes are mostly used when transferring money between banks, especially for international wire transfers or telegraphic transfer (“TT”).  These codes are also used in exchanging other messages between banks.</p>
<p><strong>For individual users</strong>, SWIFT Code normally used to transmit money across the international border.</p>
<p><span id="more-1232"></span>The SWIFT code consists of 8 or 11 characters. When 8-digits code is given, it refers to the primary office.</p>
<ul>
<li>First 4 characters &#8211; bank code (only letters)</li>
<li>Next 2 characters &#8211; ISO 3166-1 alpha-2 country code (only letters)</li>
<li>Next 2 characters &#8211; location code (letters and digits) (passive participant will have &#8220;1&#8243; in the second character)</li>
<li>Last 3 characters &#8211; branch code, optional (&#8216;XXX&#8217; for primary office) (letters and digits)</li>
</ul>
<p>Currently, there are over 7,500 “live” SWIFT codes. The &#8220;live&#8221; codes are for the partners who are actively connected to the SWIFT network. On top of that, there are more than 10,000 additional codes, which are used for manual transactions. These additional codes are for the passive participants.</p>
<p>The registrations of SWIFT Codes are handled by Society for Worldwide Interbank Financial Telecommunication (“SWIFT”) and their headquarters is located in La Hulpe, Belgium.</p>
<p>SWIFT is the registered trademarks of S.W.I.F.T. SCRL with a registered address at Avenue Adèle 1, B-1310 La Hulpe, Belgium.</p>
<h2>Philippines</h2>
<p>Below are the SWIFT codes for all banks in Philippines. These SWIFT codes are only the active participants who are connected to SWIFT network in the beginning of 2013. The passive participant’s codes are excluded from the list.</p>
<table id="t2" align="center">
<tbody>
<tr>
<th>No</th>
<th>Bank or Institution</th>
<th>City</th>
<th>Notes</th>
<th>Swift Code</th>
</tr>
<tr>
<td>1</td>
<td>ABN AMRO BANK NV, MANILA BRANCH</td>
<td>MANILA</td>
<td></td>
<td>ABNAPH2AXXX</td>
</tr>
<tr>
<td>2</td>
<td>ALLIED BANKING CORPORATION</td>
<td>MANILA</td>
<td></td>
<td>ABCMPHMMXXX</td>
</tr>
<tr>
<td>3</td>
<td>ASIA UNITED BANK CORPORATION</td>
<td>PASIG CITY</td>
<td></td>
<td>AUBKPHMMXXX</td>
</tr>
<tr>
<td>4</td>
<td>ASIAN DEVELOPMENT BANK</td>
<td>MANILA</td>
<td></td>
<td>ASDBPHMMXXX</td>
</tr>
<tr>
<td>5</td>
<td>AUSTRALIA AND NEW ZEALAND BANKING GROUP LIMITED</td>
<td>MANILA</td>
<td></td>
<td>ANZBPHMXXXX</td>
</tr>
<tr>
<td>6</td>
<td>BANCO DE ORO UNIBANK, INC.</td>
<td>MANDALUYONG</td>
<td></td>
<td>BNORPHMMXXX</td>
</tr>
<tr>
<td>7</td>
<td>BANGKO SENTRAL NG PILIPINAS</td>
<td>MANILA</td>
<td></td>
<td>PHCBPHMDXXX</td>
</tr>
<tr>
<td>8</td>
<td>BANGKO SENTRAL NG PILIPINAS</td>
<td>MANILA</td>
<td></td>
<td>PHCBPHMMXXX</td>
</tr>
<tr>
<td>9</td>
<td>BANGKOK BANK PUBLIC COMPANY LIMITED, MANILA BRANCH</td>
<td>MANILA</td>
<td></td>
<td>BKKBPHMMXXX</td>
</tr>
<tr>
<td>10</td>
<td>BANK OF AMERICA, N.A. MANILA</td>
<td>MANILA</td>
<td></td>
<td>BOFAPH2XXXX</td>
</tr>
<tr>
<td>11</td>
<td>BANK OF CHINA, MANILA BRANCH</td>
<td>MANILA</td>
<td></td>
<td>BKCHPHMMXXX</td>
</tr>
<tr>
<td>12</td>
<td>BANK OF COMMERCE</td>
<td>MANILA</td>
<td></td>
<td>PABIPHMMXXX</td>
</tr>
<tr>
<td>13</td>
<td>BANK OF THE PHILIPPINE ISLANDS</td>
<td>MANILA</td>
<td>TREASURY GROUP</td>
<td>BOPIPHMMTRY</td>
</tr>
<tr>
<td>14</td>
<td>BANK OF THE PHILIPPINE ISLANDS</td>
<td>MANILA</td>
<td></td>
<td>BOPIPHMMXXX</td>
</tr>
<tr>
<td>15</td>
<td>BANK OF TOKYO-MITSUBISHI UFJ, LTD., THE</td>
<td>MANILA</td>
<td>MANILA BRANCH</td>
<td>BOTKPHMMXXX</td>
</tr>
<tr>
<td>16</td>
<td>BDO PRIVATE BANK INC.</td>
<td>MANILA</td>
<td></td>
<td>BOPBPHMMXXX</td>
</tr>
<tr>
<td>17</td>
<td>BNP PARIBAS, MANILA OFFSHORE BRANCH</td>
<td>MANILA</td>
<td></td>
<td>BNPAPHMMXXX</td>
</tr>
<tr>
<td>18</td>
<td>CALYON</td>
<td>MANILA</td>
<td></td>
<td>CRLYPHMMXXX</td>
</tr>
<tr>
<td>19</td>
<td>CHINA BANKING CORPORATION</td>
<td>MANILA</td>
<td></td>
<td>CHBKPHMMXXX</td>
</tr>
<tr>
<td>20</td>
<td>CHINATRUST (PHILS.) COMMERCIAL BANK , MANILA</td>
<td>MANILA</td>
<td></td>
<td>CTCBPHMMXXX</td>
</tr>
<tr>
<td>21</td>
<td>CITIBANK SAVINGS INC.</td>
<td>QUEZON CITY</td>
<td></td>
<td>CITIPH2XXXX</td>
</tr>
<tr>
<td>22</td>
<td>CITIBANK,N.A., CEBU BRANCH</td>
<td>CEBU</td>
<td>CEBU BRANCH</td>
<td>CITIPHMXCBU</td>
</tr>
<tr>
<td>23</td>
<td>CITIBANK,N.A., MANILA BRANCH</td>
<td>MANILA</td>
<td>HEAD OFFICE</td>
<td>CITIPHMXXXX</td>
</tr>
<tr>
<td>24</td>
<td>CITIBANK,N.A., MANILA BRANCH</td>
<td>MANILA</td>
<td>IBG-TREASURY SERVICES UNIT</td>
<td>CITIPHMXTSU</td>
</tr>
<tr>
<td>25</td>
<td>DEUTSCHE BANK AG</td>
<td>MANILA</td>
<td></td>
<td>DEUTPHMMGMO</td>
</tr>
<tr>
<td>26</td>
<td>DEUTSCHE BANK AG</td>
<td>MANILA</td>
<td></td>
<td>DEUTPHMMXXX</td>
</tr>
<tr>
<td>27</td>
<td>DEVELOPMENT BANK OF THE PHILIPPINES</td>
<td>MANILA</td>
<td></td>
<td>DBPHPHMMXXX</td>
</tr>
<tr>
<td>28</td>
<td>EAST WEST BANKING CORPORATION</td>
<td>MANILA</td>
<td></td>
<td>EWBCPHMMXXX</td>
</tr>
<tr>
<td>29</td>
<td>EXPORT AND INDUSTRY BANK</td>
<td>MANILA</td>
<td></td>
<td>EAIBPHMMXXX</td>
</tr>
<tr>
<td>30</td>
<td>GE MONEY BANK, INC. (A SAVINGS BANK)</td>
<td>QUEZON CITY</td>
<td></td>
<td>GEMPPH2XXXX</td>
</tr>
<tr>
<td>31</td>
<td>HONGKONG AND SHANGHAI BANKING CORPORATION LIMITED, THE</td>
<td>CEBU</td>
<td>CEBU BRANCH</td>
<td>HSBCPHMMCEB</td>
</tr>
<tr>
<td>32</td>
<td>HONGKONG AND SHANGHAI BANKING CORPORATION LIMITED, THE</td>
<td>MANILA</td>
<td>CUSTODY AND CLEARING</td>
<td>HSBCPHMMSEC</td>
</tr>
<tr>
<td>33</td>
<td>HONGKONG AND SHANGHAI BANKING CORPORATION LIMITED, THE</td>
<td>MANILA</td>
<td>MNL TREASURY DEPARTMENT</td>
<td>HSBCPHMMTRY</td>
</tr>
<tr>
<td>34</td>
<td>HONGKONG AND SHANGHAI BANKING CORPORATION LIMITED, THE</td>
<td>MANILA</td>
<td></td>
<td>HSBCPHMMXXX</td>
</tr>
<tr>
<td>35</td>
<td>ING BANK N.V.</td>
<td>MANILA</td>
<td></td>
<td>INGBPHMMXXX</td>
</tr>
<tr>
<td>36</td>
<td>JPMORGAN CHASE BANK, N.A., MANILA BRANCH</td>
<td>MANILA</td>
<td>OFFHORE BANKING UNIT</td>
<td>CHASPHMMOBU</td>
</tr>
<tr>
<td>37</td>
<td>JPMORGAN CHASE BANK, N.A., MANILA BRANCH</td>
<td>MANILA</td>
<td>TELEX AND S.W.I.F.T. MESSAGE ENQUIRIES</td>
<td>CHASPHMMENQ</td>
</tr>
<tr>
<td>38</td>
<td>JPMORGAN CHASE BANK, N.A., MANILA BRANCH</td>
<td>MANILA</td>
<td>TEST KEY AND BKE ADMINISTRATION</td>
<td>CHASPHMMKEY</td>
</tr>
<tr>
<td>39</td>
<td>JPMORGAN CHASE BANK, N.A., MANILA BRANCH</td>
<td>MANILA</td>
<td></td>
<td>CHASPHMMXXX</td>
</tr>
<tr>
<td>40</td>
<td>KOREA EXCHANGE BANK</td>
<td>MANILA</td>
<td></td>
<td>KOEXPHMMXXX</td>
</tr>
<tr>
<td>41</td>
<td>LAND BANK OF THE PHILIPPINES</td>
<td>MANILA</td>
<td></td>
<td>TLBPPHMMXXX</td>
</tr>
<tr>
<td>42</td>
<td>MAYBANK PHILIPPINES, INC</td>
<td>MANILA</td>
<td></td>
<td>MBBEPHMMXXX</td>
</tr>
<tr>
<td>43</td>
<td>MEGA INTERNATIONAL COMMERCIAL BANK CO., LTD., MANIA BRANCH</td>
<td>MANILA</td>
<td></td>
<td>ICBCPHMMXXX</td>
</tr>
<tr>
<td>44</td>
<td>METROPOLITAN BANK AND TRUST CO.</td>
<td>MANILA</td>
<td></td>
<td>MBTCPHMMXXX</td>
</tr>
<tr>
<td>45</td>
<td>MIZUHO CORPORATE BANK, LTD., MANILA BRANCH</td>
<td>MANILA</td>
<td></td>
<td>MHCBPHMMXXX</td>
</tr>
<tr>
<td>46</td>
<td>PHILIPPINE BANK OF COMMUNICATIONS</td>
<td>MANILA</td>
<td></td>
<td>CPHIPHMMXXX</td>
</tr>
<tr>
<td>47</td>
<td>PHILIPPINE NATIONAL BANK</td>
<td>MANILA</td>
<td>TREASURY OPERATIONS DIVISION</td>
<td>PNBMPHMMTOD</td>
</tr>
<tr>
<td>48</td>
<td>PHILIPPINE NATIONAL BANK</td>
<td>MANILA</td>
<td></td>
<td>PNBMPHMMXXX</td>
</tr>
<tr>
<td>49</td>
<td>PHILIPPINE SAVINGS BANK</td>
<td>MANILA</td>
<td></td>
<td>PHSBPHMMXXX</td>
</tr>
<tr>
<td>50</td>
<td>PHILIPPINE VETERANS BANK</td>
<td>MANILA</td>
<td></td>
<td>PHVBPHMMXXX</td>
</tr>
<tr>
<td>51</td>
<td>PHILTRUST BANK (PHILIPPINE TRUST COMPANY)</td>
<td>MANILA</td>
<td></td>
<td>PHTBPHMMXXX</td>
</tr>
<tr>
<td>52</td>
<td>RIZAL COMMERCIAL BANKING CORPORATION</td>
<td>MANILA</td>
<td></td>
<td>RCBCPHMMXXX</td>
</tr>
<tr>
<td>53</td>
<td>SECURITY BANK CORPORATION</td>
<td>MANILA</td>
<td></td>
<td>SETCPHMMXXX</td>
</tr>
<tr>
<td>54</td>
<td>STANDARD CHARTERED BANK</td>
<td>MANILA</td>
<td>CUSTODIAL DEPARTMENT</td>
<td>SCBLPHMMEQI</td>
</tr>
<tr>
<td>55</td>
<td>STANDARD CHARTERED BANK</td>
<td>MANILA</td>
<td></td>
<td>SCBLPHMMXXX</td>
</tr>
<tr>
<td>56</td>
<td>TAIWAN COOPERATIVE BANK MANILA OFFSHORE BANKING BRANCH</td>
<td>MANILA</td>
<td></td>
<td>TACBPHMMXXX</td>
</tr>
<tr>
<td>57</td>
<td>THE ROYAL BANK OF SCOTLAND (PHILIPPINES), INC</td>
<td>MANILA</td>
<td></td>
<td>ABNAPHMMXXX</td>
</tr>
<tr>
<td>58</td>
<td>TONG YANG SAVINGS BANK INC.</td>
<td>MANILA</td>
<td></td>
<td>TYBKPHMMXXX</td>
</tr>
<tr>
<td>59</td>
<td>UNION BANK OF THE PHILIPPINES</td>
<td>PASIG CITY</td>
<td></td>
<td>UBPHPHMMXXX</td>
</tr>
<tr>
<td>60</td>
<td>UNITED COCONUT PLANTERS BANK</td>
<td>MANILA</td>
<td></td>
<td>UCPBPHMMXXX</td>
</tr>
<tr>
<td>61</td>
<td>UNITED OVERSEAS BANK PHILIPPINES</td>
<td>MANILA</td>
<td></td>
<td>UOVBPHMMXXX</td>
</tr>
</tbody>
</table>
<h2>Additions and Corrections Welcome</h2>
<p>We want this to be the most complete SWIFT Philippines list on the Internet, so if you have any corrections or additions, please post them and we will update this list. Thank You!</p>
<h2>Other Country SWIFT Codes</h2>
<p>Swift Codes for other countries may be found at:</p>
<p>http://www.theswiftcodes.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2012/12/16/philippine-swift-bank-codes-2013/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Money Matters</title>
		<link>http://alantait.net/2012/12/16/money-matters/</link>
		<comments>http://alantait.net/2012/12/16/money-matters/#comments</comments>
		<pubDate>Sat, 15 Dec 2012 22:06:00 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[Money]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1241</guid>
		<description><![CDATA[Need SWIFT codes for the Philippines? Need PayPal Bank Codes for the Philippines? The LAN/Money Category is used to put information that will benefit people with multinational connections. [...]]]></description>
			<content:encoded><![CDATA[<p>In my ongoing efforts to support the <a title="TuKod is To Code!" href="http://tukod.com/"><em>TuKod</em> Project</a> and the <a title="Money Making Entrepreneur" href="http://moneymakingentrepreneur.e143.net/"><em>Money Making Entrepreneur</em></a> I have added a new category called <strong><em>Money</em></strong>, under the <strong><em>LAN</em></strong> tab.</p>
<p>The Money category will be used to put information that will benefit people with multinational connections.  This will include Philippine SWIFT Bank Codes, Philippine PayPal Bank Codes, and other things related to the movement of money.</p>
<p>This is targeted mainly at Filipinos, both <a title="Overseas Filipino Workers" href="http://ofws.net/">OFWs</a> (Overseas Filipino Workers) and <a title="Online Filipino Workers" href="http://ofws.net/">OFWs</a> (Online Filipino Workers).<br />
<span id="more-1241"></span><br />
<h2>Other Countries</h2>
<p>Nonetheless many others around the globe can use this information as well to help them in the their money matters. I will try to include links to other resources for other countries as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2012/12/16/money-matters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Staying With Moniker &#8211; For Now!</title>
		<link>http://alantait.net/2012/08/10/staying-with-moniker-for-now/</link>
		<comments>http://alantait.net/2012/08/10/staying-with-moniker-for-now/#comments</comments>
		<pubDate>Fri, 10 Aug 2012 03:28:22 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[Moniker]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1196</guid>
		<description><![CDATA[Moniker Domains may need to improve their customer service, yet other issues are in play so that we have decided to stay with Moniker for the time being. [...]]]></description>
			<content:encoded><![CDATA[<p>This is the resolution of the <a title="Saga with Moniker" href="http://alantait.net/category/internet/moniker/">Saga with Moniker</a>.  I have decided to stay with Moniker, for the time being, and try to monitor Moniker on <a title="ⓀNoDaddy.com - Know Yo' Daddy! - Know your registrar and hosting companies before you give them your money!" href="http://knodaddy.com/kno-daddy-know-yo-daddy/">kNoDaddy.com</a>.  Here is a recap of the Month Long Saga with Moniker and the reasons I have decide to stay with them for the time being&#8230;</p>
<ul>
<li>Moniker was purchased, and started 2012 under new ownership.</li>
</ul>
<ul>
<li><span id="more-1196"></span>From January through July 2012, Moniker received and cashed 12 checks, only 7 were posted on my account.  Five checks, amounting to $530 had simply vanished.</li>
</ul>
<ul>
<li>About July 11th, after an audit, trouble complaints were filed via email and via Support Ticket.  The email included complete details including scans of both sides of the cashed checks.</li>
</ul>
<ul>
<li>Both trouble reports were marked as <span style="color: #ff0000;"><em><strong>&#8220;Closed as Junk&#8221;</strong></em></span>  These tickets have repeatedly been marked as <strong><em>&#8220;Closed&#8221;</em></strong> by a certain <span style="color: #ff0000;"><em>Shane Jackson</em></span> whom I believe is actually a robot with the soul purpose to send you repeated junk emails with no value and try to close trouble tickets without human intervention.  I have no solid evidence to the contrary.</li>
</ul>
<ul>
<li>Learning Don Lyons, my account rep, was no longer with Moniker, I opened a support ticket asking who was my account rep.  I received the message from a certain Jay Ruda at MySupport@moniker.com, and I quote:</li>
</ul>
<p style="text-align: center;"><span style="color: #0000ff;"><em>According to our sales territories Map, your account rep should be kevin Kopas.<br />
You can conatact Kevin at  :sales@moniker.com<br />
or call Outside the U.S. and Canada: 1-954-607-1294.</em></span></p>
<ul>
<li>Due to the typographical and spelling errors I was hopeful that Jay Ruda was a real person.  However, trying to &#8220;<em>conatact</em>&#8221; Kevin at that address just got me an auto responder messages from <a title="Moniker Email - Ridiculous Shane Jackson Robot?" href="http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/">The Ridiculous Shane Jackson Robot!</a></li>
</ul>
<ul>
<li>Trying again to get contact information for Kevin Kopas resulted in an email that began:</li>
</ul>
<p style="padding-left: 60px;"><span style="color: #0000ff;"><em>Dear Valued Customer,</em></span></p>
<p style="padding-left: 60px;"><span style="color: #0000ff;"><em>We are pleased to announce expanded phone support hours for Moniker!</em></span></p>
<p style="padding-left: 60px;"><span style="color: #0000ff;"><em><strong>This increased service level is effective immediately and includes our commitment to respond to all service tickets within 24 hours. </strong></em></span></p>
<ul>
<li>Little good is phone support for a hearing impaired person.  I could only assume the bolded message (it was bold in their email) meant <a title="Moniker Email - Ridiculous Shane Jackson Robot?" href="http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/">The Ridiculous Shane Jackson Robot!</a> would close any service ticket as <span style="color: #ff0000;"><em>&#8220;Closed as Junk&#8221;</em></span> within 24 hours!  It is possible they close as junk all service tickets, unless you complain about it being closed on their support system.  That was my current experience.</li>
</ul>
<ul>
<li>Continued service tickets and emails, as well as beginning to demand a real email address for Kevin Kopas, had not netted me a real response nearly two weeks later.  I will not bore you with all the back and forth to <a title="Moniker Email - Ridiculous Shane Jackson Robot?" href="http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/">The Ridiculous Shane Jackson Robot!</a> (see some of it below) but, needless to say, it randomly selected email telling me to check the address I sent the cashed checks to, check the payee I used on the cashed checks, about its wonderful new extended phone service, how I am able to pay with pay pal, how to use my credit card, and other worthless pieces of information not at all related to the the issue of five checks not being credited to my account, or that I had not responded to it or it closed my support ticket!</li>
</ul>
<ul>
<li>The day I dreaded finally arrived, three domains were due to expire because of lack of funds from Monikers mistake.  My experience was, GoDaddy had allowed my domains to expire and go dark, due to <em><span style="text-decoration: underline;">their mistake</span></em>, and I lost some domains, again do to the incompetence of GoDaddy.  Needless to say I highly recommend staying as far away from GoDaddy as possible!  It seemed to be happening again.  Moniker had cashed and received the funds to cover renewals for about 60 domain names, but three were expiring due to lack of funds. I was, no doubt, angry.  On the day they were to expire and go dark, I began monitoring.  The first three were not super important, actually domains for future projects, but coming up was a highly successful working domain.  I started to formulate a plan of action for my top domains&#8230;  But on the date in question, NONE OF MY DOMAINS WHEN DARK.</li>
</ul>
<ul>
<li>This was the first of the reasons I decided to stay with Moniker, for the time being.  Even after the official expiration date, they kept my domains resolving while the disputed payments were investigated.</li>
</ul>
<ul>
<li>I finally received an email from Kevin Kopas &lt;kevink@corp.moniker.com&gt; who basically handed me off to Navindra Manickchand &lt;navindram@corp.moniker.com&gt;  It said&#8230;</li>
</ul>
<p style="padding-left: 60px;"><span style="color: #0000ff;">I sincerely apologize for any confusion or problems you have been experiencing with Moniker.</span></p>
<p style="padding-left: 60px;"><span style="color: #0000ff;">I have cc’d Navin on this email. He is a great guy and can help you out with everything. He is your premium account manager.</span></p>
<ul>
<li>I&#8217;d been apologized to so much that it meant little or nothing.  Nonetheless, having real people respond was, I considered, a vast improvement!</li>
</ul>
<ul>
<li>Navin found the last check that had cleared my bank two weeks before, and had it credited to my account.  That was enough to renew all domains in danger and give me a little breathing room.  Less worried and less angry, Navin and I started working the problem and within a couple days the other July check was posted on my account as well as the June check.  Only the two January checks remained.</li>
</ul>
<ul>
<li>I received a lot more emails and stupid posts from <a title="Moniker Email - Ridiculous Shane Jackson Robot?" href="http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/">The Ridiculous Shane Jackson Robot!</a> trying to close the ticket we were working on.  Each time I would send back a post that the two January checks were still not posted on the Account.</li>
</ul>
<ul>
<li>Eventually, I guess this was bumped up to Marti Johnson (Direct telephone # &#8211; 1 954 861 3511, email &#8211;  martij@snapnames.com ).  He wrote and ask me to confirm the last two checks (in January) had not been posted with the check details the he included in his email.  I replied that his information was correct.  His email was obviously from a human, he spoke with authority, and he addressed the issue in question.</li>
</ul>
<p style="padding-left: 60px;">He began with:</p>
<p style="padding-left: 60px;"><span style="color: #0000ff;"><em>My name is Marti Johnson and I am the Sr. Customer Service Manager here at Moniker.</em></span></p>
<p style="padding-left: 60px;">And closed with:</p>
<p style="padding-left: 60px;"><span style="color: #0000ff;"><em>In addition, I want you to know that I apologize for the delay in resolving this and that I take your feedback very seriously and use it to improve our support.</em></span></p>
<p style="padding-left: 60px;"><em><span style="color: #0000ff;">We appreciate your business and I look forward to working with you.</span></em></p>
<ul>
<li>A few days later, Marti Johnson sent an email (dated: 8/8/2012 5:14 PM see below) which read:We have located the two checks and we will be funding your account with the 2 payments of $100.00 with the nest few hours.</li>
</ul>
<ul>
<li>I monitored the account the rest of the day and the following morning but nothing was credited.</li>
</ul>
<ul>
<li>This morning, Friday, August 10, 2012 at 4:46 AM Philippine time, Seven MONTHS and one day after Citibank had cleared the check, Marti Johnson of Moniker sent the following email that said:</li>
</ul>
<p style="padding-left: 60px;"><span style="color: #0000ff;"><em>The 2 missing payments of $100.00 each have been credited to your account.</em></span></p>
<ul>
<li>A few hours later, when I woke up and read the email, I was able to verify that, at last, ALL the missing checks that Moniker had received, cashed and had cleared my bank in the last 7+ months, had finally been posted to my account.  Thus ending <a title="The Saga of Moniker" href="http://alantait.net/category/internet/moniker/">The Saga of Moniker</a>.</li>
</ul>
<h2>Staying with Moniker</h2>
<p>During this crisis, I have repeatedly considered moving my most valuable domains, and even looked for suggestions on who would be a better Registrar for me.  Seven years ago, with domains going dark and domain names being lost at GoDaddy, I had considered the same thing.  People with similar problems had posted at NoDaddy.com (which has since sold our to GoDaddy).  So the Internet lost a valuable resource so GoDaddy can make more profit!  That is how I found Moniker.</p>
<p>Before this crisis, my wife and I had decided to replace NoDaddy.com with <a title="Know Your Resource Provider" href="http://knodaddy.com/">kNoDaddy.com</a>, with the theme of <a title="Know Yo' Daddy! - Know your registrar and hosting companies before you give them your money!" href="http://knodaddy.com/kno-daddy-know-yo-daddy/">Know Yo&#8217; Daddy</a>, or Know Your Resource Provider.  It will not be so much against GoDaddy, as it is a resource FOR Domain and and Website owners.  Hopefully we will not only attract horror stories about Black Hat domain Registrars and Hosting companies, we will also attract recommendations for the White Hat good guys!</p>
<p>With Monikers new owner, and especially now with Monikers old owner <em>out of the picture</em>, it is really a time to reevaluate the NEW company.  In stead of a knee jerk reaction to a very unnecessary case of frustration, I have decided to carefully evaluate the situation and see if there is a better registrar for my needs, or if it would be better to stay with Moniker.</p>
<h2>For the Time Being</h2>
<p>While I am evaluating my options, for the time being, I will accept Moniker&#8217;s explanation that the transfer to the new owner had created some problems that they are resolving.  When I transfer things it sometimes causes unexpected problems also.  So I will, for now, stay with Moniker and report back as things develop.</p>
<p>It might interest you to know why I am staying with Moniker even with all the trouble I have reported.  Beyond the obvious not wanting to go from the frying pan into the fire (or get someone worse like GoDaddy), there are specific things that have me convinced, for NOW to stay and see if they can really solve the problem.  Here are the reasons.</p>
<ol>
<li><strong>I buy and use domain names</strong>, about 140.  I do not buy and sell or trade domain names, if I did, Customer Support may be much more important to me.</li>
<li><strong>I basically do not need customer support.</strong>  All I need is a registrar to receive my payments, credit my account, and let me renew and register new domain names.  For five years Moniker&#8217;s interface has served me well.  In fact, in the middle of this Moniker Saga, I registered a few New domain names as well as renewing old ones.</li>
<li><strong>Nothing went dark.</strong>  This is a very big one for me.
<ul>
<li> At GoDaddy, they made an error and expected me to solve their problem by sending GoDaddy more non-refundable money.  Because I could not (it takes time for checks to clear, I do not use credit cards), they expired my domains and they went dark (off line) &#8211; remember, due to GoDaddy&#8217;s error.</li>
<li>Moniker somehow, was able to keep my domains alive and resolving while they were working on the problem.  With Moniker not one of my domains stopped working while they were resolving this, even though three domain names technically &#8220;expired&#8221; in the middle of this.  I am thankful for that!</li>
<li>Would another registrar do that?  GoDaddy does not! (Actually, GoDaddy seems to enjoy cutting people off for no reason at all!)</li>
</ul>
</li>
<li><strong>I lost no domain names.</strong>
<ul>
<li>During my fight with GoDaddy, they TOOK one of my most valuable domain names for themselves.  There are many reports of GoDaddy doing this.  I think they know you are going to leave because of their bad practices, and so they steal whatever they can &#8211; at least that is my opinion.  So I had to pay them a big fee to buy back my own domain name that I feel they stole from me.</li>
<li>Moniker did no such thing.  Although their customer support needs improvement (and they say they are working on it), I had not sites off line in the month they took to find their errors.</li>
</ul>
</li>
<li><strong>It took a month to resolve.</strong>  Now that may be a good reason to leave.
<ul>
<li>However, after six months of trying to get problems resolved at GoDaddy, NOTHING WAS RESOLVED until I left them and transferred to Moniker!  GoDaddy NEVER gave me really good service, just six months of pain, suffering and expense.</li>
<li>Moniker gave me five years of good service before they were bought out.  I only had one month of pain and suffering, but no expense as in direct monetary loss, and no sites down.</li>
</ul>
</li>
</ol>
<p>As you can see, having my domains up and working is the most important issue for me.  Moniker did not fail me in that area.  Likewise, Moniker did resolve the issue to my satisfaction.  The only other point I do not like about the new owners of Moniker, is <strong><em>they raised the prices</em></strong> (no only on me, it is well reported on the Internet).  But, I guess prices do go up and I do not know any other domain registrar whose prices are lower and keeps domains resolving (GoDaddy charges hidden fees and shuts down sites often, in my opinion).</p>
<p>So I plan to monitor Moniker and see if their service level gets back up to the level it used to be.  I will report in on <strong><a title="Know Yo' Daddy! - Know your registrar and hosting companies before you give them your money!" href="http://alantait.net/2012/07/24/moniker-the-dark-knight-rises-into-the-light/">ⓀNoDaddy.com</a></strong></p>
<p>Here are the last few emails, sanitized for my private information.</p>
<p>&#8212;&#8212;&#8212;- Forwarded message &#8212;&#8212;&#8212;-<br />
From: <strong>aLan Tait</strong> &lt;<a title="Lan Tait Live!" href="http://alantait.com/">aLanTait.com</a>&gt;<br />
Date: Fri, Aug 10, 2012 at 6:38 AM<br />
Subject: Re: We have not heard from you on the support case that you opened ref:<em><span style="color: #ff0000;">&lt;snip&gt;</span></em>:ref<br />
To: &#8220;MySupport@moniker.com&#8221; &lt;mysupport@moniker.com&gt;</p>
<p>Marti,</p>
<p>I was able to verify that my account has been credited this morning.  Thank you for resolving this issue.</p>
<p>This closes this case.</p>
<p>Sincerely,</p>
<p>Lan</p>
<p>&nbsp;</p>
<p>On Fri, Aug 10, 2012 at 4:46 AM, MySupport@moniker.com &lt;<a href="mailto:mysupport@moniker.com" target="_blank">mysupport@moniker.com</a>&gt; wrote:<br />
Lan</p>
<p>The 2 missing payments of $100.00 each have been credited to your account.</p>
<p>Again thanks for your patience and we appreciate your business.</p>
<p>Please let me know if this now resolves the issue to your complete satisfaction.</p>
<p>Best Regards,<br />
Marti Johnson<br />
&#8212;&#8212;&#8212;&#8212;&#8212; Original Message &#8212;&#8212;&#8212;&#8212;&#8212;<br />
From: Moniker Snapnames Support [<a href="mailto:monikersnapnames@corp.moniker.com">monikersnapnames@corp.<wbr>moniker.com</wbr></a>]<br />
Sent: 8/8/2012 5:14 PM<br />
To: <a title="Money Making Entrepreneur!" href="http://moneymakingentrepreneur.e143.net/">Money Making Entrepreneur!</a><br />
Subject: Re: We have not heard from you on the support case that you opened ref:<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span>:ref</p>
<p>Lan,</p>
<p>We have located the two checks and we will be funding your account with the 2 payments of $100.00 with the nest few hours.</p>
<p>Again I apologize for the delay in this matter and we appreciate business.</p>
<p>Regards,</p>
<p>Marti Johnson</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212; Original Message &#8212;&#8212;&#8212;&#8212;&#8212;<br />
From: aLan Tait [<a title="New Life, Better Living!" href="http://newliphe.org/">New LipHe (New Life)</a>]<br />
Sent: 8/7/2012 7:20 PM<br />
To: <a href="mailto:monikersnapnames@corp.moniker.com">monikersnapnames@corp.moniker.<wbr>com</wbr></a><br />
Subject: Re: We have not heard from you on the support case that you opened ref:<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span>:ref</p>
<p>Still waiting for your accounting department to find their errors.</p>
<p>Hello, how is the Shane Jackson Robot!  (see Moniker Email &#8211; Ridiculous<br />
Shane Jackson Robot?&lt;<a href="http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/" target="_blank">http://alantait.net/<wbr>2012/07/21/moniker-email-<wbr>ridiculous-shane-jackson-<wbr>robot/</wbr></wbr></wbr></a>&gt;<br />
)</p>
<p>I posted the below to Marti, I am hoping he is a real person.</p>
<p>Lan Tait</p>
<p>Hello Marti,</p>
<p>Yes, this is correct.  Two of the three payments that cleared in January<br />
were never credited to my account.  The missing two are:</p>
<p>Check #<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span> $ 100.00 Cleared On 01-09-2012<br />
Check #<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span> $ 100.00 Cleared On 01-12-2012</p>
<p>Here I have copy and pasted the details from my account on the Citibank<br />
website:</p>
<p>=====<br />
Merchant Name:MONIKER ONLINE SERVICES<br />
Amount:$ 100.00 (Paid by check)<br />
Payment Date:01-01-2012<br />
Trace/Check Number:0000000<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span><br />
Reference Number:<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span>69<br />
Status:Cleared On 01-09-2012<br />
=====<br />
Merchant Name:MONIKER ONLINE SERVICES<br />
Amount:$ 100.00 (Paid by check)<br />
Payment Date:01-06-2012<br />
Trace/Check Number:0000000<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span><br />
Reference Number:<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span>70<br />
Status:Cleared On 01-12-2012<br />
=====</p>
<p><span style="color: #ff0000;"><em>&lt;snip&gt;</em></span></p>
<p>Sincerely,</p>
<p>Lan Tait</p>
<p><a title="TuKod is To Code!" href="http://tukod.com/">TuKod is To Code</a></p>
<p>aLan Tait<br />
Account:<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span></p>
<p>On Sat, Aug 4, 2012 at 12:28 AM, Moniker Snapnames Support &lt;<br />
<a href="mailto:monikersnapnames@corp.moniker.com">monikersnapnames@corp.moniker.<wbr>com</wbr></a>&gt; wrote:</p>
<p>&gt; We have not heard from you on the support case that you opened,<br />
&gt; Case # <span style="color: #ff0000;"><em>&lt;snip&gt;</em></span>526   |   Subject: Four checks cleared Citibank but not posted<br />
&gt; on Moniker. in 48 hours.<br />
&gt;<br />
&gt; I wanted to follow up with you on this case to see if your issue has<br />
&gt; resolved or if there is anything further that we can do to assist you.<br />
&gt;<br />
&gt; Please let me know if this case is resolved or if I can assist in any<br />
&gt; further way.<br />
&gt;<br />
&gt; If you would like to close this case, please click here&lt;http://snapnames.force.<wbr>com/closecase?eid=<wbr><span style="color: #ff0000;"><em>&lt;snip&gt;</em></span>&gt;.<br />
&gt;<br />
&gt;<br />
&gt;<br />
&gt; Thanks,<br />
&gt;<br />
&gt; Shane Jackson</wbr></wbr></p>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2012/08/10/staying-with-moniker-for-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moniker: The Saga Continues!</title>
		<link>http://alantait.net/2012/08/08/moniker-the-saga-continues/</link>
		<comments>http://alantait.net/2012/08/08/moniker-the-saga-continues/#comments</comments>
		<pubDate>Wed, 08 Aug 2012 02:49:03 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[Moniker]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1192</guid>
		<description><![CDATA[Here is the latest in the continued (endless?) communication between Moniker Support, about the checks Moniker has received, cashed and cleared the bank this year, since they were bought out, but have not credited to my account. [...]]]></description>
			<content:encoded><![CDATA[<p>This year. since the take over of Moniker, they have cashed 12 of my checks, only five were credited to my account before I complained.  (read <a title="Moniker: The Beginning or the End?" href="http://alantait.net/2012/07/20/moniker-the-beginning-or-the-end/">Moniker: The Beginning or the End?</a>)  After weeks of complaining, they credited the last three of the five (from the last 2 months).  Two are still outstanding at the time of the writing of this post.</p>
<p>After a few days off, taking care of my health, I opened my email and found that <a title="The Saga Continues At Moniker" href="http://alantait.net/category/internet/moniker/">The Saga Continues At Moniker</a>.</p>
<p><span id="more-1192"></span>I had emails from Moniker, both from the Ridiculous Shane Jackson Robot and from a new player, Marti Johnson!</p>
<p>The email from the <a title="Moniker Email - Ridiculous Shane Jackson Robot?" href="http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/">Ridiculous Shane Jackson Robot</a> informed me that because I had not contacted it (obviously a robot should not be called he) it within the last 48 hours (and one second) that it was closing my trouble ticket (again) without it doing anything (again).  It does that you know, it tells you to wait while it works things out, and then it closes your trouble ticket while you are waiting for it to find its error! (And of course, it keeps your money!)  I am, needless to say, not happy with Moniker&#8217;s system and really hope they make some real changes they (it?) keep promising.</p>
<p>Giving Marti Johnson the benefit of the doubt about being human (he did address me as Alan!), he still wrote from the robot&#8217;s email address.  No new information, he just asked me to confirm what I have confirmed over and over and over and over and over and over again (I think it was at least six times!).  Of course I confirmed it again&#8230;</p>
<p>Here is the sanitized email:</p>
<p>&#8212;&#8212;&#8212;- Forwarded message &#8212;&#8212;&#8212;-<br />
From: <strong>MySupport@moniker.com</strong> &lt;mysupport@moniker.com&gt;<br />
Date: Mon, Aug 6, 2012 at 10:32 PM<br />
Subject: Lost Checks [ ref:_<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span> ]<br />
To: <span style="color: #ff0000;"><em>&lt;snip&gt;</em></span></p>
<p>Alan</p>
<p>My name is Marti Johnson and I am the Sr. Customer Service Manager here at Moniker.</p>
<p>I tried to reach you by telephone but could not.<br />
I want to let you know that I will be following &#8211; up on the lost checks that you refer to. It appears that there are two that have not been accounted for &#8211;<br />
Check #<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span> $ 100.00 Cleared On 01-09-2012<br />
Check #<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span> $ 100.00 Cleared On 01-12-2012</p>
<p>Could you please confirm this?</p>
<p>In addition, I want you to know that I apologize for the delay in resolving this and that I take your feedback very seriously and use it to improve our support.</p>
<p>We appreciate your business and I look forward to working with you.</p>
<p>Marti Johnson<br />
Direct telephone # &#8211; <a href="tel:1%20954%20861%203511">1 954 861 3511</a><br />
email &#8211;  <a href="mailto:martij@snapnames.com">martij@snapnames.com</a></p>
<p>ref:<span style="color: #ff0000;"><em>&lt;snip&gt;</em></span>:ref</p>
<p>=====</p>
<p>Above is the latest in the continued (endless?) communication between Moniker Support, about the checks Moniker has received, cashed and cleared the bank this year, since they were bought out, but have not credited to my account.</p>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2012/08/08/moniker-the-saga-continues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moniker: The Dark Knight Rises Into The Light!</title>
		<link>http://alantait.net/2012/07/24/moniker-the-dark-knight-rises-into-the-light/</link>
		<comments>http://alantait.net/2012/07/24/moniker-the-dark-knight-rises-into-the-light/#comments</comments>
		<pubDate>Tue, 24 Jul 2012 03:31:19 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Moniker]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1175</guid>
		<description><![CDATA[<p>This morning I woke to the first glimmer of hope on the problems with the domain registrar, Moniker. I call this, &#8220;Moniker: The Dark Knight Rises Into The Light!&#8221; Of the five checks I have previously reported, that Moniker cashed, but neglected to credit to my account in the last seven months, the last one [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I woke to the first glimmer of hope on the problems with the domain registrar, Moniker.  I call this, &#8220;Moniker: The Dark Knight Rises Into The Light!&#8221;  Of the five checks I have previously reported, that Moniker cashed, but neglected to credit to my account in the last seven months, the last one was finally credited!  This allowed me to redeem the domains that had expired, namely:</p>
<h2>KiwiDiveResort.com</h2>
<p>The Long Standing Website of the Beautiful <strong><a title="Kiwi Dive Resort - Sandugan Beach, Siquijor Island, Philippines" href="http://kiwidiveresort.com/">Kiwi Dive Resort &#8211; Sandugan Beach, Siquijor Island, Philippines</a></strong>.</p>
<h2>Fyuel.com</h2>
<p><strong><a title="FYUEL ~ For Your Ultimate Earthly Life!" href="http://fyuel.com/">FYUEL ~ For Your Ultimate Earthly Life!</a> </strong> A site for recipes about mostly &#8220;Eating Without Heating!&#8221;  How to live a better life by design.  Humans have a design and this site is about putting that design into action in a better life.  <em>( Update: Oops, my Honeybun reported this was not actually one of the sites in danger, but I already made the entry, so I will not change it! )</em></p>
<h2>TKJV.org</h2>
<p>The <strong><a title="Translators King James Version of The Bible!" href="http://tkjv.org/">Translators King James Version</a></strong> &#8211; soon set to be the first crowd sourced Bible.  The site is under construction and is being readied.  This project is to allow additional working translations of the Bible in remote areas using a common dictionary and the TKJV Bible.</p>
<h2>R143.net &amp; Y143.net</h2>
<p>Two of the 26 domains being readied (coming soon!) for <strong>&#8220;<a title="Domain Name Solution - I Love You!" href="http://dns143.net/">Domain Name Solution &#8211; I Love You!</a>&#8220;</strong> (DNS143.Net).  This is a <em>New Concept</em> in helping small business and persons with a message to gain access to publishing on the Internet.</p>
<h2>pHlife.org</h2>
<p>The future site of a combination of <strong><a title="Philippine Life (Ph Life) and the Healthy pH Life!" href="http://phlife.org/">Philippine Life (Ph Life) and the Healthy pH Life!</a></strong></p>
<h2>Dark Night</h2>
<p>Although most of these are new projects, that could have gone &#8220;dark night&#8221; for a few days without much loss, <a title="Kiwi Dive Resort - Sandugan Beach, Siquijor Island, Philippines" href="http://kiwidiveresort.com/">Kiwi Dive Resort</a> has been, and is, an alive and active website for more than a dozen years!</p>
<h2>The Moniker Phoenix</h2>
<p>Like a Moniker Phoenix, it seems the Dark Night became a Dark Knight this morning.  One of the payments was added to my account, enabling me to renew the expiring domain names.  To Monikers credit, all the domain names were still resolving this morning, although some of them were marked as expired on July 16, eight days ago.  Perhaps Moniker kept them alive while they  are researching the missing payments.  It was a huge relief to have these secure.</p>
<h2>Staying on Board</h2>
<p>In the last four years prior to 2012 Moniker has provided me a good quality Domain Registrar services.  I do not require much or any support as long as things work as they should (payments are credited, etc.).  I am hoping this is just a glitch, perhaps from being purchased by KeyDrive and adapting their system.</p>
<h2>Too Early To Say</h2>
<p>I guess it is still too early to say if I will stay with Moniker or not.  On the one hand, Moniker&#8217;s mistake did not cause any of my domains to go Dark.  Not at all like GoDaddy did when I left them.  I would NEVER recommend GoDaddy to anyone for anything, but I could see my way to recommend Moniker again, IF they they correctly post these four additional payments AND if they take substantial steps to make necessary changes to prevent errors like this from happening again.</p>
<h2>On A Positive Note</h2>
<p>Closing on a Positive Note: Comparing Moniker to GoDaddy (coming soon the revival of NoDaddy.com with the new domain name kNoDaddy.com &#8211; <strong><a title="Know Yo' Daddy! - Know your registar and hosting compaines before you give them your money!" href="http://knodaddy.com/">Know Yo&#8217; Daddy!</a></strong> ).  In fairness, Moniker never lost any of my domain names &#8211; GoDaddy did.  Moniker never caused any of my websites to go dark &#8211; GoDaddy did!  This caused me some time and frustration to get them to look at the problem &#8211; but it did not cost me actual dollars, page views, loss of a valuable domain name, or even other more valuable things.  If Moniker can improve their accounting system, then maybe it will be worth staying with them.</p>
<h2>Looking to the Future</h2>
<p>Because Moniker finally posted one of the multitude of payments, I was also able to purchase two domains I have noticed and wanted to buy.</p>
<h2>RAWite.com</h2>
<p>The RAW revolution is growing.  RAWite (pronounced RAW-ite or perhaps Right!) is for them.  Eating the Right (RAWite) way is eating by design!  Eating Rich &#8211; Amino &#8211; Whole Fyuel (seed-plant based food) is so healthy even President Clinton is now plant sourcing his food!  The RAW food movement takes this further to the beginning of the design of humans.  <a title="The RAW revolution is growing.  Become a RAWite today!" href="http://rawite.com/"><strong>Become a RAWite Today!</strong></a></p>
<h2>Balingasag.org</h2>
<p>Last month I have a wonderful vacation in <strong><a title="Balingasag, Misamis Oriental, Philippines" href="http://balingasag.org/">Balingasag, Misamis Oriental, Philippines</a></strong>.  I have had vacations all over the world, on every continent, but this was perhaps the best vacation I have ever had in my life!  I have decided to help the people of Balingasag develop a website for people who would like to visit this wonderful place!</p>
<h5 style="text-align: center;">=========</h5>
<h5 style="text-align: center;">More Post about this problem with Moniker can be found in the category <a title="Moniker Problems" href="http://alantait.net/category/moniker/">Moniker!</a></h5>
<p style="text-align: center;">I plan to post daily reports about this problem with Moniker, as a way to vent my deep frustration with what they are doing to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2012/07/24/moniker-the-dark-knight-rises-into-the-light/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No WWW &#8211; Better SEO!</title>
		<link>http://alantait.net/2012/07/21/no-www-better-seo/</link>
		<comments>http://alantait.net/2012/07/21/no-www-better-seo/#comments</comments>
		<pubDate>Sat, 21 Jul 2012 03:53:31 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[BlogSpot]]></category>
		<category><![CDATA[BlogSpot - SEO]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHPBB3 - SEO]]></category>
		<category><![CDATA[Websites - SEO]]></category>
		<category><![CDATA[WordPress - SEO]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1155</guid>
		<description><![CDATA[<p>For some time now I have been just dropping the WWW in websites, like www.NewLiphe.org. I just type in NewLiphe.org and see what happens, 99% of the time I arrive safely or an redirected to the www version.</p> <p>However, this www. takes up time, and space, and has no real computer or network use. It [...]]]></description>
			<content:encoded><![CDATA[<p>For some time now I have been just dropping the WWW in websites, like www.NewLiphe.org.   I just type in NewLiphe.org and see what happens, 99% of the time I arrive safely or an redirected to the www version.</p>
<p>However, this www. takes up time, and space, and has no real computer or network use.  It is a waste of time.  It slows things down and it wastes full hard-drives of space!</p>
<p><span id="more-1155"></span>Instead of redirecting:</p>
<p><a title="New Life, Better Living!" href="http://newliphe.org/">NewLiphe.org</a> to www.NewLiphe.org</p>
<p>I propose that we should redirect:</p>
<p>www.NewLiphe.org to NewLiphe.org</p>
<p>This would likely result in trillions of bytes all over the world being freed up.  For example, in bookmarks!  Likewise, in the transmission paths.  Everywhere you look there are extra and unneeded www&#8217;s!</p>
<p>I have been thinking about how to do this &#8211; 301 redirect the www version of any website to the non www version.</p>
<h2>.htaccess</h2>
<p>Now those who follow me, know I do not like to put a bunch of stuff in .htaccess.  In fact, I think .htaccess works better if it is almost empty.  But this is one of those rare occasions in which .htaccess is likely the best place to handle this.</p>
<h2>Cut and Paste</h2>
<p>Well I went to the Internet to look for such a code.  Immediately I found hard coded versions.  Meaning you would have to copy it, modify it for your site, and then add it to your .htaccess.  That modification process is hard for people.  There are also people like me who have one .htaccess for a lot of different domains and sub-domains.  Meaning I would have to add hundreds of lines to my .htaccess, not at all acceptable.  I needed a short code people could just simply cut and paste.  Quick and easy&#8230;</p>
<p>I did find one that went from no www to www automatically, but that was opposite what I wanted to do.  So I cracked the Apache books once again and looked for my own solution.</p>
<h2>PHP</h2>
<p>Before I did that, I looked at a php solution&#8230;  This may be all that is needed for some people.  If you site always goes through one page, for example a WordPress site, you could just find the php for the index.php and add this to the top&#8230;</p>
<pre>&lt;?php
  if (substr($_SERVER['HTTP_HOST'], 0, 4) === 'www.') {
    header('Location: http'.(isset($_SERVER['HTTPS']) &amp;&amp; $_SERVER['HTTPS']=='on' ? 's':'').'://' . substr($_SERVER['HTTP_HOST'], 4).$_SERVER['REQUEST_URI']);
    exit;
  }
?&gt;</pre>
<p>Because everything goes through index.php, then all www.&#8217;s will be 301 redirected to non-www.&#8217;s.</p>
<h2>The .htaccess Code</h2>
<p>If you can add code to your .htaccess file, this is perhaps the cleanest way to forward www. to non-www.</p>
<pre>RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]</pre>
<p>This is a short code you copy and paste into any .htaccess on any domain. It evaluates you domain name in the RewriteCond line, keeping everything except the &#8220;www.&#8221; Then in the RewriteRule, it sends you off to the new address, complete with all directories, files, etc. However, without the www.</p>
<h2>Windows Server</h2>
<p>I can already hear some of you asking. Ok, that works for Unix, but how do you do this in a Windows Server?  So here is the best piece of advice anyone will give you on this subject&#8230;  IF you are serious about your website&#8230;  IF you are really trying to get out your message&#8230; IF you are trying to make money online&#8230; IF you want the BEST SEO Possible&#8230; Then switch to a different, non-windows, server.  I would HIGHLY RECOMMEND that you switch to a server based on Ubuntu or FreeBSD and uses Apache.  You will be very glad you did and you SEO will jump also.</p>
<h2>Better SEO</h2>
<p>Were you aware of the Internet change that gives better SEO to websites that do NOT use the www?  It saves the search engines trillions of bytes of storage and transmission costs (remember that Google dropped the &lt;/html&gt; at the end of returned pages to save those few bytes, multiplied by billions of pages a day, that is a lot of savings.  So is losing the www.</p>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2012/07/21/no-www-better-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moniker Email &#8211; Ridiculous Shane Jackson Robot?</title>
		<link>http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/</link>
		<comments>http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/#comments</comments>
		<pubDate>Sat, 21 Jul 2012 00:36:58 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Moniker]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1144</guid>
		<description><![CDATA[HELP! The Ridiculous Shane Jackson Robot at moniker is just frustration for anyone emailing to mysupport@moniker.com, support@moniker.com, or sales@moniker.com. [...]]]></description>
			<content:encoded><![CDATA[<p>Since the purchase of Moniker by KeyDrive in January 2012, a number of problems have come to light in their support system.  I have never used Moniker support before (with old Moniker I never had a reason to!).  But I am now in the middle of trying to save my domains while trying to get the attention of anyone at Moniker&#8230;  Read about it at: <a title="Moniker: The Beginning or the End?" href="http://alantait.net/2012/07/20/moniker-the-beginning-or-the-end/">Moniker: The Beginning or the End?</a></p>
<p><span id="more-1144"></span>Today I am going to deal with an email I received this morning&#8230;</p>
<p>======= Start Email from Moniker =======</p>
<p>&#8212;&#8212;&#8212;- Forwarded message &#8212;&#8212;&#8212;-<br />
From: <strong>MySupport@moniker.com</strong> &lt;mysupport@moniker.com&gt;<br />
Date: Sat, Jul 21, 2012 at 6:18 AM<br />
Subject: Case &lt;snip&gt;: Four checks cleared Citibank but not posted on Moniker.<br />
To: &lt;snip&gt;</p>
<p>Moniker Account number: &lt;snip&gt;</p>
<p>Hi aLan,</p>
<p>Thank you for contacting us.</p>
<p>What was the 5th check number, amount and date? Also, where did you email these checks to?</p>
<p>Thank you,<br />
Shane Jackson</p>
<p>Supporting Moniker, SnapNames</p>
<p>======= End Email from Moniker =======</p>
<p>When I read this, I thought of how ridiculous this email was.  So here was my reply&#8230;</p>
<p>================</p>
<p>Hello Shane Jackson,</p>
<p>Below is the information you requested, highlighted in yellow.  I copy and pasted it off of the Moniker Support from FOUR DAYS AGO.  This now means that in the last two weeks two checks have cleared moniker.  Can you not look at these as FIVE different cases of Trouble and post a check you received and cleared in the last Two Weeks?</p>
<p>Lan Tait</p>
<p>================</p>
<p>I then posted the requested information, copied directly from the Moniker support site, information Moniker has had for four days!</p>
<h2>Moniker the Robot!</h2>
<p>As I thought about this, I started to think the Shane Jackson may not be an actual person.  Perhaps &#8220;he&#8221; is just a robot!  This information looked surprisingly like the other information he sent me, advising me where to send checks&#8230; Take a look for yourself at <a title="Moniker: The Beginning or the End?" href="http://alantait.net/2012/07/20/moniker-the-beginning-or-the-end/">Moniker: The Beginning or the End?</a></p>
<p>Amazingly the last 12 checks, all in 2012, were all mailed to the same address, the address that the Shane Jackson robot told me to mail it to, and the same address I replied and told him all checks were mailed to and the same address the Shane Jackson robot now is asking me where I mailed the checks &#8211; even though I already told him that is where I mailed the checks, in both support trax and in email!  So I am starting to think the Shane Jackson robot is NOT HUMAN!</p>
<p>Moniker Robot Cashed the Checks</p>
<p>Now each check was sent by the Citibank Computer Robot to the same payee (that Moniker demands), to the same address (that the Shane Jackson Robot wrote, and were deposited in the same Moniker account, endorsed the same way on the back of the check (see <a title="Moniker: The Beginning or the End?" href="http://alantait.net/2012/07/20/moniker-the-beginning-or-the-end/">Moniker: The Beginning or the End?</a> to view one of the checks yourself), and cleared Citibank in exactly the same way.  In other words, of the 12 checks Moniker received, and cashed, exactly the same way, they posted seven!  Five checks to the same payee (remember robots do the same thing always, like the Shane Jackson Robot always used aLan and not Alan or Lan like a human would!), and the Citibank robot sent them to the same address and they were cashed in the same Moniker account!  But Moniker only credited 7 of the 12!</p>
<h2>Further Robot Proof</h2>
<p>As I pondered this thought about the Shane Jackson robot at Moniker (does anyone else get silly [Ridiculous] messages from the Shane Jackson Robot?), I started to look for other signs this was in fact a computer at Moniker and not a human.  The human factor was staring me right in the face.</p>
<p>My name in Monikers computer is &#8220;aLan Tait&#8221;.  Notice above that I sign my name as Lan Tait.  When humans see this, they do one of two things&#8230; Either they address me as I sign, Lan Tait, or they correct my &#8220;obvious punctuation error&#8221; and address me as Alan Tait.  Lan or Alan is what <strong>REAL HUMANS</strong> do.  But this fouls up computers.  Computers take whatever you input, aLan, and mimic or parrot it back to you.  For example, when I login to Moniker, it says right there&#8230;</p>
<h2>Welcome:aLan Tait</h2>
<p>Obviously, some Moniker programer forgot a space between the &#8220;Welcome:&#8221; and the first name variable!  But anyway, there it is, the mimic or parrot of what I typed, aLan.</p>
<h2>Moniker&#8217;s Shane Jackson Robot</h2>
<p>This is why I have started to believe Shane Jackson is a Robot and NOT A HUMAN.  Because Humans use Lan or Alan &#8211; it is <em><strong>Human Nature</strong></em>, and the Shane Jackson Robot ALWAYS used aLan &#8211; <strong><em>NO human is that perfect!</em></strong></p>
<p>Lack of any proof to the contrary, I am now believing that <strong>ALL</strong> my messages to Moniker have never reached another human being!  That is why there are no email addresses to account reps.  What a joke, but I am totally unsuccessful at reaching they account rep, Kevin, they say I have.  I know that sounds a little paranoid or ridiculous, but if you logically consider the FACTS, the only logical conclusion is that&#8230;</p>
<h2 style="text-align: center;"><em><span style="color: #ff0000;"> NO HUMANS WORK AT MONIKER!</span></em></h2>
<p>At least wise, none that I have been able to make contact with!  I can almost guarantee that emailing support@moniker.com, mysupport@moniker.com, or sales@moniker.com will <span style="text-decoration: underline;"><strong>Not</strong></span> be read my a human.  You will receive a number of emails asking you the same information.  Or automatic emails telling to to email them again (and get another automatic email).</p>
<p>I have been reading about the <span style="text-decoration: underline;"><strong>BAD</strong></span> support at Moniker, but at this point in time, I am waiting to see <span style="text-decoration: underline;"><strong>ANY</strong></span> support at Moniker.</p>
<p>So Ok Moniker, how about email from a REAL HUMAN that does not go to one of the email addresses that only computers answer.  How about posting here?  Below!  From a REAL Human?  That is going to be kind of hard for a computer to do.</p>
<h5 style="text-align: center;">==========</h5>
<h5 style="text-align: center;">More Post about this problem with Moniker can be found in the category <a title="Moniker Problems" href="http://alantait.net/category/moniker/">Moniker!</a></h5>
<p style="text-align: center;">I plan to post <del>daily</del> reports <em><span style="color: #ff0000;">often enough</span></em> about this problem with Moniker, as a way to vent my deep frustration with what they are doing to me.</p>
<h2>Moniker Robot Again</h2>
<p>After sending the Shane Jackson Robot copies of what had been posted on the Moniker Support ticket, I received the below email.  Doesn&#8217;t it make you wonder why they had to WAIT A WEEK to look into the first four missing checks (that they had complete information about) until AFTER they cashed the Fifth check?</p>
<p>Well, I have instructed my Citibank Robot to not send them any more checks &#8211; pending the outcome of Moniker fixing their bad accounting practices&#8230;  Here is the junk email I received from the Shane Jackson Robot&#8230;  Note (in red) the name is not Lan like I sign my email, and not Alan, which every real human that uses (that does not use Lan).  In fact, the Shane Jackson Robot continues to identify itself because it can only use the &#8220;aLan&#8221; that is in the first name variable!  Shane Jackson is almost assuredly a computer Robot!</p>
<p>If it looks like a robot, and it acts like a robot, and it has a perfect mimic or parrot like a robot, what is it?</p>
<p>======= Start Email from Moniker =======</p>
<p>&#8212;&#8212;&#8212;- Forwarded message &#8212;&#8212;&#8212;-<br />
From: <strong>MySupport@moniker.com</strong> &lt;mysupport@moniker.com&gt;<br />
Date: Sat, Jul 21, 2012 at 7:01 AM<br />
Subject: Case &lt;snip&gt;: Four checks cleared Citibank but not posted on Moniker.<br />
To: &lt;snip&gt;</p>
<p>Moniker Account number: &lt;snip&gt;</p>
<p>Hi <span style="color: #ff0000;">aLan</span>,</p>
<p>Thank you for contacting us.</p>
<p>Thanks for the information, we will research what happen and follow up with you on Monday.</p>
<p>Thank you for your patience,<br />
Shane Jackson</p>
<p>Supporting Moniker, SnapNames</p>
<p>======= End Email from Moniker =======</p>
<p>&nbsp;</p>
<h5 style="text-align: center;">==========</h5>
<h5 style="text-align: center;">More Post about this problem with Moniker can be found in the category <a title="Moniker Problems" href="http://alantait.net/category/moniker/">Moniker!</a></h5>
<p style="text-align: center;">I plan to post <del>daily</del> reports <em><span style="color: #ff0000;">often enough</span></em> about this problem with Moniker, as a way to vent my deep frustration with what they are doing to me.</p>
<h2></h2>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2012/07/21/moniker-email-ridiculous-shane-jackson-robot/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Moniker: The Beginning or the End?</title>
		<link>http://alantait.net/2012/07/20/moniker-the-beginning-or-the-end/</link>
		<comments>http://alantait.net/2012/07/20/moniker-the-beginning-or-the-end/#comments</comments>
		<pubDate>Fri, 20 Jul 2012 02:13:30 +0000</pubDate>
		<dc:creator>Lan</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Moniker]]></category>

		<guid isPermaLink="false">http://alantait.net/?p=1123</guid>
		<description><![CDATA[<p>Last January 2012, Moniker Domain Names was bought by KeyDrive S.A. in Luxembourg. It may just be a coincidence, but I started having problems with Moniker in January 2012 also! As most of you know, I do not have problems with domain registrars, unless they fail to do what they should do&#8230;</p> <p></p> <p>Any of [...]]]></description>
			<content:encoded><![CDATA[<p>Last January 2012, Moniker Domain Names was <a title="Moniker bought by Keydrive" href="http://www.domainnamenews.com/registrars/breaking-keydrive-buys-moniker-snapnames-overseenet/10063">bought by KeyDrive</a> S.A. in Luxembourg.  It may just be a coincidence, but I started having problems with Moniker in January 2012 also!  As most of you know, I do not have problems with domain registrars, unless they fail to do what they should do&#8230;</p>
<p><span id="more-1123"></span></p>
<p>Any of you who who are on my Sys Admin mailing list, know how GoDaddy really failed me.  I found Moniker via NoDaddy.com.  Recently, GoDaddy bought NoDaddy and shut down the site.  Ironically my wife bought <a title="Know Yo' Daddy!" href="http://knodaddy.com/">kNoDaddy.com</a> to revive the NoDaddy site. kNoDaddy is being built (not there yet) as a valuable resource to webmasters and Sys. Admins.  It is currently under construction and I hope you will visit there as it it built.  (Ok, a shameless plug for my wife&#8217;s website, but it will be a valuable resource for you too.)  The new site will be themed &#8220;<a title="Know Yo' Daddy!" href="http://knodaddy.com/">Know Yo&#8217; Daddy!</a>&#8221; or know the about your registrar.  Well, back to Moniker&#8230;</p>
<p>As of this writing, Moniker is failing to post five checks to my account.  Checks that Moniker received, and based on the checks themselves, Moniker deposited in their account and these already cleared my bank.  In fact, these were &#8220;good as gold&#8221; checks, issued on my banks check drawer.  What we used to call a cashier&#8217;s check.  So for sure Moniker had the money, totalling $530!</p>
<h2>NOT POSTED CHECKS</h2>
<p>Check Written On 07-06-2012 $ 100.00 Cleared On 07-13-2012<span style="color: #ff0000;"><em> &#8211; Update: Moniker Posted on 07-23-2012</em></span><br />
Check Written On 07-05-2012 $ 130.00 Cleared On 07-11-2012<span style="color: #ff0000;"><em> &#8211; Update: Moniker Posted on 07-25-2012</em></span><br />
Check Written On 06-06-2012 $ 100.00 Cleared On 06-12-2012<span style="color: #ff0000;"><em> &#8211; Update: Moniker Posted on 07-25-2012</em></span><br />
Check Written On 01-06-2012 $ 100.00 Cleared On 01-12-2012<br />
Check Written On 01-01-2012 $ 100.00 Cleared On 01-09-2012<br />
<strong></strong></p>
<h2>POSTED CHECKS</h2>
<p>Other checks have cleared and been <strong>POSTED</strong> on my account, for example,<br />
Check Written On 05-16-2012 $ 120.00 Cleared On 05-22-2012<br />
Check Written On 05-06-2012 $ 100.00 Cleared On 05-14-2012<br />
Check Written On 04-06-2012 $ 100.00 Cleared On 04-13-2012<br />
Check Written On 03-06-2012 $ 100.00 Cleared On 03-13-2012<br />
Check Written On 03-03-2012 $ 200.00 Cleared On 03-07-2012<br />
Check Written On 02-06-2012 $ 100.00 Cleared On 02-10-2012<br />
Check Written On 12-31-2011 $ 100.00 Cleared On 01-09-2012</p>
<h2>Seven Out of Twelve is Bad!</h2>
<p>Put another way, seven out of the twelve checks that Moniker Received, Cashed and Cleared my bank, were posted to my account.  Five of the checks, sent to the same address and the same payee, did not get posted to my account!</p>
<h2>Time Has No Meaning</h2>
<p>I received a notice that three of my domains were about to expire!  The bottom of the email said:</p>
<table width="98%" border="0" cellspacing="0" cellpadding="0" bgcolor="#ffffff">
<tbody>
<tr>
<td colspan="2">
<table width="760" border="0" cellspacing="0" cellpadding="2" align="center">
<tbody>
<tr>
<td align="center">Click <span style="color: #0000ff;">here</span> to manually renew your domains.</td>
</tr>
<tr>
<td align="center">Click <span style="color: #0000ff;">here</span> to update an expired credit card.</td>
</tr>
<tr>
<td align="center">Please contact <span style="color: #0000ff;">support</span> if you have questions or comments</td>
</tr>
</tbody>
</table>
<table width="75%" border="0" cellspacing="0" cellpadding="2" align="center">
<tbody>
<tr>
<td align="center" valign="middle" width="100%">©2005, Moniker Online Services, LLC<br />
1.800.841.7686</td>
</tr>
</tbody>
</table>
</td>
<td bgcolor="#00578E" width="3"><img src="http://www.moniker.com/images/pixelblue.gif" alt="table border" width="1" height="1" /></td>
</tr>
<tr>
<td colspan="2" align="left" valign="top" bgcolor="#00578E"><img src="http://www.moniker.com/images/blblue.gif" alt="corner" width="3" height="3" /></td>
</tr>
</tbody>
</table>
<p>The support link enabled me to send an email to support@moniker.com.</p>
<p>So I took the time to write a complete report of the five missing checks, like the one above, but with check numbers, Moniker ID numbers for checks they had posted, and even scans of the front and back of two of the missing checks, and snap shots of my banks online services, showing all the checks Moniker had received and cashed in the last two years.</p>
<p>Sort of the &#8220;anyone with half a brain&#8221; could see the truth.</p>
<div id="attachment_1127" class="wp-caption aligncenter" style="width: 643px"><a href="http://alantait.net/wp-content/blogs.dir/2/files/2012/07/Moniker-1.jpg"><img class="size-full wp-image-1127" title="Moniker-1" src="http://alantait.net/wp-content/blogs.dir/2/files/2012/07/Moniker-1.jpg" alt="Moniker is Paid" width="633" height="498" /></a><p class="wp-caption-text">Payments To Moniker</p></div>
<p>I added a bell pepper to the lines that Citibank says the check to Moniker has cleared, but has NOT been credited to my account.</p>
<p>Below is another scan I sent to Moniker, of an actual check they received, cashed, and never credited to my account.  I have blacked out the private information, but left enough you can clearly see the Reference Number 10281 &#8211; the third down from the top on the image above.  Moniker clearly had received the $530!</p>
<div id="attachment_1128" class="wp-caption aligncenter" style="width: 660px"><a href="http://alantait.net/wp-content/blogs.dir/2/files/2012/07/Moniker-2.jpg"><img class="size-full wp-image-1128" title="Moniker-2" src="http://alantait.net/wp-content/blogs.dir/2/files/2012/07/Moniker-2.jpg" alt="Cashed and Cleared Check To Moniker" width="650" height="743" /></a><p class="wp-caption-text">Cashed and Cleared Check To Moniker</p></div>
<h2>Moniker Replies</h2>
<p>I received no email reply, so I noticed the support ticket.  I submitted a support ticket, and then noticed that my original email was sort of packed in there with no attachments and a note&#8230;</p>
<h3 style="text-align: center;"><span style="color: #ff0000;">Closed as Junk</span></h3>
<p>I spent hours writing that email and they closed it as junk in one second.  The other ticket was &#8220;Closed Duplicate!&#8221;  One was junk and the other a duplicate.  Needless to say, I started to complain.  Then I got a message that stated they would contact me in 72 hours.  98 hours later I complained again and a day later I got an email which read&#8230;</p>
<p>=================== Start of Email ==========================</p>
<p>From: <strong>MySupport@moniker.com</strong> &lt;mysupport@moniker.com&gt;<br />
Date: Fri, Jul 20, 2012 at 2:35 AM<br />
Subject: Case &lt;snip&gt;: Four checks cleared Citibank but not posted on Moniker.<br />
To: &lt;snip&gt;</p>
<p>Moniker Account number: &lt;snip&gt;</p>
<p>Hi aLan,</p>
<p>Thank you for contacting us.</p>
<p>I do apologize for the latency in our response to you. Please note that all checks should be mailed to address listed below. Concerning the previous checks you have sent, we are researching what happened to them.</p>
<p>Make Check Payable to: Moniker Online Services, LLC<br />
Check Memo: &lt;add Moniker account number&gt;<br />
Mail Check to: P.O. Box 8272,<br />
Pasadena, CA 91109-8272</p>
<p>Thanks you for your patience,</p>
<p>Shane Jackson</p>
<p>Supporting Moniker, SnapNames</p>
<p>=================== Start of Email ==========================</p>
<p>It seems obvious that Moniker is well aware of <strong><em><span style="color: #ff0000;">&#8220;the latency in our response&#8230;&#8221;</span></em></strong></p>
<p>You will notice on the above cashed check that was exactly what Citibank did.  Moniker received the check, and it was cashed, and cleared the bank!  What a helpful email about the checks they already received, cashed and had the $530! <span style="color: #ff0000;"><em><strong>NOT!</strong></em></span></p>
<h2>Still Waiting</h2>
<p>I am still waiting, as I began this post, my account was still not credited.  I am hoping this is some kind of glitch in the new system of KeyDrive (Moniker).  <span style="text-decoration: underline;"><strong>Maybe it can be fixed</strong></span><strong>?</strong></p>
<h2>In Fairness</h2>
<p>Michele Van Tilborg, on behalf of Moniker, has been posting on different blogs, we invite her to post here&#8230;  She seems to indicate that things may get better as KeyDrive makes improvements.  Here are a couple of examples of things she is posting during the time Moniker is getting my money into their bank account and then forgetting that I paid them &#8211; or at least forgetting to post it to my account so I can renew my domain names.</p>
<p>==============================<br />
<a href="http://www.elliotsblog.com/where-is-moniker-support-1039">http://www.elliotsblog.com/where-is-moniker-support-1039</a></p>
<p>Thank you Elliot, we’ll get this addressed.</p>
<p>To contact client services, please click on the “Support” icon from Moniker.com. It will take you to our support portal where you can open and monitor your support tickets.</p>
<p>Once we migrate to our new system the link will change but will still be accessible from the “Support” icon.</p>
<p>We are hiring and improving client services is a key initiative. We greatly appreciate our clients and look forward to making these improvements.</p>
<p>Best Regards,<br />
Michele Van Tilborg<br />
Moniker &amp; SnapNames<br />
February 29th, 2012 at 12:53 pm</p>
<p>===================================<br />
<a href="http://domaingang.com/domain-news/moniker-support-still-points-to-oversee/">http://domaingang.com/domain-news/moniker-support-still-points-to-oversee/</a></p>
<p><cite>Michele Van Tilborg </cite>says:</p>
<div>February 10, 2012 at 1:13 pm</div>
<p>Michele Van Tilborg on behalf of Moniker, SnapNames, KeySystems and KeyDrive:</p>
<p>For both Moniker and SnapNames, the support portal is a key part of our transition plan post acquistion. What that means for our clients is that they will continue to submit tickets through the Oversee.net support portal while we migrate onto our new system – at that time the link will change.</p>
<p>We will keep you posted on this change – you can monitor updates from our FaceBook account MonikerSnapNames.</p>
<p>Additionally a key area of improvement underway is client service operations. We are hiring!</p>
<p>Have a great weekend!</p>
<p>=================================================================</p>
<p>The words are nice, I only hope the actions will match and we will not be faced with another GoDaddy to report on <a title="Know Yo' Daddy!" href="http://alantait.net/nokia-2730/">kNoDaddy.com</a></p>
<h2>Updates</h2>
<p>I am hoping there will soon be updates to this story.  Anyone at Moniker what to email me?  You have my address!</p>
<p>&nbsp;</p>
<h5 style="text-align: center;">==========</h5>
<h5 style="text-align: center;">More Post about this problem with Moniker can be found in the category <a title="Moniker Problems" href="http://alantait.net/category/moniker/">Moniker!</a></h5>
<p style="text-align: center;">I plan to post daily reports about this problem with Moniker, as a way to vent my deep frustration with what they are doing to me.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://alantait.net/2012/07/20/moniker-the-beginning-or-the-end/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
