<?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>Make Cash Online &#187; Rants</title>
	<atom:link href="http://blog.amxpert.com/category/rants/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amxpert.com</link>
	<description>Advanced Affiliate Marketing Through Numbers</description>
	<lastBuildDate>Sat, 10 Jul 2010 22:04:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Why I use Static HTML for my Websites</title>
		<link>http://blog.amxpert.com/why-i-use-static-html-for-my-websites/</link>
		<comments>http://blog.amxpert.com/why-i-use-static-html-for-my-websites/#comments</comments>
		<pubDate>Sat, 15 May 2010 14:58:17 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[how to make cash with static HTML]]></category>
		<category><![CDATA[static HTML]]></category>

		<guid isPermaLink="false">http://blog.amxpert.com/?p=176</guid>
		<description><![CDATA[I think some people might think I&#8217;m crazy using static HTML for my FOR PROFIT websites. Hint: This blog is not a static HTML site. There is a method to my madness and I think it is very important why I do it this way. If you&#8217;re unfamiliar with what HTML is, it&#8217;s just the [...]]]></description>
			<content:encoded><![CDATA[<p>I think some people might think I&#8217;m crazy using static HTML for my FOR PROFIT websites. Hint: This blog is not a static HTML site. There is a method to my madness and I think it is very important why I do it this way. If you&#8217;re unfamiliar with what HTML is, it&#8217;s just the language that web browsers read to construct a website. Even though this blog isn&#8217;t a static HTML site, my web server hands over HTML pages to it for the browser to read.</p>
<p>There are three main reasons why I go with static HTML:</p>
<ul>
<li>Speed</li>
<li>Security</li>
<li>Webhosting Problems</li>
</ul>
<h2>Speed</h2>
<p>I think speed is by far the most important aspect of selling anything on the internet. This has nothing to do with Google or search engine optimization. Google has announced that they&#8217;re looking to speed now and have it in the algorithm, but it doesn&#8217;t make up anything substantial, YET.</p>
<p>A website needs to open fast. SNAP! (I just snapped my fingers) I don&#8217;t want one second of lag when it comes to potential visitors that will buy. It&#8217;s as simple as that for me.</p>
<p>Basically there are three types of things that a website can possess for the loading of a page: HTML code, Service Side Operations and Server Side Operations with a Database.</p>
<p>HTML: This is the fastest because you already have all the work done. You made the page in HTML and the web server just has to send the data to the visitor.</p>
<p>Server Side: This means that there is programming code in with your webpage and that the server&#8217;s CPU actually has to process the code before HTML is created and can be sent to the visitor.</p>
<p>Server Side With a Database: This is where you have information stored in a database. The database is on a separate server and needs to be connected locally. The programming code is processed. And when information needs to be pulled out of the database, the server has to connect to the database server and pull the information. Once this is all done, HTML data is sent to the visitor.</p>
<p>Guess which one takes longer. WordPress (which this blog is running on) does the Server Side with a Database. You may notice that a blog like this may have a 2 &#8211; 5 second pause as you connect and then everything loads. WordPress runs on PHP Server Side Language and accesses a mySQL database. If you&#8217;re running a Server Side Language (PHP, PERL, SSI), it is for the most part normal. The time it takes a computer to process language doesn&#8217;t take that long and visitors will never even know. But there is a reason why I brought it up, which I will go into on the webhosting problems section.</p>
<h2>Security</h2>
<p>HTML can&#8217;t be hacked. It can&#8217;t be cracked. It can&#8217;t be exploited. Your webhost could get hacked, but it is completely regardless of the HTML. Exploited servers happen typically because they can somehow manipulate the server side operations of the code to open up the server. That is really all there is to it.</p>
<p>This is why you have WordPress updates because they find holes and they need to be fixed. This is why it is important to update WordPress immediately after an update. If you miss the update, you risk getting hacked. And remember people are typically hacked before a fix is created and an update is released.</p>
<p>I&#8217;m not trying to scare you or anything like that. I just can&#8217;t imagine having 100 websites all running WordPress and forgetting to update just one of them.</p>
<h2>Webhosting Problems</h2>
<p>My biggest pet peeve with webhosts is that they offer &#8220;unlimited&#8221; everything. I think all of us recognize that nothing is unlimited and in reality they&#8217;ll shit can your account if you get anywhere close to it.</p>
<p>If I was on a dedicated server (on a server all by myself) I wouldn&#8217;t have a problem with it. But I&#8217;m not really interested in paying $200/mth for a dedicated server. A shared server is what most of us are on and it&#8217;s shared. There are other people on the same computer and they all have the same &#8220;unlimited&#8221; plan.</p>
<p>The most common webhosting problem you run into is the mySQL database server lagging. There&#8217;s always some asshole that thinks they can have &#8220;unlimited&#8221; mySQL databases (1 per WordPress site). So they setup 1000 WordPress sites in an hour and lag down the entire database server. This causes anyone on the same computer to have a lag with any site that needs the database (like this WordPress site).</p>
<p>Guess what? My static HTML sites load fast. SNAP! When the database server is lagging or down.</p>
<p>Sometimes the processing of Server Side operations actually crashes too. It&#8217;s not quite that common, but it does sometimes happen. Any site that has PHP or any other type of server side language will experience a 500 internal error, which is what people will see when they go to your site.</p>
<p>Guess what? My static HTML sites load fast. SNAP! They don&#8217;t need any server side operations done, so it&#8217;s not an issue.</p>
<p>The only way that HTML goes down is if there is an internet load problem, CPU overload or the web server just goes down. And in those cases no website setup will work for you.</p>
<p>This is why I use static HTML for the vast majority of my sites. I do use PHP without the database. I just use it for include() commands, so that I can do site wide editing of footers, headers and shit. So that is really the big secret for why I use static HTML. I told you there was a method to my madness lol.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amxpert.com/why-i-use-static-html-for-my-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stay Away from the Warrior Forum to Make Cash</title>
		<link>http://blog.amxpert.com/stay-away-from-the-warrior-forum-to-make-cash/</link>
		<comments>http://blog.amxpert.com/stay-away-from-the-warrior-forum-to-make-cash/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 22:10:49 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://blog.amxpert.com/?p=123</guid>
		<description><![CDATA[Well, this is a post early in the week for once and I was actually motivated to post this one. There is just something about the Warrior Forum that you need to pay attention too because it is quite apparent. You&#8217;re going to see strategies (which blow and involve &#8220;bitch marketing&#8221;) and you&#8217;re going to [...]]]></description>
			<content:encoded><![CDATA[<p>Well, this is a post early in the week for once and I was actually motivated to post this one. There is just something about the Warrior Forum that you need to pay attention too because it is quite apparent. You&#8217;re going to see strategies (which blow and involve &#8220;bitch marketing&#8221;) and you&#8217;re going to hear about success stories. Hell you&#8217;ll see questions too. You&#8217;d think that is normal for a forum and I suppose it is.</p>
<p>Let me give you a good example. I was reading through a tread the other day on some success story. This guy talked about his &#8220;blah blah&#8221; method and what he was doing. After I got through the post I thought that it sounded pretty cool and I that I would give it a try. Guess what I see? Right in their signature it has a link to buy the &#8220;blah blah&#8221; method. I&#8217;m serious. I see this all the time.</p>
<p>I remember a while ago there was a thread on anti-article marketing by a person. It was several pages long and the OP mentioned something about making static RSS feeds. At the time, I wasn&#8217;t sure how to do those, so I asked a question about it in the thread. For whatever reason the OP missed the thread and it pushed onto the second page. I PMed this person and just asked them about it. Guess what the reply was? Buy my WSO on it.</p>
<p>Everyone on the Warrior Forum is selling. Everyone has an agenda and you need to aware of the information being fed to you. With that said, I&#8217;m not against making cash for your own methods. Do what you need to do to make money and stuff, but I know there is an agenda and it pisses me off.</p>
<p>Don&#8217;t get me wrong though, there are some good people there (few and far between), but you can usually tell the difference. The first is obviously these long drawn out posts that have no value. I can only describe them as Steve Pavlina posts. Just complete fluff that sounds nice, but contains absolutely no value.</p>
<p>This is the kind of stuff you have to watch out for. I just made a post called <a href="http://blog.amxpert.com/how-to-make-cash-online-copywriting/">How to Make Cash Online Copywriting</a>. Even though these forum posts appear to be regular posts, it fits into the elements of a sales letter. There is always some big explosive title like &#8220;How I made $100/day with one month of work&#8221; or something like that. You read it and the benefits are focused on. &#8220;It&#8217;s easy&#8221;, &#8220;saves time&#8221;, &#8220;get in the top 10 fast&#8221;, &#8220;get loads of traffic&#8221;, but the substance is missing. There really isn&#8217;t much about the method. Just how fuckin&#8217; &#8220;uber elite&#8221; it works. And it is all topped off with a sig link.</p>
<p>You will also see the Warrior Forum flyer that just pops into threads related to their topic and basically talk about their method. Now, I know that I&#8217;m describing this in a way that makes it appear like this is blatant spam and that&#8217;s not what I&#8217;m talking about. They&#8217;re premium long time members of the forum and people that you would probably trust. They&#8217;ll just make long &#8220;fluff&#8221; posts that add no value, but sound nice. And it becomes even more difficult to think about what is right when every shit brain member praises them for the &#8220;amazing post&#8221;.</p>
<p>I&#8217;m a member of the War Room at the Warrior Forum and it isn&#8217;t too bad. There are some interesting things in that forum, but there is another aspect of it. It&#8217;s basically list building up sell central. Don&#8217;t get me wrong, there are a few things listed in there that are cool, but for the most part you&#8217;re getting teaser information or methods that are a bit old.</p>
<p>Oh I just got a PM about something. I guess I&#8217;ll talk about the topic. It was about Article Spinners and I was curious about how you can write articles with a 70% uniqueness. Well, of course someone highly promoting the idea of it is someone that is plugging their own program. The traditional spinners use {} syntax. It works like this:</p>
<p>I {like|enjoy} to {walk|drive|hitchhike} to the {mall|store}.</p>
<p>Essentially it randomizes the entire sequence of words, so the sentences are different. Well this guy says that the {} syntax is shit and he give me a promo video for his product to watch how he does it. He has a system that is just like it, except it doesn&#8217;t use {} syntax. It just has some other syntax and made in such a way that it actually slows you down when you&#8217;re writing.</p>
<p>But this guy has a kicker, he just uses paragraphs and spins entire paragraphs around.  It&#8217;s ridiculous and just stupid. You only get so many variations of the article (which are essentially unique because you wrote them) and then you&#8217;re just using copied paragraphs which I&#8217;m sure Google sees.</p>
<p>I&#8217;m more interested in recursive {} syntax and do it at a much more micro level, so that it is spun and you get that 70% unique rate. I&#8217;m probably going to do a post on this later though.</p>
<p>I just found this funny. Absolute joke on this guys part. His product is nothing more than the {} syntax he called &#8220;crap&#8221; and it is built in a less efficient way. Plus his method is all about swapping (not spinning) paragraphs. Which you can do on your own and don&#8217;t need to purchase this asshole&#8217;s product. But this is a prime example of how people are biased and lying to make cash on the forum. They&#8217;re not going to tell you the truth. They&#8217;re just trying to sell you crap. And they&#8217;re hoping you&#8217;re too dumb to fall for it.</p>
<p>This is just so ridiculous. I&#8217;m literally laughing at the stupidity of this video and this moron on the Warrior Forum. While I was dicking around with the crappy {} syntax I have an article up to around 70% uniqueness. I&#8217;ll be able to produce 50 copies of it at that rate and Google probably won&#8217;t even be able to tell the difference.</p>
<p>What a fuckwad. Stay away from the warrior forum if you want to <a href="http://blog.amxpert.com/">make cash online</a>. It is something that is going to full you with bitch work and bitch ideas that are really people selling your some bullshit.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amxpert.com/stay-away-from-the-warrior-forum-to-make-cash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>In a Pissy Mood</title>
		<link>http://blog.amxpert.com/in-a-pissy-mood/</link>
		<comments>http://blog.amxpert.com/in-a-pissy-mood/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 15:15:06 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://blog.amxpert.com/?p=24</guid>
		<description><![CDATA[I don&#8217;t often get into pissy, down and depressed moods often, but I&#8217;m in one right now and I felt the need to vent. My last post showed a negative aspect of having your own product, so this post I&#8217;ll give you a negative aspect of being an affiliate. I have a product that I [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t often get into pissy, down and depressed moods often, but I&#8217;m in one right now and I felt the need to vent. My <A HREF=http://blog.amxpert.com/a-little-rant/>last post</A> showed a negative aspect of having your own product, so this post I&#8217;ll give you a negative aspect of being an affiliate.</p>
<p>I have a product that I was selling on PDC for almost a year now. I&#8217;ve gotten a lot of consistent sales with it over time. I&#8217;ve been making maybe $100-200/mth on the site for the last few months, but I&#8217;ve really tried to bump up it&#8217;s rankings to help increase traffic.</p>
<p>Anyway, I logged into my PDC account the other day and saw that I had an inbox message from the product owner stating he was giving all his affiliates a week to change their links. He was ending the affiliate program. The date has passed for removing the links, but his site is still up. He still accepts payments through the PDC link. In fact I got credited for a sale yesterday.</p>
<p>I know what you&#8217;re thinking. &#8220;It sucks dude, but it&#8217;s just part of the game. You only lost out on a few hundred.&#8221; I know. That isn&#8217;t really what has me bummed out. A few months earlier I contacted the owner and asked if I could have access to the product so that I could sell it better. It wasn&#8217;t like I was just asking him for it like I was a leech or something. I&#8217;ve sold this product a lot at this point and he said no. He had some bullshit excuse &#8220;I have 2000 affiliates and I can&#8217;t give them all access.&#8221; </p>
<p>First, this is PDC. You do not have 2000 affiliates. This is a nice little niche we&#8217;re in and it is big enough to make money, but not big enough for 100 active affiliates. I bet there was probably around 5 active affiliates making sales for him.</p>
<p>Basically, he is one of those publishers that hates affiliates. There are a good publishers out there that know affiliates are how you make money, but than there are other publishers that resent the fact that they have to pay affiliates. I think this guy falls under that category. He&#8217;s still running his site, he just doesn&#8217;t want affiliates, which tells me he doesn&#8217;t want to make more money he just has a resenting problem.</p>
<p>I know what you&#8217;re thinking though, &#8220;just replace it with another affiliate product and move on.&#8221; If I could do this than I would of already done it and wouldn&#8217;t of even posted this. The fact is that there aren&#8217;t any other products. Or at least products that are worth my time. It&#8217;s hard to go from an affiliate commission of $25 per sale to an amazon book that costs $11 (that&#8217;s a $0.44 commission).</p>
<p>The thing that is getting me down is that I either have to dump the site with some shitty affiliate commission or build my own product and compete against him. It is going to be a pain in the ass to build such a product, but than again I want to literally beat this guy for fuckin&#8217; over affiliates.</p>
<p>I was clipping at his heels on the front page of Google for the niche keyword (not long tails, actual niche name), but I just recently got slapped to somewhere in the 100 positions. Coincidentally, I was slapped down there the same time he announced he was ending the affiliate program. Maybe he was upset that I was getting close to dethroning him. I&#8217;m at least hoping my major drop in Google is just a temporary thing that will come back.</p>
<p>It&#8217;s just annoying when you&#8217;re doing business with someone you think is looking to make more money, but they really aren&#8217;t. They have some agenda where they resent affiliates. It&#8217;s lame. Fuck&#8217;em. Fuck&#8217;em in the ass.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amxpert.com/in-a-pissy-mood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Little Rant</title>
		<link>http://blog.amxpert.com/a-little-rant/</link>
		<comments>http://blog.amxpert.com/a-little-rant/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 14:02:05 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://blog.amxpert.com/?p=21</guid>
		<description><![CDATA[Ranting is something that I don&#8217;t like to do and I suppose it doesn&#8217;t make this much of an advanced blog, but I thought I&#8217;d rant anyway. I think there might be something to learn, if you want too. Basically, I&#8217;ve been experimenting a little bit with cheap $7 ebooks that I set up and [...]]]></description>
			<content:encoded><![CDATA[<p>Ranting is something that I don&#8217;t like to do and I suppose it doesn&#8217;t make this much of an advanced blog, but I thought I&#8217;d rant anyway. I think there might be something to learn, if you want too.</p>
<p>Basically, I&#8217;ve been experimenting a little bit with cheap $7 ebooks that I set up and sell. I know selling these cheap is not smart. I use these cheap ebooks to test out niches that I want to dive into. I want to see that I can get some sales with some crappy little ebook before I make a more comprehensive and more expensive product to sell.</p>
<p>As an affiliate, you don&#8217;t have to put up with all the shit. Even if you&#8217;re a publisher at Clickbank, you don&#8217;t have to put up with a lot of the shit from customers. You&#8217;re going to get shit from people no matter what, but for $7 (minus 50 cent fee from Paypal) it&#8217;s not worth it.</p>
<p>It&#8217;s been about 5 days now since someone bought this $7 ebook. I do it independently through Paypal, so after they make the purchase they&#8217;re supposed to get redirected to a page to download. Of course, some people don&#8217;t get forwarded to the download page. This is probably a problem on their side and not with Paypal.</p>
<p>Well, this person pays at 4:03pm. I get an email at 4:06pm telling me that they didn&#8217;t get the report and that it was supposed to be instant. At 4:25pm (when I first saw the email), I replied back with the link for them to get it with an apology. A few minutes later I get an email from Paypal saying that they opened a dispute. It hasn&#8217;t been 30 minutes since they purchased and they opened a dispute.</p>
<p>Here is what they wrote in the dispute: &#8220;Ordered your report, which was supposed to be delivered electronically right away. No link, no response after email sent. Send me the report NOW or I&#8217;ll continue to pursue getting my money back through paypal.&#8221;</p>
<p>They haven&#8217;t responded to my email since. Hasn&#8217;t closed the dispute or anything.</p>
<p>I suppose the point of this rant is that you&#8217;re going to have to put up with shitty customers no matter what. There is nothing that you can do about shit brains like that, but I think it is important to make it worth your wild. $6.50( $7 after fees) just isn&#8217;t worth it. E-Junkie can help with this sort of mess since it will email them the file.</p>
<p>&#8212;-</p>
<p>On another rant side note, EzineArticles had a <a href="http://blog.ezinearticles.com/2009/04/100-articles-in-100-days-marathon-challenge.html">100 articles in 100 days</a> event. I didn&#8217;t know about it at the time until I got an email telling me that I qualified. Basically they told me that I could get a free mug. Not that big of a deal, but a free mug is a free mug.</p>
<p>Well they eventually sent it to me, but I have to pick up the parcel at the post office. It requires me to present photo ID and a signiture to get it. That wouldn&#8217;t be a problem, but they addressed it to one of my pen names. Dumbasses.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.amxpert.com/a-little-rant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
