let me be brief, after updating to 3.9 i noticed that i cant edit image's style attribute! New wordpress allows me to edit class but i cant add style which was very important to me. very sad but this will force me to develop extra magic style expansion plugin. Stay tuned.
How to quickly generate strong password
Sometimes you really need a strong password and if you do not have enough of monkey skills to type something like a AhJjk%6Kl!5fSghM.t6Zz0
you can go to https://signup.wordpress.com/signup/ (yes wordpress signup page) they have brilliant button Generate strong password. Click on it untill you see somehting great for your needs. Quite simply. However typing password in upper paragrapth took me a bit less time 🙂
How to remove all outgoing links from all your wordpress posts
recently found a problems that i have used some automatic content spinning systems to fill my blogs with someone else links, that's coll until panda came. now i'm getting lots of emails from people asking to remove unnatural links (cool - why unnatural , google ?)
finally open your themes functions.php and add the following to make this task automated:
// Filter the_content
add_filter('the_content', 'rbl_remove_just_links');
// Le function
function rbl_remove_just_links($content)
{
// Search & remove link markup for all links
return preg_replace('!<a[^>]+href=[\'"]https{0,1}:[^>]+>(.+?)</a>!ism', '<em>$1</em>', $content);
}
WordPress are still dominating as CMS
All the time i ws sure and its like that : WP dominates in the world of cms AS THE MOST CONVENIENT TOOL. Not a question but its a extemely money niche for designers/developers
Server with SSD Drive
few days ago i upgraded my hosting server to new one that has SSD drive, must say that I've put all mysql databases to it and it works a lot faster - performance greatly increased due to this upgrade.
I also go laptop with SSD - must say that i will definitely prefer SSD nowdays.
Here we go again
Alright, after a while i'm back on WP development. We are going to create very nice eCommerce solution with many payment options. Its called sms4pc ans is a awesome tool to send sms from your computer
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.