Unique Article Wizard Review
I'd like to briefly summarize my experience of using expensive promotion tool called Unique Article Wizard. I was sincerely hoping to get certain amount of quality backlinks for a short period of time and spunned about 5 articles. Service costs $67 per month! keep it in mind. You want to know how many backlinks i got back ? Report said artice was submitted to 253 blogs/email recipients. And i got around 14 backlinks. Really. Fourteen. for $67 . Quite expensive. So my review is negative, totally negative.
Don't tell me i have to write more articles , etc. main reason is the resources they use - they send articles to emails, some splogs (autopilot driven blogs) which are rarely indexed by serch engines and that why so bad result. So if you want to have a good quality backlinks try to find something else. UAW worth nothing and if my opinion will save you this money i will be more than happy. Just stay away from this genius marketers who does nothing except earning money from you. Ah i forgot to tell that i was using it in February so its 3 months behind and still 14 backlinks
UAW is NO GO!
JSON associative array – differences between Webkit and others
Recently found very interesting and sad issue when processing JSON results
assume you have following associative array
var a = {{"5":"five"},{"4":"four"},{"3":"three"},{"2":"two"},{"1":"one"}}
now
for(var n in a){
document.write(i + " = " + a[i] + "<br/>") ;
}
Result in Firefox:
5 = five
4 = four
3 = three
2 = two
1 = one
looks correct
now run in Chrome
Result
1 = one
2 = two
3 = three
4 = four
5 = five
Seem like Chrome autoconverted our associative array to numeric
just keep in in mind when processing such arrays. in my scenario it was when i was processing database results returned in jQuery.ajax and result was JSON associative array with IDs as keys. i have had to discard associative arrays and have regular.
Add SSL support to some of your wordpress pages
I just created special tiny plugin that adds support of SSL to some pages -- it means that you can configure which pages you want to be SSL protected and they will become them (all internal links, etc) - bascially there is no worrying about anything - all is done automatically. It a very handy solutions for ecommerce blogs. Plugin is hand made now but if there are demand i can release it to public domain - just let me know the need.