Author Archives: cahpct

Mendengar

mendengarSeringkali saya memperhatikan orang pintar untuk berbicara berargumentasi dan mumpuni dalam melobi. Dari cara bicaranya kelihatan cerdas terlihat bagaimana intelktualiasnya  dalam tataran  tingkat yang tinggi. Dalam memberikan ceramah di depan ratusan bahkan ribuan terlihat lantang jagonya dalam hal public speakking dan terlihat tidak ada celah atau minus yang dimiliki.

Sebagai seorang pemimpin dia terlihat begitu berwibawa dan pintar dalam segala hal. Tapi di balik itu semua orang – orang sekitar melihat bahwa dia adalah pribadi yang bawel suka ngoceh dan malah terlihat angkuh. Salah satu hal yang perlu di perhatikan adalah dia saking pedenya jarang mendengar dan meraba bagaimana orang lain melihat dirinya bagaimana orang lain tidak hanya menjadi pendengar tapi juga ingin di denarkan . Kemampuan mendengar dan kepedulianya kurang peka. Hal seperti ini sangat perlu mendapatkan perhatian dalam berhubungan dengan orang lain.

Hal yang paling buruk adalah mengaharapkan orang lain mendengar tapi dirinya sendiri tidak mau mendengar lambat laun pasti akan membawa efek negatif dalam kehidupan. Rasullulah salah seorang contoh yang memberikan pelajaran bahwa apabila berbicara perhatikan lah wajahnya dan dengarkan dan perhatikan saudaramu kurang lebih maknanya seperti itu . Luar biasa pelajaran moralitas tinggi.

Saya pribadi kalau berbicara di dengarkan di mengerrti bahkan bisa mendapatkan respon saya merasa senang nyaman bahkan saya  akan memberikan penghormatan terhadap orang yang mau mendengarkan tersebut. Sungguh mulia seseorang yang mau mendengarkan orang lain tidak hanya di dengarkan.

Bagaimana menjadi pendengar yang baik? akan saya lanjutkan di posting berikutnya .


Post2blog

This morning I try post via new software that I had installed yesterday. The software called Post2Blog it is the other way posting without login to the administrator area in my blog. Is most easier and also have good performance like Microsoft words. My first post is very easier and fast and this software very helpful to post to our blog.

You can find the software in their official web and this software actually free to use without pay any dollar in there. This is the site link to download this software Post2Blog. Let’s get post to blog now.

Try Post2Blog

postThis morning I try post via new software that I had installed yesterday. The software called Post2Blog it is the other way posting without login to the administrator area in my blog. Is most easier and also have good performance like Microsoft words. My first post is very easier and fast and this software very helpful to post to our blog.

You can find the software in their official web and this software actually free to use without pay any dollar in there. This is the site link to download this software Post2Blog. Let’s get post to blog now.

Giving your users changeable or custom headers in themes

Built in to WordPress, and also available for WordPress MU, is the Custom header API. This service allows you to quickly add some code to a theme’s fuinctions.php file to make the header area completely customizable. User will be able to upload a header image of their choice on their chosen theme, without affecting other blogs using the same theme.

You may want to try this first on a test site of WPMU.

First, check and see if your theme has a functions.php file included. If it doesn’t, make a blank file called functions.php. If it already has code in it, which it will if the theme is widget enabled, then you can paste this code in right before the last ?> tag.

//make changeable header

define('HEADER_TEXTCOLOR', '');
define('HEADER_IMAGE', 'setta.jpg'); // %s is theme dir uri and image filename
define('HEADER_IMAGE_WIDTH', 985);  // make sure these values match the theme header
define('HEADER_IMAGE_HEIGHT', 200);
define( 'NO_HEADER_TEXT', true );

function atypxmas_admin_header_style() {   // change atypxmas to your theme name
?>

// this part adds the header in the admin area
#headimg {
height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
}

#headimg h1, #headimg #desc {
display: none;}
}

function header_style() {
?>

#header{
background: url(<?php header_image() ?>) no-repeat;}
}

add_custom_image_header(’header_style’, ‘atypxmas_admin_header_style’);  // change atypxmas to your theme name you used above.

And that’s it! Everything else is handled internally by WordPress. To make things even easier, here’s a copy of a sample functions.php file. Please read the code and change the values accordingly for your specific theme, including the filename.