Where's my logo?
Recent Posts
  • CodeIgniter Community Voice - HOWTO: Set up a CodeIgniter project in Subversion CodeIgniter Community Voice - HOWTO: Set up a CodeIgniter project in Subversion

    EllisLab is blessed with two of the greatest communities that can be found anywhere on the internet in ExpressionEngine and more recently CodeIgniter.  Despite being a relative newcomer to the scene, the people attracted to CodeIgniter are am..

  • CodeIgniter 1.7.0 Released CodeIgniter 1.7.0 Released

    Code Igniter Version 1.7 has been released.  This version contains a number of new features and enhancements, as well as many small improvements and bug fixes. For a list of all changes please see the

  • CodeIgniter Community Voice - HOWTO: Set up a CodeIgniter assignment in Subversion CodeIgniter Community Voice - HOWTO: Set up a CodeIgniter assignment in Subversion

    EllisLab is blessed with two of the greatest communities that can be found anywhere on the internet in ExpressionEngine and more recently CodeIgniter.  Despite being a relative newcomer to the scene, the people attracted to CodeIgniter are am..

  • CodeIgniter Community Voice - Generating PDF files using CodeIgniter CodeIgniter Community Voice - Generating PDF files using CodeIgniter

    EllisLab is blessed with two of the greatest communities that can be found anywhere on the internet in ExpressionEngine and more recently CodeIgniter.  Despite being a relative newcomer to the scene, the people attracted to CodeIgniter are am..

  • CodeIgniter Community Voice - Lee?s Lost Bet CodeIgniter Community Voice - Lee?s Lost Bet

    EllisLab is blessed with two of the greatest communities that can be found anywhere on the internet in ExpressionEngine and more recently CodeIgniter.  Despite being a relative newcomer to the scene, the people attracted to CodeIgniter are am..

Recent Comments
  • Anggara Says : menurut mas, setuju engga..
  • - s L i K e R s - Says : waduh itu apaan ya, gak n..
  • budex Says : outputnya variabel keywor..
  • indra Says : thanks, but it really dep..
  • Xrvel Says : Nice trick, bro
  • bunk Says : mas, minta virus scannya ..
  • d. scully Says : very informative. thank y..
  • xhinsx Says : rancu banget definisi por..
  • zigouras Says : ntar pertandingan tinju d..
  • kaka Says : emang otak anggota dwn qt..
  • Squeaky Says : That is a very simple thi..
  • Sacx from Dofollow.us Says : I heard about this scanda..
  • mr.x Says : kolam renang indoor dmn y..
  • heloo Says : l;dfkgdf dfgfdg dfgfdg
  • SweetWinter Says : Thanks!
  • OBeh Says : katanya tetep jalan tuh, ..
  • Korekapi Says : disini ga bisa konek ke r..
  • Korekapi Says : di tempatku kok ga bisa m..
  • Arief Says : lebih bagus dari lagu asl..
  • White Bunny Says : Diliat dari 2 sisi ya gak..
Random Articles
Penampakan UFO di Juanda
  Kemarin hari Jumat 25/7 malam Benda bercahaya warna warni di atas langit tak jauh dari Bandara Juanda, Sidoarjo kembali terlihat. Benda yang berhasil direkam itu bentuknya menyerupai burung. UFO atau layang-layang?

Tags - Del Tec Bli Spu Dig
Crank That remix by Travis Barker
Video lama sih, tapi keren banget, coba liat deh...div>

Tags - Del Tec Bli Spu Dig
Ada yang mau pelihara anjing ini
Melas banget mukanya


tolong.. pelihara dooonkk.... :)
Tags - Del Tec Bli Spu Dig
Naruto template fo bloger
Mau template Naruto untuk bloger?


Download:
http://miniup.net/file.php?file=fcd72250fcd46162eaaf52cb5257336e
Tags - Del Tec Bli Spu Dig
Hati-hati ganti templates wordpress
Bagi yang punya blog wordpress, hati2 dengan themes/template yang gratisan. periksa dulu kodenya. Terutama di bagian footer.php.
Aku ga tau yang pertama mulai siapa, atau semacam kode etik wordpress? meng enkrip text copyright yang ada di footer.

Di satu sisi, ini memang diperlukan karena banyak user wordpress diluar sana yang memakai template buatan seseorang tapi ga mau mengakui bahwa itu buatam orang lain, alias copyright textnya dihapus. Ga 100% salah sih, soalnya kadang copyright text ada 'iklan' nya juga. :D

Kembali ke topik awal, kenapa harus hati2? kadang ada template maker yang memberi script untuk ping ke situs miliknya. Untuk apa? untuk page rank tentu saja. Jadi sebelum pake template, ada baiknya untuk diperiksa dulu bagian footernya.

Dan satu lagi, aku ga tau ada hubungannya dengan ini ato ga. Di salah satu situs klien ada pengunjung aneh. Nih pengunjung punya IP luar (non indonesia) tapi menduduki peringkat pertama dalam hal bandwidth consumption. Padahal situsnya berbahasa Indonesia. Aneh
Tags - Del Tec Bli Spu Dig
Rapidshare error?
Dari tadi mau coba download dari rapidshare ga bisa terus.. katanya
"You have reached the limit for Free users. Would you like to download more?
Become a Premium member now! The download will be available shortly! Alternatively you can wait 1 minutes."
Bah, padahal dari tadi ga ada download, orang di kantor yang lagi download juga cuma aku. IP juga dedicated.
Anehnya disuruh tunggu 1 menit terus, ga berubah2 dari tadi
Tags - Del Tec Bli Spu Dig
Foto Skandal Max Moein
Kalo ada yang blm liat ini dia.. bener atau ga nya jangan tanya Roy Suryo, paling dia liat metadatanya :))

 
Katanya sih diambil pas mau berenang. Jarang ada lho kolam renang indoor :P
 
Tags - Del Tec Bli Spu Dig
Uniqlock
Tags - Del Tec Bli Spu Dig
Keyword suggestion script using Yahoo API on PHP
Keyword is an important part of making SEO friendly page, So we need to create keyword that is suitable for us yet popular keyword as for search engine. Creating list of keyword iss easy, but what about creating keyword that is popular now, you want the answer? then ask Yahoo..
This script made it easy using Yahoo API. Just provide a string and it will procesed it into rich keyword
This script created using cURL on PHP
The flow is
  1. Connect using POST to http://api.search.yahoo.com/ContentAnalysisService/V1/termExtraction'
  2. Bring Yahoo App ID and text content using POST method
  3. The output will be a XML file
  4. Parse the file to get the keywords
  5. done..

Process:

$string = 'Your text here, can be blog post, article, or just gibberish:)';
$post_data = array('appid' => 'YOUR',
                                   'context' => urlencode($string));

$url = 'http://api.search.yahoo.com/ContentAnalysisService/V1/termExtraction';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$xml = curl_exec($ch);
curl_close($ch);     
 


It will give an XML output.So we need to parse it:

$keywords = array();

$xml_walk = new XMLReader();
$xml_walk->XML($xml);

while ($xml_walk->read())
    {       
        if ($xml_walk->value != '' && $xml_walk->depth == 2)
            $keywords[] = $xml_walk->value . ', ';                       
    }
 


So the full script wil be:

    $string = 'Your text here, can be blog post, article, or just gibberish:)';
    $post_data = array('appid' => 'YOU APP ID',
                       'context' => urlencode($string));

    $url = 'http://api.search.yahoo.com/ContentAnalysisService/V1/termExtraction';

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
    $xml = curl_exec($ch);
    curl_close($ch);   
   
    $keywords = array();

    $xml_walk = new XMLReader();
    $xml_walk->XML($xml);

    while ($xml_walk->read())
    {       
        if ($xml_walk->value != '' && $xml_walk->depth == 2)
            $keywords[] = $xml_walk->value . ', ';                       
    }
 


You will need yahoo application developer to make this script work, to get it, just register at Yahoo, answer anything what they need to know, then you will get your ID right away.
But if you in a hurry, contact me to get my Yahoo Application ID
Tags - Del Tec Bli Spu Dig
Web proxy script using cURL in PHP
cURL can be used to access webpage using script. In this example we using it to create web anonymous proxy

Process:

$url = 'google.com';
$proxy = '0.0.0.0:0';
$cUrl = curl_init();
curl_setopt($cUrl, CURLOPT_URL, $url);
curl_setopt($cUrl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($cUrl, CURLOPT_HTTPPROXYTUNNEL, 1);
curl_setopt($cUrl, CURLOPT_PROXY, $proxy);
$PageContent = curl_exec($cUrl);
curl_close($cUrl);

echo 'Web Anonymous Proxy.';
echo $PageContent;
 


Add some input field then:

<?php
if($_POST) {
    $url = $HTTP_POST_VARS['url'];
    $proxy = $HTTP_POST_VARS['proxy'];
    $cUrl = curl_init();
    curl_setopt($cUrl, CURLOPT_URL, $url);
    curl_setopt($cUrl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($cUrl, CURLOPT_HTTPPROXYTUNNEL, 1);
    curl_setopt($cUrl, CURLOPT_PROXY, $proxy);
    $PageContent = curl_exec($cUrl);
    curl_close($cUrl);

    echo 'Web Anonymous Proxy.';
    echo $PageContent;
    die();
}
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
    <title>Web Proxy</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
    <form method="POST" enctype="multipart/form-data">
        <table>
            <tr>
                <th>URL:</th>
                <td><input type="text" name="url" value="indraprasetya.info"></td>
            </tr>

            <tr>
                <th>Proxy IP Address:Port</th>
                <td><input type="text" name="proxy" value="66.220.32.242:8080" /></td>
            </tr>
            </tr>
            <tr>
                <td colspan="2" style="text-align:center;"><input type="submit" value="Go" /></td>
            </tr>
        </table>
    </form>
</body>
 


Simple right, try it...
Tags - Del Tec Bli Spu Dig
Page 2/4 < 1 2 3 4 > >|