Recent twitter entries...

Affiliate marketing is dead

Posted by Brad | Posted in Angry Rants | Posted on 16-11-2012

Affiliate marketing used to be nice little sideline getting lots of people into web development who would have never considered it otherwise. Anyone could just setup the most basic of sites, add a few links and Google would come along love what you did and start pointing people at your little site/blog.

That is how it used to be, but now it only seems to be that way for the likes of HotUKDeals who are the big players in making commissions from links (added by other people…). What with Google getting all stuffy over its search algorithms and only sending traffic to blogs who add to its $100 MILLION a day adwords revenues and an overwhelmingly obvious amount of commissions no longer being tracked by networks like affiliate window (who through the power of their tools and signup sweeteners) managed to nick merchants from almost all of the other affiliate networks quite a lot of whom seemed to play the game more fairly, one of ones I remember most fondly was smart quotes who handled financial products.

Even Amazon associates seem to have a “screw you over” policy I found today. I used to naturally use my own link when making a purchase from amazon, then had a commission cancelled for that and enquired why.. they said they knew what I had done and cancelled it – from then I never really seemed to get much from Amazon associates but due to becoming a dad I didn’t really pay so much attention to affiliate issues anymore.

This week I sent a link for a camera to someone and put my tracking code at the end of it though, and saw the sale count in the Amazon associates orders report, he got the camera delivered, but no earnings report entry which naturally I sent them an email to find out what was going on. They used the same reasoning as a couple of years ago although the only connection between that sale and me was my affiliate id.. so they ripped me off to the tune of £25 on that sale alone.. there have been a few in the past like that I can see.. Their actual response is below

Dear Associate,

Thank you for contacting the Amazon Associates Programme.

I have checked your account and found that you have not received advertising fees for the order not appearing on your reports as a result of personal orders being placed through your Associates links.

Due to the proprietary nature of the process, we will not share with you the criteria by which we detect personal orders placed by an Associate. Please know that we are able to determine when an order has been placed by an Associate via their Associates links.

Associates do not receive payment for advertising fees on any personal orders placed. This is because the Associates Programme places certain restrictions on the types of orders that may be placed through an Associate’s web site.

Here’s how our Operating Agreement explains it:
7. Advertising Fees
Qualifying Purchases exclude, and we will not pay advertising fees on any of, the following:
any Product purchased by you or on your behalf through a Special Link (e.g., personal orders, orders for your own use, and orders placed by you for or on behalf of any other person or entity).

Given the relatively slim retail margins on our products and our strong discount pricing, the advertising fees we offer to our Associates can only be sustained by meeting new customers through our Associates. These customers may return to us in the future for items unrelated to the topics served by the Associate web site, and this future business helps to offset the advertising fees we pay. If an Associate orders for their own use, even if they plan to sell the items to customers who cannot order online, it can’t lead to this kind of future business. This is why we can’t afford to offer advertising fees on such orders, as we want to keep the program viable for the long term.

We understand that some orders may unintentionally be tagged to Associates accounts as you are updating your site(s) and checking links. However, we do request that you place all personal orders directly at http://www.amazon.co.uk through sessions not tagged to your Associates account.

If you require any additional assistance or information please use the following link to contact us again:

http://affiliate-program.amazon.co.uk/gp/associates/contact/

Thank you for participating in the Amazon Associate Programme.

Warmest regards,

Samuel
Amazon.co.uk

So it seems in the worldwide recession, affiliate marketing companies / networks are just being complete cocks to personal web publishers ripping us off left right and centre, I think I’ll just shut down all my affiliate sites and save on hosting costs given the people higher up the chain have lost the capacity to play reasonably.

Free webcam home security solution

Posted by Brad | Posted in Recommendations | Posted on 25-08-2012

So I have a broadband connection, a few computers, a quickcam pro 5000 and the desire to keep an eye on what happens in front of my house when I am not there.. Crap neighbour and foxes amongst other things.. So set up a solution based around yawcam which does all the sorts of things you would expect it to for my favourite price, free.

Using no-ip.org to get a reliable fixed name reference to my home network for free then reserve a LAN ip address for  one home computer and forward incoming ports 8181 and 8888 to that address on my wireless router.

Then setup yawcam so it does motion detection and streaming, the motion detection sends photos of movement via email when it occurs, and the live feed is always available via myname.no-ip.org:8181 which I can password protect

Tweaking the sensitivity and frequency is the tricky bit, I exceeded the smtp allowance of google apps already which I think is 2000 sends in 24 hours

Account sign in details out of date, chrome on iPad

Posted by Brad | Posted in Ramblings | Posted on 02-07-2012

Did you also sign in to the shiny new chrome browser for your beloved iPad only to be greeted by the above crappy confusing error message, suspect your google apps account might be the culprit?… fear not. The solution is simple.

Don’t do what some forums suggest and blank all your sync info in your account… that would be madness … you just need to sign out of your account on other computers which is simple enough to do from the footer of you gmail page by clicking details and then sign out on other computers.

Then when you try to sign in on chrome for iOS you will find all your sync content on the iPad along with the speech recognition that removes the need to type your searches.. Great!

Open DNS impressive number

Posted by Brad | Posted in Recommendations | Posted on 26-10-2011

Apparently open DNS are handling around 34 BILLION requests each day lately, that’s f€%king awesome :)

I used to have open DNS on my computers now I use google DNS, another free service I make use of that I massively recommend if you have websites is cloudflare, king of free caching, minifying and geolocation based IPSec.

The JQuery Datepicker

Posted by Brad | Posted in Coding | Posted on 13-06-2011

[codesyntax lang="html4strict"]

<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>

<script type="text/javascript">
$(document).ready(function () {
$("#datepicker").datepicker();
});
</script>
<title>JQuery Datepicker example</title>
</head>
<body>

<input type="text" id="datepicker" />

</body>
</html>

[/codesyntax]

See how the JQuery Datepicker looks below, the example uses code from the google CDN so is quick to load for your visitors no matter where they are in the world.