Selasa, 11 September 2012

0 Memasang Fitur Upload Avatar pada Dabr

kemudian masuk ke file common/twitter.php tambahkan code di bawah ini di menu register ‘avatar’ => array( ‘hidden’ => true, ‘security’ => true, ‘callback’ => ‘twitter_avatar_page’, ), masih di dalam file yang sama ...

0 Menambahkan Fitur Tweet Longer dari twtmore.com pada Dabr

Pada file common/twitter.php, cari function twitter_update() { menambahkan coding dibawah ini SEBELUM if ($status) { $callback_key = false; if (mb_strlen($status, ‘utf-8′) > 140) { $reply_to_id = null; if (is_numeric((string) $_POST['in_reply_to_id'])) { $reply_to_id = (string) $_POST['in_reply_to_id']; } $response = post_twtmore_tweet(user_current_username(), ...

0 Feature Mute for Dabr (Twitter Client)

First, you create a file mute.php and place in a /common/ folder, the file contents mute.php with the code below code: <?php function muted_page($query) { /* mute landing page to show the mutedlist account thanks for your respect ...

0 Fitur TweetLonger Kanvaso untuk Dabr (Twitter Client)

Pertama, download dan install dabr package dari sini Kedua, Register dan dapatkan Kanvaso API dari http://api.kanvaso.com/1/register.php Ketiga, tambahkan kode d bawah ini pada bagian config.php pada file dabr mu define('KANVASO_API_KEY', 'Kanvaso_API_Kamu'); Keempat, masuk ke file /common/twitter.php pada file dabr mu cari code if ($status) { kemudian tambahkan kode d bawah ini // shrink ...

0 Fitur TweetLonger WriteLonger untuk Dabr (Twitter Client)

Pertama, cari fungsi twitter_update() di file /common/twitter.php kemudian cari baian: if ($status) { dan sebelem: $request = API_URL.’statuses/update.json’; tambahkan code di bawah ini if (mb_strlen($status, ‘utf-8′) > 140) { $header = ...

0 Fitur Retweet Style untuk Dabr (Twitter Client)

Pertama masuk ke file /common/twitter.com cari code function theme_retweet($status) { $text = “RT @{$status->user->screen_name}: {$status->text}”; ganti code diatas dengan function theme_retweet($status) { if (setting_fetch(‘RT’, ‘on’) == ‘on’) { $text = “RT @{$status->user->screen_name}: {$status->text}”; } if (setting_fetch(‘RT’, ‘off’) == ‘off’) { $text ...

0 Fitur Edit Profile untuk Dabr (Twitter Client)

Buka file common/twitter.php kemudian tambahkan kode di menu_register ‘profile’ => array( ‘security’ => true, ‘callback’ => ‘twitter_profile_page’, ), masih di dalam file yang sama, tambahkan script di bawah ini pada bagian mana aja function twitter_profile_page() { // process form data if ($_POST['name']){ // post profile update $post_data = array("name" ...

0 Fitur Edit Profile untuk Dabr (Twitter Client)

Buka file common/twitter.php kemudian tambahkan kode di menu_register ‘profile’ => array( ‘security’ => true, ‘callback’ => ‘twitter_profile_page’, ), masih di dalam file yang sama, tambahkan script di bawah ini pada bagian mana aja function twitter_profile_page() { // process form data if ($_POST['name']){ // post profile update $post_data = array("name" ...

0 Fitur Linktrans dan LongURL

Kemudian cari function link_trans($url) , function twitter_entities_links($entities_urls,$out) dan function theme_external_link($url, $content = null) . Ganti isi dari fungsi yang disebut diatas dengan code di bawah ini : function link_trans($url) { switch (setting_fetch(‘linktrans’, ‘d’)) { case ‘o’: $atext = $url; break; case ‘d’: $url ...

0 Fitur Edit Profile untuk Dabr (Twitter Client)

Buka file common/twitter.php kemudian tambahkan kode di menu_register ‘profile’ => array( ‘security’ => true, ‘callback’ => ‘twitter_profile_page’, ), masih di dalam file yang sama, tambahkan script di bawah ini pada bagian mana aja function twitter_profile_page() { // process form data if ($_POST['name']){ // post profile update $post_data = array("name" ...

0 Feature Autotext for Dabr (Twitter Client)

How to make it? In common folder, Create a file (eg: autotext.php): code: <?php $autotext= array( ‘:haha:’ => ‘HªªHªª’, ‘:haahaa:’ => ‘=DË?â?¢Ë?=)) Ð&frac12;ªªË?°Ë?Ð&frac12;ªªË?°Ë?Ð&frac12;ªªË?°Ë? =))Ë?â?¢Ë?=D’, ‘:hahaha:’ => ‘Ħαªâ?ºÄ¦Î±Âªâ?ºÄ¦Î±Âªâ?ºâ?¦Â°Ë?â?º’, ); still in folder same too, Create a file (eg: autotext_page.html): code: <div ...

0 Feature User Online Page for Dabr (Twitter Client)

How to make it? Create a file (eg: count.php): code: <?php error_reporting(E_ERROR | E_PARSE); $dataFile = "onlineusers.txt"; if (user_is_authenticated()) { $user = user_current_username(); } // this is the time in **minutes** to consider someone online before removing them from our file // berapa menit tenggang waktu yg dibutuhkan untuk tahu user masih online atau tidak. $sessionTime ...

Sabtu, 08 September 2012

0 BIOLOGI SEL (STRUKTUR DAN FUNGSI SEL)

Biologi sel adalah cabang ilmu biologi yang mempelajari tentang sel. Sel sendiri adalah kesatuan structural dan fungsional makhluk hidupTeori-teori tentang sel- Robert Hooke (Inggris, 1665) meneliti sayatan gabus di bawah mikroskop. Hasil pengamatannya ...

Selasa, 04 September 2012

0 test

twttr.anywhere(function (T) { T("#login").connectButton(); }); twttr.anywhere(function (T) { T("#tbox").tweetBox({ height: 100, width: 400, }); }) ...