<?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>PSS software</title>
	<atom:link href="http://psssoftware.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://psssoftware.net</link>
	<description>.NET, PHP custom software developement</description>
	<lastBuildDate>Mon, 07 May 2012 19:49:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>If oracle cant innovate sue</title>
		<link>http://psssoftware.net/2012/05/07/oracle-innovate-sue/</link>
		<comments>http://psssoftware.net/2012/05/07/oracle-innovate-sue/#comments</comments>
		<pubDate>Mon, 07 May 2012 19:49:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=368</guid>
		<description><![CDATA[Pretty self explanatory oracle wants a piece of the big pie coming Cant blame them I don&#8217;t guess, but  just another example of our litigious society. &#160; http://www.reuters.com/article/2012/05/07/us-oracle-google-idUSBRE8460VQ20120507]]></description>
			<content:encoded><![CDATA[<p>Pretty self explanatory oracle wants a piece of the big pie coming <img src='http://psssoftware.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Cant blame them I don&#8217;t guess, but  just another example of our litigious society.</p>
<p>&nbsp;</p>
<p>http://www.reuters.com/article/2012/05/07/us-oracle-google-idUSBRE8460VQ20120507</p>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2012/05/07/oracle-innovate-sue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming Rules to remember</title>
		<link>http://psssoftware.net/2012/05/07/programming-rules-remember/</link>
		<comments>http://psssoftware.net/2012/05/07/programming-rules-remember/#comments</comments>
		<pubDate>Mon, 07 May 2012 18:17:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=366</guid>
		<description><![CDATA[These are great: 1. Rule of Clarity Because maintenance is so important and so expensive, write programs as if the most important communication they do is not to the computer that executes them but to the human beings who will read and maintain the source code in the future (including yourself). In the Unix tradition, the implications [...]]]></description>
			<content:encoded><![CDATA[<p>These are great:<br />
1. <a id="id2877610">Rule of Clarity<br />
</a></p>
<p><a id="id2877610">Because maintenance is so important and so expensive, write programs as if the most important communication they do is not to the computer that executes them but to the human beings who will read and maintain the source code in the future (including yourself).</a></p>
<p><a id="id2877610">In the Unix tradition, the implications of this advice go beyond just commenting your code. Good Unix practice also embraces choosing your algorithms and implementations for future maintainability. Buying a small increase in performance with a large increase in the complexity and obscurity of your technique is a bad trade — not merely because complex code is more likely to harbor bugs, but also because complex code will be harder to read for future maintainers.</a></p>
<p><a id="id2877610">Code that is graceful and clear, on the other hand, is less likely to break — and more likely to be instantly comprehended by the next person to have to change it. This is important, especially when that next person might be yourself some years down the road.</a></p>
<p><a id="id2877610">2. </a><a id="id2877537">Rule of Modularity</p>
<p>Each program does just one thing, don&#8217;t try to finish over one task in one program. In programs, we need to separate font end and back end modules because front end changed faster. We can connect each module with clean interface, it&#8217;s easy for people to maintain and reuse the modules.</p>
<p>3. </a><a id="id2877684">Rule of Composition</p>
<p>Different modules or programs should be connected with interfaces. The communication among different interfaces involve data exchange, we should use text as the data exchange format since they are easier to process. It means we should avoid using binary data to communicate among interfaces, avoid using binary data as input and output.</p>
<p>4. </a><a id="rule_of_optimization">Rule of Optimization</p>
<p>Before the function modules are completed, don;t do optimization. The most important thing is to first make it run, then we can consider the efficiency. Make it run, then make it right, then make it fast. First we should make a prototype, then find out what functions are not necessary, then we no need to do optimizations on those unnecessary codes. The most powerful optimization tool is Delete on keyboard.<br />
===========================</p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2012/05/07/programming-rules-remember/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seo Links</title>
		<link>http://psssoftware.net/2012/05/07/seo-links/</link>
		<comments>http://psssoftware.net/2012/05/07/seo-links/#comments</comments>
		<pubDate>Mon, 07 May 2012 18:11:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=364</guid>
		<description><![CDATA[SEO Blogs It’s always good practice to keep updated on the world of SEO with the top SEO blogs. Below I’ve outlined a few of my personal favorites, covering search engine news, tips, and algorithm changes. Search Engine Land – One of the biggest blogs on search engine news and information. SEOmoz – One of my favorite SEO [...]]]></description>
			<content:encoded><![CDATA[<h1>SEO Blogs</h1>
<p>It’s always good practice to keep updated on the world of SEO with the <a href="http://www.dailyblogtips.com/top-25-seo-blogs/">top SEO blogs</a>.</p>
<p>Below I’ve outlined a few of my personal favorites, covering search engine news, tips, and algorithm changes.</p>
<ul>
<li><a id="link_4fa46dec22430" href="http://searchengineland.com/">Search Engine Land</a> – One of the biggest blogs on search engine news and information.</li>
<li><a id="link_4fa46dec281f1" href="http://www.seomoz.org/">SEOmoz</a> – One of my favorite SEO blogs, I’m <a href="http://www.seomoz.org/users/profile/307778">also a contributor</a>, split between the <a href="http://www.seomoz.org/blog">main blog</a> and the <a href="http://www.seomoz.org/ugc">YouMoz</a> blog, filled with good SEO articles.</li>
<li><a id="link_4fa46dec2dfb2" href="http://www.seobook.com/blog">SEO Book</a> – Aaron Wall creates some truly great articles, love him or hate him, you should be reading his blog.</li>
<li><a id="link_4fa46dec2fef3" href="http://www.mattcutts.com/blog/">Matt Cutts</a> – Head of Google’s webpam team, you should probably listen to him or something.</li>
<li><a id="link_4fa46dec31e33" href="http://www.searchenginejournal.com/">Search Engine Journal</a> – Great blog for link building, PPC, and optimization information.</li>
<li><a id="link_4fa46dec37bf5" href="http://googleblog.blogspot.com/">Google’s Blog</a> – Google’s main blog, not much on SEO specifically, but it’s good to know what Big G is up to.</li>
</ul>
<h1>SEO Guides</h1>
<p>Blogs can be an incredible source of information.</p>
<p>Unfortunately, for the newbie, they are too split up: info is spread throughout hundreds (or thousands) of posts.</p>
<p>These complete guides offer a more thorough offering on learning SEO.</p>
<ul>
<li><a href="http://static.googleusercontent.com/external_content/untrusted_dlcp/www.google.com/en/us/webmasters/docs/search-engine-optimization-starter-guide.pdf">Google’s SEO Start Guide</a> – Official Google guide to getting started with SEO.</li>
<li><a href="http://www.seomoz.org/beginners-guide-to-seo">Beginner’s Guide to SEO</a> – The most <em>essential</em> read for beginners, and it’s pretty too!</li>
<li><a href="http://searchengineland.com/seotable">The Periodic Table Of SEO Ranking Factors</a> – Excellent visual guide to SEO.</li>
<li><a href="http://www.copyblogger.com/seo-copywriting/">SEO Copywriting Guide</a> – The SEO Copywriting guide is a must read</li>
<li><a id="link_4fa46dec456b8" href="http://www.marketingterms.com/dictionary/">Marketing Terms</a> – Confused about what “SEO”, “SEM”, “PPC”, or “inbound marketing”? Learn all of the necessary phrases here.</li>
<li><a href="http://www.seomoz.org/article/search-ranking-factors">Search Engine Ranking Factors Guide</a> – Another great guide, this time on ranking factors, from SEOmoz</li>
<li><a href="http://searchengineland.com/the-most-powerful-seo-tactic-simplify-simplify-simplify-13955">Simplifying SEO Guide</a> – Great guide on how to keep SEO simple.</li>
<li><a id="link_4fa46dec521db" href="http://www.seomoz.org/blog/the-web-developers-seo-cheat-sheet">SEO Cheat Sheet</a> – Another must read for website owners from SEOmoz.</li>
</ul>
<h1>SEO Tools</h1>
<p>SEO can be an <em>immense</em> time sink if you aren’t careful.</p>
<p>Definitely check out a few of the SEO tools below that can save you countless hours and a ton of frustration.</p>
<p>Just be sure not to spend too much time playing around with the tools instead of actually using them!</p>
<ul>
<li><a href="https://adwords.google.com/o/Targeting/Explorer?__c=2558173930&amp;__u=1995884050&amp;__o=cues&amp;ideaRequestType=KEYWORD_IDEAS">Google Keyword Tool</a> – If there is one “getting started” tool that you must learn about, it’s this one. Know it well, you’ll use it forever (or at least as long as Google is around).</li>
<li><a id="link_4fa46dec5be1d" href="http://www.seomoz.org/tools">SEOmoz’s Tools</a> – A comprehensive suite of tools that I’ve started to fall in love with. It’s paid (and a premium price), but very useful.</li>
<li><a id="link_4fa46dec65a5f" href="https://www.google.com/webmasters/tools/">Google Webmaster Tools</a> – If you are going to play Big G’s game (whitehat style), you need to use their tools.</li>
<li><a href="http://www.opensiteexplorer.org/">Open Site Explorer</a> – A individual SEOmoz tool that’s perfect for checking competitor’s backlinks, as well as other metrics. More comprehensive if you’re a pro user.</li>
<li><a href="http://serpiq.com/">Serp IQ</a> – One of my recent favorite tools to emerge on the market, tons of great uses from competition analysis to keyword discovery, this tool is insanely fast and has a ton of great features.</li>
<li><a href="http://scribeseo.com/">Scribe SEO</a> – A super useful tool (especially if you are focusing on<a href="http://www.sparringmind.com/wordpress-seo/">WordPress SEO</a>) because it breaks down keyword density to perfection.</li>
<li><a id="link_4fa46dec59edd" href="http://www.spyfu.com/">SpyFu</a> – Great for spying on your competitors, specifically their advertising.</li>
<li><a href="https://freekeywords.wordtracker.com/">Wordtracker Keyword Tool</a> – A classic, must use for keyword research.</li>
<li><a href="http://www.marketsamurai.com/">Market Samurai</a> – Still one of the best keyword analysis tools on the market, perfect for checking SEO competition, although it runs somewhat slowly (Adobe Air).</li>
</ul>
<h1>SEO Forums</h1>
<p>Although guides and blogs can offer a ton of essential information, sometimes you are going to have questions.</p>
<p>Forums are a great spot to get these questions answered.</p>
<ul>
<li><a id="link_4fa46dec773a3" href="http://www.webmasterworld.com/">Webmaster World</a> – One of the oldest forums for website owners.</li>
<li><a id="link_4fa46dec7b224" href="http://forums.digitalpoint.com/">Digital Point Forum</a> – Useful, but can be a time sink: remember, it’s always better to do more work and less reading.</li>
<li><a id="link_4fa46dec7d165" href="http://forums.searchenginewatch.com/">Search Engine Watch Forum</a> – Very popular forum tied to Search Engine Watch.</li>
</ul>
<h1>Conferences</h1>
<p>A bit advanced for most, but a great way to really dive into SEO is to know about (and go to) the many search engine related conferences.</p>
<ul>
<li><a href="http://sesconference.com/">SES Conference</a> – SES is the leading global event series about search and social marketing, with a focus on tactics and best practices.</li>
<li><a id="link_4fa46dec84e67" href="http://www.blueglass.com/conferences/">Blueglass</a> – BlueGlass’ Internet Marketing Conferences have quickly become known in the web marketing circles as being premier events for learning the latest strategies, interacting with the speakers and networking</li>
<li><a href="http://searchmarketingexpo.com/">Search Marketing Expo</a> – Another leading search engine conference.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2012/05/07/seo-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Programming &#8211; words to live by</title>
		<link>http://psssoftware.net/2012/05/07/secure-programming-words-live/</link>
		<comments>http://psssoftware.net/2012/05/07/secure-programming-words-live/#comments</comments>
		<pubDate>Mon, 07 May 2012 18:03:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=360</guid>
		<description><![CDATA[These are words to live by I saw on stack overflow. Id add to this list that user input not only means things they type but file selectors and uploaders. KISS is the way to go, dont roll your own anything if  you can help it use peer reviewed code when you can. Never trust [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>These are words to live by I saw on stack overflow. Id add to this list that user input not only means things they type but file selectors and uploaders. KISS is the way to go, dont roll your own anything if  you can help it use peer reviewed code when you can.</p>
<ul>
<li><strong>Never trust user input!</strong></li>
<li><a href="http://www.ibm.com/developerworks/library/l-sp2.html">Validate input</a> from all untrusted sources &#8211; use whitelists not blacklists</li>
<li>Plan for security from the start &#8211; it&#8217;s not something you can bolt on at the end</li>
<li>Keep it simple &#8211; complexity increases the likelihood of security holes</li>
<li>Keep your <a href="http://en.wikipedia.org/wiki/Attack_surface">attack surface</a> to a minimum</li>
<li>Make sure you <a href="http://www.owasp.org/index.php/Fail_securely">fail securely</a></li>
<li>Use <a href="https://buildsecurityin.us-cert.gov/bsi/articles/knowledge/principles/347-BSI.html">defence in depth</a></li>
<li>Adhere to the principle of <a href="https://buildsecurityin.us-cert.gov/bsi/articles/knowledge/principles/351-BSI.html">least privilege</a></li>
<li>Use <a href="http://www.owasp.org/index.php/Threat_Risk_Modeling">threat modelling</a></li>
<li><a href="http://www.cgisecurity.com/owasp/html/ch04s09.html">Compartmentalize</a> - so your system is not all or nothing</li>
<li>Hiding secrets is hard &#8211; and secrets hidden in code won&#8217;t stay secret for long</li>
<li>Don&#8217;t write your own crypto</li>
<li>Using crypto doesn&#8217;t mean you&#8217;re secure (attackers will look for a weaker link)</li>
<li>Be aware of <a href="http://www.linuxjournal.com/article/6701">buffer overflows</a> and how to protect against them</li>
</ul>
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2012/05/07/secure-programming-words-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Default password for routers</title>
		<link>http://psssoftware.net/2012/02/14/default-password-routers/</link>
		<comments>http://psssoftware.net/2012/02/14/default-password-routers/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 22:27:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=355</guid>
		<description><![CDATA[&#160; 1.  Linksys - ADSL Router Version 2700v User ID (none) Password epicrouter Level Administrator 2.  Linksys - BEFW11S4 User ID (none) Password admin Level Administrator 3.  Linksys - DSL Method Telnet Password admin Level Administrator 4.  Linksys - PSUS4 User ID admin Password admin Level Administrator Notes Print Server for USB with 4-Port Switch 5.  Linksys - SRW224 User [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6">
<h3><strong>1.  Linksys - <em>ADSL Router</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Version</strong></td>
<td align="left" width="100%">2700v</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">(none)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">epicrouter</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1459"></a></p>
<h3><strong>2.  Linksys - <em>BEFW11S4</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">(none)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="584"></a></p>
<h3><strong>3.  Linksys - <em>DSL</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Method</strong></td>
<td align="left" width="100%">Telnet</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1536"></a></p>
<h3><strong>4.  Linksys - <em>PSUS4</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Notes</strong></td>
<td align="left" width="100%">Print Server for USB with 4-Port Switch</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1506"></a></p>
<h3><strong>5.  Linksys - <em>SRW224</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">(blank)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Notes</strong></td>
<td align="left" width="100%">Default management URL: <a href="http://192.168.1.254/">http://192.168.1.254</a></td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1460"></a></p>
<h3><strong>6.  Linksys - <em>WAG54G</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="585"></a></p>
<h3><strong>7.  Linksys - <em>WAP Router</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Version</strong></td>
<td align="left" width="100%">4 Port, 2.4GHz</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Method</strong></td>
<td align="left" width="100%">HTTP</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">(blank)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1458"></a></p>
<h3><strong>8.  Linksys - <em>WAP11</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1567"></a></p>
<h3><strong>9.  Linksys - <em>WAP54G</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">(blank)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Notes</strong></td>
<td align="left" width="100%">Default IP is 192.168.1.245</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1461"></a></p>
<h3><strong>10.  Linksys - <em>WCG200</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">(none)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1456"></a></p>
<h3><strong>11.  Linksys - <em>WET11</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">(none)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1457"></a></p>
<h3><strong>12.  Linksys - <em>WET54G</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">(none)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1424"></a></p>
<h3><strong>13.  Linksys - <em>Wireless Router</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Version</strong></td>
<td align="left" width="100%">WRT54G</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">(none)</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
<table width="95%" border="0">
<tbody>
<tr>
<td colspan="2" bgcolor="#E6E6E6"><a name="1675"></a></p>
<h3><strong>14.  Linksys - <em>WRT54GL</em><strong></strong></strong></h3>
</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>User ID</strong></td>
<td align="left" width="100%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Password</strong></td>
<td align="left" width="85%">admin</td>
</tr>
<tr>
<td align="left" valign="top" width="300"><strong>Level</strong></td>
<td align="left" width="100%">Administrator</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2012/02/14/default-password-routers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOPA &#8211; supporters old school boneheads</title>
		<link>http://psssoftware.net/2011/12/27/sopa-supporters-old-school-boneheads/</link>
		<comments>http://psssoftware.net/2011/12/27/sopa-supporters-old-school-boneheads/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 22:18:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=350</guid>
		<description><![CDATA[Am I wrong or does this list look like a bunch of old school wankers trying to hold on. Clueless. &#160; 60 Plus Association ABC Alliance for Safe Online Pharmacies (ASOP) American Bankers Association (ABA) American Federation of Musicians (AFM) American Federation of Television and Radio Artists (AFTRA) American Society of Composers, Authors and Publishers [...]]]></description>
			<content:encoded><![CDATA[<p>Am I wrong or does this list look like a bunch of old school wankers trying to hold on. Clueless.</p>
<p>&nbsp;</p>
<p>60 Plus Association<br />
ABC<br />
Alliance for Safe Online Pharmacies (ASOP)<br />
American Bankers Association (ABA)<br />
American Federation of Musicians (AFM)<br />
American Federation of Television and Radio Artists (AFTRA)<br />
American Society of Composers, Authors and Publishers (ASCAP)<br />
Americans for Tax Reform<br />
Artists and Allied Crafts of the United States<br />
Association of American Publishers (AAP)<br />
Association of State Criminal Investigative Agencies<br />
Association of Talent Agents (ATA)<br />
Beachbody, LLC<br />
BMI<br />
BMG Chrysalis<br />
Building and Construction Trades Department<br />
Capitol Records Nashville<br />
CBS<br />
Cengage Learning<br />
Christian Music Trade Association<br />
Church Music Publishers&#8217; Association<br />
Coalition Against Online Video Piracy (CAOVP)<br />
Comcast/NBCUniversal<br />
Concerned Women for America (CWA)<br />
Congressional Fire Services Institute<br />
Copyhype<br />
Copyright Alliance<br />
Coty, Inc.<br />
Council of Better Business Bureaus (CBBB)<br />
Council of State Governments<br />
Country Music Association<br />
Country Music Television<br />
Creative America<br />
Deluxe<br />
Directors Guild of America (DGA)<br />
Disney Publishing Worldwide, Inc.<br />
Elsevier<br />
EMI Christian Music Group<br />
EMI Music Publishing<br />
Entertainment Software Association (ESA)<br />
ESPN<br />
Estée Lauder Companies<br />
Fraternal Order of Police (FOP)<br />
Gospel Music Association<br />
Graphic Artists Guild<br />
Hachette Book Group<br />
HarperCollins Publishers Worldwide, Inc.<br />
Hyperion<br />
Independent Film &amp; Television Alliance (IFTA)<br />
International Alliance of Theatrical and Stage Employees (IATSE)<br />
International AntiCounterfeiting Coalition (IACC)<br />
International Brotherhood of Electrical Workers (IBEW)<br />
International Brotherhood of Teamsters (IBT)<br />
International Trademark Association (INTA)<br />
International Union of Police Associations<br />
L&#8217;Oreal<br />
Lost Highway Records<br />
Macmillan<br />
Major County Sheriffs<br />
Major League Baseball<br />
Majority City Chiefs<br />
Marvel Entertainment, LLC<br />
MasterCard Worldwide<br />
MCA Records<br />
McGraw-Hill Education<br />
Mercury Nashville<br />
Minor League Baseball (MiLB)<br />
Minority Media &amp; Telecom Council (MMTC)<br />
Motion Picture Association of America (MPAA)<br />
Moving Picture Technicians<br />
MPA &#8211; The Association of Magazine Media<br />
National Association of Manufacturers (NAM)<br />
National Association of Prosecutor Coordinators<br />
National Association of State Chief Information Officers<br />
National Cable &amp; Telecommunications Association (NCTA)<br />
National Center for Victims of Crime<br />
National Crime Justice Association<br />
National District Attorneys Association<br />
National Domestic Preparedness Coalition<br />
National Football League<br />
National Governors Association, Economic Development and Commerce Committee<br />
National League of Cities<br />
National Narcotics Offers&#8217; Associations&#8217; Coalition<br />
National Sheriffs&#8217; Association (NSA)<br />
National Songwriters Association<br />
National Troopers Coalition<br />
News Corporation<br />
Pearson Education<br />
Penguin Group (USA), Inc.<br />
Pharmaceutical Research and Manufacturers of America (PhRMA)<br />
Pfizer, Inc.<br />
Provident Music Group<br />
Random House<br />
Raulet Property Partners<br />
Republic Nashville<br />
Revlon<br />
Scholastic, Inc.<br />
Screen Actors Guild (SAG)<br />
Showdog Universal Music<br />
Sony/ATV Music Publishing<br />
Sony Music Entertainment<br />
Sony Music Nashville<br />
State International Development Organization (SIDO)<br />
The National Association of Theatre Owners (NATO)<br />
The Perseus Books Groups<br />
The United States Conference of Mayors<br />
Tiffany &amp; Co.<br />
Time Warner<br />
True Religion Brand Jeans<br />
Ultimate Fighting Championship (UFC)<br />
UMG Publishing Group Nashville<br />
United States Chamber of Commerce<br />
United States Olympic Committee<br />
United States Tennis Association<br />
Universal Music<br />
Universal Music Publishing Group<br />
Viacom<br />
Visa Inc.<br />
W.W. Norton &amp; Company<br />
Wallace Bajjali Development Partners, L.P.<br />
Warner Music Group<br />
Warner Music Nashville<br />
Wolters Kluewer Health<br />
Word Entertainment</p>
<p>http://www.godaddy.com/newscenter/release-view.aspx?news_item_id=380</p>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2011/12/27/sopa-supporters-old-school-boneheads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paypal Payment Intergration Methods</title>
		<link>http://psssoftware.net/2011/10/28/paypal-payment-methods/</link>
		<comments>http://psssoftware.net/2011/10/28/paypal-payment-methods/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 21:53:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=345</guid>
		<description><![CDATA[&#160; Paypal: Internet Payments Made Easy When you want to make or accept payment online, the first and the most secured option that comes to mind is Paypal. It is an American-based global e-commerce company allowing payments and money transfers to be made through the Internet. Online money transfers serve as electronic alternatives to paying [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p align="CENTER"><span style="font-family: Georgia,serif;"><span style="font-size: large;"><strong>Paypal: Internet Payments Made Easy</strong></span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;">When you want to make or accept payment online, the first and the most secured option that comes to mind is Paypal. It </span></span><span style="font-family: Georgia,serif;"><span style="font-size: small;">is an American-based global </span></span><a href="http://en.wikipedia.org/wiki/E-commerce"><span style="color: #00000a;"><span style="font-family: Georgia,serif;"><span style="font-size: small;">e-commerce</span></span></span></a><span style="font-family: Georgia,serif;"><span style="font-size: small;"> company allowing payments and money transfers to be made through the Internet. Online money transfers serve as electronic alternatives to paying with traditional paper methods, such as checks and </span></span><a href="http://en.wikipedia.org/wiki/Money_order"><span style="color: #00000a;"><span style="font-family: Georgia,serif;"><span style="font-size: small;">money orders</span></span></span></a><span style="font-family: Georgia,serif;"><span style="font-size: small;">. Paypal helps to send payments securely online using a credit card or bank account.</span></span></p>
<ul>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;">PayPal Payment is traceable. You can track the status of your payment or your PayPal account. </span></p>
</li>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;">Payment is convenient and immediate. You pay right from the listing page and your payment is deposited directly into the seller&#8217;s account.</span></p>
</li>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;">You don&#8217;t have to use a credit card. You can transfer money directly from your bank account.</span></p>
</li>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;">If you use a credit card, sellers don&#8217;t see your card number. It&#8217;s safely encrypted through PayPal&#8217;s server to help minimize any risk of unauthorized use. </span></p>
</li>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;">On eligible transactions you&#8217;re covered by </span><a href="http://pages.ebay.com/help/buy/paypal-buyer-protection.html"><span style="color: #00000a;"><span style="font-family: Georgia,serif;">PayPal Buyer Protection</span></span></a><span style="font-family: Georgia,serif;"> for up to the full purchase price of your item, plus original shipping charges. </span></p>
</li>
</ul>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;">If you run into trouble with a transaction, it is best to try </span><a href="http://pages.ebay.com/help/buy/contact-member.html"><span style="color: #00000a;"><span style="font-family: Georgia,serif;">contacting</span></span></a><span style="font-family: Georgia,serif;"> and </span><a href="http://pages.ebay.com/help/buy/communicate.html"><span style="color: #00000a;"><span style="font-family: Georgia,serif;">communicating</span></span></a><span style="font-family: Georgia,serif;"> directly with your seller before you does anything else. When you use PayPal to pay for items you buy, you can also turn to the PayPal Buyer Protection and PayPal Resolution Center for help.</span></p>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><strong>PayPal Buyer Protection</strong></span></p>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;">If you don&#8217;t receive your item, or the item is significantly different from its description in the seller&#8217;s listing, PayPal Buyer Protection covers eligible transactions for up to the full purchase price plus original shipping charges. Some purchases are not eligible for this program, including vehicles in the Motors category, capital equipment in the Business &amp; Industrial category, and Real Estate.</span></p>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><strong>PayPal Resolution Center</strong></span></p>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;">If you paid for your item with PayPal but didn&#8217;t receive your item or if the item is significantly different from its description in the seller&#8217;s listing. You can open a case in the </span><a href="https://www.paypal.com/cgi-bin/webscr?cmd=xpt/User/customerservice/GXOLogin-outside&amp;from=resolution_center&amp;toResCtr=true&amp;fileWhat=claim"><span style="color: #00000a;"><span style="font-family: Georgia,serif;">PayPal Resolution Center</span></span></a><span style="font-family: Georgia,serif;">. This is the first step in filing a claim for coverage under PayPal&#8217;s Buyer Protection program.</span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: medium;"><strong><a href="http://www.100best-merchant-accounts.com/articles/paypal-vs-2checkout.html">PayPal</a> </strong></span></span><span style="font-family: Georgia,serif;"><span style="font-size: medium;"><strong>PayFlow<br />
</strong></span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: medium;"><strong><br />
</strong></span></span></p>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><span style="font-size: small;"><a href="http://www.100best-merchant-accounts.com/articles/paypal-vs-2checkout.html">PayPal</a> offers an interesting payment gateway that is almost like many traditional gateways. Indeed, the pricing on PayFlow is much like what you would find with traditional payment gateways:</span></span></p>
<ul>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Setup fee</span></span><span style="font-family: Georgia,serif;"><span style="font-size: small;">: Between $179 and $249. </span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Monthly fee</span></span><span style="font-family: Georgia,serif;"><span style="font-size: small;">: Between $19.95 and 59.95 </span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Transaction fee</span></span><span style="font-family: Georgia,serif;"><span style="font-size: small;">: 10 cents</span></span></li>
</ul>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><span style="font-size: small;">Indeed, the pricing is so similar to other payment gateways that the only real savings comes with the transaction fee, which is always a flat fee, without a percentage of the sale. However, unlike many payment gateways, PayFlow does offer a <a href="http://www.100best-merchant-accounts.com/articles/virtual-terminals.html">virtual terminal</a> included in the price for orders taken by mail, fax or phone.</span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: medium;"><strong>PayPal Express</strong></span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;">Express Checkout allows your customers to complete transactions in very few steps. It lets them use shipping and billing information stored securely at PayPal to check out, so they don’t have to re-enter it on your site.</span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;"><strong><br />
</strong></span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;"><strong>How it works.</strong></span></span></p>
<ol>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">After selecting products to purchase, your customers click Checkout with PayPal on your website.</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">They are transferred to PayPal – where they select their payment method, as well as the correct shipping and billing address , then are returned to your website to complete their purchases.</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">PayPal automatically gives you the shipping address, email, and other customer information needed to fulfill your order.</span></span></li>
</ol>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;">With Express Checkout, your buyers finish their orders on your website, not PayPal’s, so you can:</span></span></p>
<ul>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Get real-time notification of successful payments</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Automate your internal business processes.</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Ensure buyers make it to your final confirmation page</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Be notified that the buyer’s address is confirmed, and ensure you’re eligible for coverage under PayPal’s Seller Protection Policy.</span></span></li>
</ul>
<p><span style="font-family: Georgia,serif;"><span style="font-size: medium;"><strong><br />
</strong></span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: medium;"><strong>PayPal Direct payment:</strong></span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;">Direct Payment offers direct credit card payment processing capability through PayPal. For credit card transactions, customers stay on your website as PayPal processes the payment in the background. </span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;">By integrating Direct Payment with Express Checkout, as part of the Website Payments Pro solution, you can accept all major payment types, including PayPal, while working with a single provider that processes and manages all your online payments.</span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;"><strong><br />
</strong></span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;"><strong>Direct Payment is:</strong></span></span></p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;"><strong>Customizable</strong></span></span></p>
<ul>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Direct Payment lets you design and host your own checkout pages</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">You keep your customers on your site instead of having them pay on PayPal; PayPal remains invisible</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">PayPal authorizes transactions in a real-time process</span></span></li>
</ul>
<p>&nbsp;</p>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;"><strong>Easy to implement</strong></span></span></p>
<ul>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Direct Payment is already integrated with many leading shopping carts</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">The built is using the Name-Value Pair infrastructure, an industry standard that utilizes web services</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">PayPal&#8217;s SDK toolkit lets you easily integrate the PayPal into your website</span></span></li>
</ul>
<p><span style="font-family: Georgia,serif;"><span style="font-size: small;"><strong>Secure</strong></span></span></p>
<ul>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Transactions are sent over the internet using Secure Socket Layer (SSL)</span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">Direct Payment lets you flag potentially fraudulent transactions, and provides you with industry-standard AVS and CVV2 responses for each transaction </span></span></li>
<li><span style="font-family: Georgia,serif;"><span style="font-size: small;">You use the certificate, provided by PayPal, to make calls to a secure connection.</span></span></li>
</ul>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><span style="font-size: small;"><strong>Benefits:</strong></span></span></p>
<p>&nbsp;</p>
<table width="702" border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col width="702" /> </colgroup>
<tbody>
<tr>
<td width="702"></td>
</tr>
</tbody>
</table>
<table width="702" border="0" cellspacing="0" cellpadding="6">
<colgroup>
<col width="690" /> </colgroup>
<tbody>
<tr>
<td valign="TOP" width="690"><span style="font-family: Georgia,serif;"><span style="font-size: small;">Fast Payments are made immediately, quicker than sending checks or money orders.</span></span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<ul>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><span style="font-size: small;">It is Private-PayPal does not reveal your financial information to sellers.</span></span></p>
</li>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><span style="font-size: small;">It is Global-PayPal is accepted worldwide, and can be used to make payments locally or internationally.</span></span></p>
</li>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><span style="font-size: small;">It is Easy-Send money to anyone in just a few clicks.</span></span></p>
</li>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><span style="font-size: small;">It is Trusted-Industry-leading fraud prevention keeps you safe and secure.</span></span></p>
</li>
<li>
<p align="JUSTIFY"><span style="font-family: Georgia,serif;"><span style="font-size: small;">It is Cost-Effective-It is free to send money, and PayPal payfolw is affordable for businesses of all sizes.</span></span></p>
</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2011/10/28/paypal-payment-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link Juice &#8211; How to Move it</title>
		<link>http://psssoftware.net/2011/09/09/link-juice/</link>
		<comments>http://psssoftware.net/2011/09/09/link-juice/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 04:08:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=334</guid>
		<description><![CDATA[Old domains are great for SEO, especially if the name is relevant to your current topic and the domain has some age on it. Domains with some years on them are going to get stronger, faster. Not that a new domain couldn&#8217;t eventually outrank it, but until that new domain gets some time on it, [...]]]></description>
			<content:encoded><![CDATA[<p>Old domains are great for SEO, especially if the name is relevant to your current topic and the domain has some age on it. Domains with some years on them are going to get stronger, faster. Not that a new domain couldn&#8217;t eventually outrank it, but until that new domain gets some time on it, it&#8217;s just how it is.</p>
<p>There&#8217;s a few ways you can go about using your aged domain to pass along SEO value to your new site.</p>
<p>1. Lazy.. If you want to just do the work once and worry about it minimally, I would suggest a landing page. An SEO-rich one page site with a lot of relevant, properly formatted, well written content linking back to your new website.</p>
<p>Target this page for some niche keyword that is relevant to your main website&#8217;s topic.. For example, if your site is about chocolate bars, target your landing page for a relevant keyword with little competition, such as &#8220;world&#8217;s most delicious chocolate&#8221;. This is most likely a pretty easy keyword to be ranking for, and link that site back to your main site. Poof. You have a site that is well ranked for a relevant topic referencing your website. Powerful. Do this for 2-3 keywords and build as many of them as you can stand to.</p>
<p>BUT. Do not just leave the content there to rot away. Practice (or hire somebody) writing good SEO content and update that landing page ever so slightly regularly. This will keep Google coming back regularly checking for new content and keep them from potentially devaluing your content because it&#8217;s stale. Google loves new stuff to read and that&#8217;s how you keep them happy.</p>
<p>2. Blog. Blogging regularly ensures new content for Google. If you get good at writing good SEO copy and you can do it 1-2 times per week or even 1 time every 2 weeks, Google will love it. This has multiple advantages over a landing page; first it allows you to cover an array of topic and build on as many relevant keywords as you can stand to (the main advantage to landing pages, is that managing too many blogs can take longer than your full time work). It also opens the door for social marketing, if people enjoy your posts, they may +1 it, Facebook, Twitter, etc about it and this just builds on the website&#8217;s (and even that specific page&#8217;s) link authority. This allows you to potentially rank your main site for whatever keywords you want to.</p>
<p>There&#8217;s several other options, but you get the gist of it. There&#8217;s a couple of things to remember for whatever you do.</p>
<p>1. The links to your aged site. Your links tell Google what OTHERS think your site is relevant to. If you have 100 links that say you&#8217;re an industrial supply company, that&#8217;s probably what Google&#8217;s going to file you under and it&#8217;s going to make it a bit harder to rank it for something completely unrelated like &#8220;world&#8217;s best chocolate&#8221;. So you&#8217;re going to want to build on that site&#8217;s links (you&#8217;re going to want to either way) and get Google looking at its topic as being a bit more relevant. The existing backlinks are a great bonus, though.</p>
<p>2. No matter what, you&#8217;re not going to get away with not coming up with good quality SEO content. Google is going to love whichever site has the most, the most updated, the most recent and the most well written content. A landing page can outrank an old, stale, irrelevant blog with horrible content. There&#8217;s a trillion of those on the internet.</p>
<p>3. If you can get another host, that will make it even better. Google looks at everything about your backlinks, including where they come from as far as where that website&#8217;s server is located, it&#8217;s IP address and other websites on that IP address. It&#8217;s worth the $4/month to host your old domains elsewhere, get them different IPs on different servers from a different companies. If Google notices all of your backlinks are coming from 1 server on 1 IP with the same company, network, nameservers and everything.. They can devalue your backlinks. Google wants OTHER people linking to you. Not you linking to yourself.</p>
<p>There&#8217;s several things you can do with aged domains. These are just the methods that I would personally use. Now how you come up with the content, how you entice people to socialize your pages.. That&#8217;s where your creativity comes in and you ponder that endless question, &#8220;what is this blog going to be about.&#8221;</p>
<p>REMEMBER TO DO ALL OF THE ON-SITE SEO FOR YOUR AGED DOMAIN! YOU WILL HAVE TO WORK 100X HARDER ON CONTENT, LINKS AND SOCIAL MARKETING IF YOUR WEBSITE IS NOT ITSELF OPTIMIZED FOR THE KEYWORDS YOUR CONTENT, LINKS AND SOCIAL MARKETING ARE TRYING TO RANK IT FOR!</p>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2011/09/09/link-juice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friendly urls for new or existing sites</title>
		<link>http://psssoftware.net/2011/09/05/friendly-url/</link>
		<comments>http://psssoftware.net/2011/09/05/friendly-url/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 02:15:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=258</guid>
		<description><![CDATA[First of all what is a friendly URL? Simple put it is a url that is easy for the user to remember. There are a couple of different ways to create these you can either do it with a static directory structure or  dynamcially.]]></description>
			<content:encoded><![CDATA[<p><br/></p>
<h1>SEO Friendly Url</h1>
<p><br/></p>
<p>First of all what is a friendly URL? Simple put it is a url that is easy for the user to remember. Think what is easier to remember www.blake.com/resume or www.blake.com/?filetoget=resume.doc. If its easier to remember then its easier to link too. Google and other search engines know this I believe that is the primary reason they put weight to it, not because the spider cares, but because they knows its easier on the user.</p>
<p>There are actually a couple of different ways to create friendly URLS on your site. A lot of it depends on if its a old existing site you are trying to &#8220;work&#8221; friendly urls back into the code base or a new site. If its a new site much more than likely this is a moot point since friendly URLS will more than likely already be incorporated, but you will be surprised how many sites out there still use something along the lines of www.test.com/?productid=29.</p>
<p><br/></p>
<h2>Different way to create friendly urls</h2>
<p><br/></p>
<p>Lets say you have a new site www.test.com and a directory called &#8220;foo&#8221; sitting in the root the URL becomes &#8220;www.test.com/foo/&#8221;. This is called a static structure but the URL iswhat I would call friendly to the user. You could conceivable have a 1000 directories on your site each with an index file and a nice pretty URL. I certainly wouldn&#8217;t recommend this in the long run it would a lot more hassle than its worth.</p>
<p>The other option and probably most popular option is to have a site that is database driven and uses PHP or another scripting language to create dynamic URLS. &#8220;Way back when&#8221; the standard for this was something along the lines &#8220;www.test.com/?productid=10&amp;categoryid=3&#8243; this would give you the product &#8216;number 10 in category 3 from the database. This isn&#8217;t what we are looking for. Ideally since its database driven you can create the URLS to &#8220;appear friendly&#8221; without the directory structure. Lets take the example we used earlier &#8220;www.test.com/foo/&#8221;. To create this structure you would simply need to associate &#8220;foo&#8221; with the page in the database. When the URL comes in break off the root URL and process what is leftover with whatever logic the site dictates.
</p>
<p><br/></p>
<h3>PHP example of Friendly SEO urls</h3>
<p><br/></p>
<p>
The code below is assuming a incoming URL like www.blake.com/test/?q=idontcatre.It gets the request URL which  would be &#8220;test/q=idontcare&#8221; and chops off the &#8220;/q=idontcare&#8221;. Then uses &#8220;test&#8217; to look up the appropriate page in the database and display.
</p>
<p>$arr = explode(&#8220;?&#8221;,$_SERVER['REQUEST_URI']);<br />
$request = $arr[0]; //chop off query parameter<br />
$request = trim($request,&#8217;/');<br />
$sql = &#8220;select page from categories where PageUrl = &#8216;&#8221; . $url  . &#8220;&#8216;&#8221;;<br />
$qid = $DB->query($sql);<br />
$row= $DB->fetchRow($qid);<br />
echo $row['page'];</p>
<p>Any thoughts? What did I miss? I did make a mistake once so it is possible <img src='http://psssoftware.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Any questions ask and I shall answer</p>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2011/09/05/friendly-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Reposnsiveness</title>
		<link>http://psssoftware.net/2011/09/04/browser-reposnsiveness/</link>
		<comments>http://psssoftware.net/2011/09/04/browser-reposnsiveness/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 00:38:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://psssoftware.net/?p=311</guid>
		<description><![CDATA[When executing JavaScript it locks the browser because of the single threaded model they use. The reason most browsers don&#8217;t support multi-threading is simple. There are lots of operating system issues when dealing with threads, that I guess they didn&#8217;t want to tackle. Dont get threads confused with processes. When you open a multiple browser [...]]]></description>
			<content:encoded><![CDATA[<p>When executing  JavaScript it locks the browser because of the single threaded model they use. The reason most browsers don&#8217;t support multi-threading is simple. There are lots of operating system issues when dealing with threads, that I guess they didn&#8217;t want to tackle. </p>
<p>Dont get threads confused with processes.  When you open a multiple browser tabs even though it shows up as one process, each tab has its own memory space <img src='http://psssoftware.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  Every wonder why the computer gets slower as you open multiple tabs its as simple as that.</p>
<p>There is one glimmer of hope. Chrome is supposedly multi-threaded not sure havnet tested it. If anyone can confirm leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://psssoftware.net/2011/09/04/browser-reposnsiveness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

