Ngeblog 0.1 (Now support ClientLogin Authentication for both versions of Blogger)

Good news for Blogger Beta users, now Ngeblog can be used to manipulate your blog entry. 🙂 download the movie the last exorcism If you’re using previous version of Ngeblog, don’t worry, you still can use all the methods as before, only now you can do more. Especially if you’re using Blogger in beta version. …

Yet Another TextTwist Solver

So, couple days ago, i found this nice Perl script to solve TextTwist games in Priyadi’s blog. And i said to myself, “hmm, i think i can make it too in PHP”. So here you go, <?php function yatts($words) { $pspell_link = pspell_new(“en”); $aword=str_split($words); $length = count($aword); $res=array(); for ( $sublength=3;$sublength<$length;$sublength++ ) { for ( …

How to Access Blogger using PHP and GData Format

If you were like me, you wanted to be able to access Blogger using your own interface. Unfortunately, many Blogger API’s out there still using Atom API, which will be deprecated soon. Google plans to change it using Blogger GData API. What is Blogger GData API? This is what the guidelines said, The Blogger data …