Category: Other

‘Imlek’ festivity no longer family activity, Happy Chinese New Year

Children from various ethnic backgrounds happily shouted or knocked on doors of houses of Indonesian-Chinese around their neighborhoods asking for angpao distributed during  Imlek Chinese New Year.
Others played in the street, performing a modified barongsai lion dance in various forms while their parents either sold snacks and accessories typical to Imlek or visited their Chinese neighbors.
At least that was how Jakarta residents used to celebrate Imlek before the New Order government (1966-1998), an observer of Chinese culture, Tedy Jusuf, recalled.
“Imlek used to be a kind of festivity for all citizens before it was restricted under Soeharto’s [New Order] administration,” he told The Jakarta Post recently.
When Soeharto took office in 1967, such cheer was no longer seen since the president issued the 1967 Presidential Instruction on Religion, Beliefs and Chinese Culture in Indonesia.  Read More

Possibly related posts: (automatically generated)

Happy Valentine’s Day

keluargaku Happy Valentine’s Day

tOday:  Simbok sakit, adik Ultah, Happy Valentine…. miss my familly..

Aardvark has been acquired by Google

googlevark Aardvark has been acquired by Google Aardvark has defined a new kind of social search: sometimes you want a person, not a web page, to answer your question. We’re extremely excited that Google shares our vision for how search can continue to evolve by including social features.

We have spent the past two years carefully designing and building Aardvark, combining our own vision with a rigorous user-driven development process. This acquisition represents an incredible opportunity to accelerate this development, working with some of the most amazing folks in the industry to offer a new kind of search to hundreds of millions of people.

As a first step, effective immediately, Aardvark will be available through Google Labs. Aardvark will remain fully operational and completely free, providing quick, helpful answers to all of your questions. You can sign up here.

As we move forward, we will continue working on Aardvark : improving its speed and quality, building exciting new features, responding to your feedback, and providing the highest level of support.  Our top priority has been, and remains, providing a high-quality user experience.

We want to thank our great investors and advisors for helping make Aardvark a reality.  And most of all, a big thank you to all the Aardvark users, for your incredible feedback and support. We’re honored by your participation in the social search revolution, and we’ll continue working hard to earn it.

We’ve put together a brief FAQ below to answer questions for our users and the press about the acquisition.

Google Buzz Button Wordpress plugin

buzzet Google Buzz Button Wordpress plugin

Google Buzz Button For Wordpress

  • Contributors: Tejaswini Deshpande, Sanjeev Mishra
  • Tags:social,sharing,css,simple,google buzz,bookmark,share
  • Donate link: http://clickonf5.org/go/paypal/smooth-sliderRequires at least: 2.7
  • Tested up to: 2.9.1Stable tag: 1.0.0

Description
Google Buzz Button will add a Google Buzz Bookmark button to your Wordpress posts/pages. The button can be inserted manually or before or after the content automatically. There is an option for this.
Features:

  1. One Click and you get the Google Buzz Button
  2. Option to insert the button automatically before or after the post
  3. Option to insert the button manually anywhere within the Wordpress Loop

Plugin Information

For validator, Replace this

&title to &title and &srcURL to &srcURL

Or full code

/*
Plugin Name: Google Buzz Button For Wordpress
Plugin URI: http://www.clickonf5.org/google-buzz-button-wordpress
Description: It adds Google buzz button to your post/page
Version: 1.0.0
Author: Tejaswini, Sanjeev
Author URI: http://www.clickonf5.org/
Wordpress version supported: 2.7 and above
*/

/*  Copyright 2009  Internet Techies  (email : tedeshpa@gmail.com)

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/
define("GOOGLE_BUZZ_BUTTON","1.0",false);
function google_buzz_url( $path = '' ) {
global $wp_version;
if ( version_compare( $wp_version, '2.8', '<' ) ) { // Using WordPress 2.7       $folder = dirname( plugin_basename( __FILE__ ) );       if ( '.' != $folder )           $path = path_join( ltrim( $folder, '/' ), $path );      return plugins_url( $path );    }   return plugins_url( $path, __FILE__ ); } //on activation, your CAA forms options will be populated. Here a single option is used which is actually an array of multiple options function activate_google_buzz() { global $google_buzz_options;  $google_buzz_options = array('rel'=> 'nofollow',
'location'=>'after',
'width'=>'50',
'height'=>'58');
add_option('google_buzz_options',$google_buzz_options);
}
global $google_buzz_options;
$google_buzz_options = get_option('google_buzz_options');
register_activation_hook( __FILE__, 'activate_google_buzz' );

function add_google_buzz_button_automatic($content){
global $google_buzz_options, $post;
$p_title = get_the_title($post->ID);
$google_buzz_button = '<a class="google_buzz" href="http://www.google.com/reader/link?url='.get_permalink( $post-&gt;ID ).'&amp;title='.str_replace(' ','+',$p_title).'&amp;srcURL='.get_bloginfo(&lt;br /&gt; 'url' ).'">
target="_blank" rel="'.$google_buzz_options['rel'].'"&gt;<img src="'.google_buzz_url('/images/google-buzz.png').'" alt="Google Buzz" /></a>';
if($google_buzz_options['location'] == 'before' ){
$content = $google_buzz_button.$content;
}
else{
$content = $content.$google_buzz_button;
}
return $content;
}
if ($google_buzz_options['location'] != 'manual'){
add_filter('the_content','add_google_buzz_button_automatic');
}

function add_google_buzz_button(){
global $google_buzz_options, $post;
$p_title = get_the_title($post-&gt;ID);
$google_buzz_button = '<a class="google_buzz" href="http://www.google.com/reader/link?url='.get_permalink( $post-&gt;ID ).'&amp;title='.str_replace(' ','+',$p_title).'&amp;srcURL='.get_bloginfo(&lt;br /&gt; 'url'&lt;br /&gt; ).'">
target="_blank" rel="'.$google_buzz_options['rel'].'"&gt;<img src="'.google_buzz_url('/images/google-buzz.png').'" alt="Google Buzz" width="'.$google_buzz_options['width'].'" height="'.$google_buzz_options['height'].'" /></a>';
echo $google_buzz_button;
}

// function for adding settings page to wp-admin
function google_buzz_settings() {
add_options_page('Google Buzz', 'Google Buzz', 9, basename(__FILE__), 'google_buzz_options_form');
}

function google_buzz_options_form(){
global $google_buzz_options;
?&gt;
<div class="wrap"><form action="options.php" method="post">
<h2>Google Buzz Button Options</h2>
<table class="form-table">
<tbody>
<tr valign="top">
<th scope="row">Rel Attribute</th>
<td><input id="item_name" class="regular-text code" name="google_buzz_options[rel]" type="text" value="&lt;?php echo $google_buzz_options['rel']; ?&gt;" /></td>
</tr>
<tr valign="top">
<th scope="row">Location of the button</th>
<td><select id="location" name="google_buzz_options[location]"> <option value="before"> &gt;Before Content</option> <option value="after"> &gt;After Content</option> <option value="manual"> &gt;Manual Insertion</option> </select>(Use template tag <code>add_google_buzz_button();</code> for Manual Insertion)</td>
</tr>
<tr valign="top">
<th scope="row">Icon Width</th>
<td><input id="item_name" class="small-text" name="google_buzz_options[width]" type="text" value="&lt;?php echo $google_buzz_options['width']; ?&gt;" /></td>
</tr>
<tr valign="top">
<th scope="row">Icon Height</th>
<td><input id="item_name" class="small-text" name="google_buzz_options[height]" type="text" value="&lt;?php echo $google_buzz_options['height']; ?&gt;" /></td>
</tr>
</tbody>
</table>
<p class="submit"><input class="button-primary" type="submit" value="&lt;?php _e('Save Changes') ?&gt;" /></p>

</form></div>

Introducing Google Buzz

What is Google Buzz?
Google Buzz
Google Buzz is a new way to share updates, photos, videos and more, and start conversations about the things you find interesting.


Kembalilah

Inikah yang kau mau? Benarkah ini janjimu? Hanya engkau yang ku tuju.
Pegang erat tanganku, bimbing langkah kakiku, Aku hilang arah tanpa hadirmu, dalam gelapnya malam hariku..

February is Valentine’s Month?

Driver Lenovo 3000 G410 Windows XP

apa%20ya Driver Lenovo 3000 G410 Windows XP List of Lenovo 3000 G410 Windows XP Drivers
Just a little collections for Reinstall Windows Without Headache !%@$#%#!

  1. Intel Chipset
  2. Intel GMA graphics (VGA)
  3. RealTek High Definition (Audio)
  4. Motherboard Driver Audio Microsoft BUS (For High Definition Audio RealTek)
  5. Modem
  6. Broadcom NetXtreme (Ethernet LAN)
  7. Broadcom 802.11b/g WLAN (Wireless) !%@$#%#! the original driver from lenovo is not work. I put this from HP Nov 2008 versions or install the original driver than update your driver from Windows Update. Broadcom Network software update released in October, 2008 .
  8. Realtek USB 2.0 (Card reader)
  9. EnergyCut (Power management)
  10. Alps touch pad (Mouse)

My Life is Twilight

My Life Is Twilight  I don’t think I could be any more obsessed (minjem istilahnya http://www.mylifeistwilight.com). Jangan suruh ngartikan, aku nggak tau artinya. Pokoknya pengen nulis di blog. Whatever People Say I Am, That’s What I’m Not

Menek Tower

Panjat Tower

çªρÈ ÐéΗ

Testing Wavr WordPress Plugin

[wave id="wavesandbox.com!w+lO97_ZsqA"]

How to find the Google Wave Id?

On the Sandbox: Simply use the Debug-menu on the top-right. Open the wave on Google Wave and click on Debug -> Get Current Wave ID. Make sure you use the full wave id (something like wavesandbox.com!w+MNJWKLNa%A) (Thanks to Michael Kamleitner )

On the wave preview (Or when you don’t have the Debug menu): Open the wave and look at the location bar. You will see something like this: https://wave.google.com/wave/?pli=1#restored:wave:googlewave.com!w%252Big2e7T0UC.13

The wave id is the part after

wave:

, in this case,

googlewave.com!w%252Big2e7T0UC.13

You will have to take the part after the ‘.’ out, and replace %252B with + so in our case the final wave id would be:

googlewave.com!w+ig2e7T0UC

YouTube Badges

watchmyvids2 yt YouTube Badges

Downloadable creative assets to help package and promote your YouTube presence onsite and off. Place these badges on your web site and link them to your YouTube channel.

200x35 as seen blue YouTube Badges200x35 as seen green YouTube Badges200x35 as seen grey YouTube Badges

200x35 as seen orange YouTube Badges200x35 as seen red YouTube Badges200x35 as seen white YouTube Badges

200x65 watchmeon blue YouTube Badges200x65 watchmeon green YouTube Badges200x65 ytsuperstar blue YouTube Badges

200x65 ytsuperstar green YouTube Badges200x65 ytsuperstar grey YouTube Badges200x65 ytsuperstar orange YouTube Badges


asseenon yt YouTube Badges

findmeon yt YouTube Badges

iheart yt YouTube Badges

200x120 watchme blue YouTube Badges