Today someone ask me to check his Moodle installation in his website. He used to add resource(s) easily in any course he made and lately he’s unable to […]
SquirrelMail Login Without Domain
I was figuring out how to login to SquirrelMail without typing domain. I got information that I could use a plugin named Vlogin and I also need to […]
Auto Retweet Bot for Twitter
This simple tutorial will show you how to create a simple (ro)bot that will re-tweet (RT) any particular tweets related to your search results in Twitter. In this […]
Insert French Characters Into MySQL
I was developing a bi-lingual website, so my custom CMS should be able to accept and display both English and non English characters. For English characters, it’s a […]
Youtube Downloader – Updated
After failed to work for some weeks, I finally got spare time to finish the Youtube Downloader scripts. To get this script working, you must have readfile() function […]
Current Working PHP Youtube Downloader
I have updated my PHP Youtube Downloader, shorter code but it works. Previous script is no longer working. Direct download at: https://php-youtube-downloader.googlecode.com/files/youtube.lib.php
Menampilkan random foto dari Flickr
Baru saja saya menulis script kecil untuk mengambil gambar secara acak dari account Flickr saya. Script ini membutuhkan CURL dan tidak membutuhkan library XML apapun karena RSS feed […]
Download Youtube with PHP and CURL
This is an update for my previous Youtube Downloader. If you don’t know what is PHP Youtube Downloader, it is a simple PHP script that we can use […]
Kesalahan yang tak termaafkan
Salah satu kesalahan nenek moyang yang tidak mungkin saya maafkan adalah karena mereka tidak ngeblog menuliskan cara membuat candi sehingga saya tidak bisa membuat candi seperti mereka.
Youtube downloader is working!
For more than a month my youtube downloader script was not working due to youtube changed their layout. Today I’ve rewritten the script and simplified the functionality. Now […]
Penyederhanaan PHP Youtube downloader
Setelah lama tidak bisa berfungsi, akhirnya youtube downloader saya bisa digunakan lagi. Secara teknis ada penyederhanaan script yang saya gunakan. Sekarang tidak perlu pusing seandainya layout halaman youtube.com […]
PHP code highlight
This script will highlight string inside [code] and [/code] only. < ?php // function to call function highlight_code($txt){ $hasil = preg_replace_callback('{[code]((.|n)+?)[/code]}i',"replace_code", $txt); return $hasil; } // main function […]