Minggu, 30 Juni 2013

Menampilkan Widget Tertentu Di Halaman Tertentu

Menampilkan Widget Tertentu Di Halaman Tertentu - Ketika kita sedang menuju blog seseorang, terlihat tampilan widget blog tersebut kadang ganti-ganti. Misalnya, di halaman depan Wigdet A, di halalaman lainnya Widget A tidak muncul. Ada apa gerangan....

Menampilkan Widget Tertentu Di Halaman Tertentu

Sebenarnya, ada beberapa cara yang dilakukan oleh blogger untuk melakukan hal tersebut. Maksudnya Menampilkan Widget Tertentu Di Halaman Tertentu. Mau tahu?

Beginilah caranya secara umum (tips ini tujuannya adalah mempercantik tampilan blog).

1. Menampilkan widget hanya di halaman depan saja (homepage)

<b:if cond='data:blog.url == data:blog.homepageUrl'>
......................................................
</b:if>

2. Menampilkan di semua halaman kecuali homepage.

<b:if cond='data:blog.url != data:blog.homepageUrl'>
......................................................
</b:if>

3. Menampilkan widget hanya di halaman Archive saja.

<b:if cond='data:blog.pageType == &quot;archive&quot;'>
......................................................
</b:if>

4. Menampilkan widget di semua halaman kecuali halaman archive.

<b:if cond='data:blog.pageType != &quot;archive&quot;'>
......................................................
</b:if>

5. Menampilkan widget hanya di halaman posting.

<b:if cond='data:blog.pageType == &quot;item&quot;'>
......................................................
</b:if>

6. Menampilkan widget di semua halaman, kecuali halaman posting.

<b:if cond='data:blog.pageType != &quot;item&quot;'>
......................................................
</b:if>

7. Menampilkan widget hanya di postingan tertentu saja.

<b:if cond='data:blog.pageType == &quot;alamat-postingan&quot;'>
......................................................
</b:if>

8. Menampilkan widget selain di postingan tertentu.

<b:if cond='data:blog.pageType != &quot;alamat-postingan&quot;'>
......................................................
</b:if>

9. Menampilkan widget hanya di halaman staticpages.

<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
......................................................
</b:if>

10. Menampilkan widget di semua halaman, kecuali halaman staticpages.

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
......................................................
</b:if>

Catatan : Tanda Titik - titik di atas adalah kode widget yang harus di tempatkan

Sebagai Contoh perhatikan di bawah ini.
Coba anda menuju Dunia Sarah. Di halaman depan Widget Fan Facebook tidak muncul. Lalu di halaman kedua ketika klik sebuah artikel, maka Widget Fan Facebook muncul. Untuk melakukan hal itu silahkan coba ikuti langkah berikut.

Menampilkan Widget Tertentu Di Halaman Tertentu
1. Tentunya anda harus buka akun blog anda sendiri.
2. Masuklah ke Elemen Template. Lalu klik Edit HTML
3. Carilah widget yang anda sembunyikan (sebelumnya anda sudah memasang widget di dalam blog anda).
4. Misalnya Widget Fan Facebook. Silahkan cari tulisan "Fan Facebook" (gunakan Ctrl + F untuk mencari secara cepat)
5. Setelah ketemu, maka akan muncul kode persis seperti dibawah ini.
<b:widget id='HTML4' locked='false' title='Fan Facebook' type='HTML'> <b:includable id='main'><!-- only display title if it's non-empty --><b:if cond='data:title != &quot;&quot;'><h2 class='title'><data:title/></h2></b:if><div class='widget-content'><data:content/></div><b:include name='quickedit'/> </b:includable> </b:widget>
6. Selanjutnya tambahkan kode

<b:if cond='data:blog.pageType == &quot;item&quot;'>

sebelum kode

<!-- only display title if it's non-empty -->

7. Setelah ditambahkan lalu masukkan kode </b:if> sebelum kode

</b:includable>
</b:widget>

8. Maka hasilnya akan persis seperti di bawah ini.
<b:widget id='HTML4' locked='false' title='Fan Facebook' type='HTML'> <b:includable id='main'><b:if cond='data:blog.pageType == &quot;item&quot;'><!-- only display title if it's non-empty --><b:if cond='data:title != &quot;&quot;'><h2 class='title'><data:title/></h2></b:if><div class='widget-content'><data:content/></div><b:include name='quickedit'/></b:if> </b:includable> </b:widget>
9. Selesai. Simpan Template blog anda.

Catatan : Huruf yang berwarna biru adalah Kode yang ditambahkan. Ingat satuhal, penempatannya jangan salah yah. Harus pas. Kalao gak pas, maka eror. Untuk mengantisipasinya, sebaiknya sebelum memulai langkahlangkah di atas, Simpan Template Blog anda terlebih dahulu.

Okay sudah yah... Bos kira sudah cukup dulu mengenai Menampilkan Widget Tertentu Di Halaman Tertentu. Semoga bisa dipergunakan sebaik mungkin. Salam blogger semoga bermanfaat dan selamat mencoba.

Cara Membuat Read More Otomatis Tanpa Javascript

Cara Membuat Read More Otomatis Tanpa Javascript - Ketika membuat blog baru, biasanya tampilan blog masih biasa-biasa saja. Artinya kita masih menggunakan tampilan blog yang diberikan oleh Blogger sendiri. Seiring dengan waktu, muncul kebosanan dan ingin menggantinya dengan yang lain. Ada yang menggunakan template yang dinamis, atau mengutak-atik tampilan blog sesuai keinginan.

Cara Membuat Read More Otomatis Tanpa Javascript

Cara Membuat Read More Otomatis Tanpa Javascript
Read More atau baca Selanjutnya dibuat agar tampilan blog terlihat lebih rapi dan elegan. Tujuannya agar tampilan bloh ketika pertama kali dibuka bisa terlihat banyak cuplikan artikel. (Baca disini Cara mempercantik Blog). Dengan begitu, pengunjung bisa melihat cuplikan-cuplikan yang ada di dalam blog kita dan memilihnya satu persatu. Perlu diketahui, bahwa cara membuat read more dibedakan menjadi dua, yaitu read more otomatis dan manual.

Read More cara menual, dengan memanfaatkan Insert Jump Break pada posting blog, dimana setiap kali ingin posting artikel baru, kita akan mengklik icon / fasilitas Insert Jump Break. Cara ini pastinya kita harus melakukannya setiap menulis artikel (bila lupa maka read more tidak muncul) --> Baca Disini selengkapnya mengenai Membuat Read More Cara Manual.

Sementara Cara Membuat Read More Otomatis ada dua juga, yaitu dengan menggunakan Javascript dan Tanpa Javascript. Read More Otomatis dengan menggunakan Javascript biasanya memanfaatkan pihak ketiga tempat penyimpanan data script. Seperti .JS dan lain-lain. Info yang Bos Tutorial himpun, bahwa menggunakan cara ini, Google sendiri tidak menyukainya. Bisa jadi alasannya banyak. Oh iya, apabila anda menggunakan template yang dinamis, biasanya sudang menggunakan cara ini. So... tidak usah lagi anda menggantinya dengan yang baru. (abaikan saja tulisan ini).

Cara Membuat Read More Otomatis Tanpa Javascript inilah yang akan kita paparkan disini. Cara ini tidak menggunakan situs pihak ketiga, karena langsung masuk ke script HTML blog kita. Menggunakan cara ini ada manfaatnya, dimana template blog anda akan menjadi lebih SEO Friendly dan ringan. Cara atau trik ini kita akan memanfaatkan kode yang digunakan oleh tampilan mobile blogspot, yaitu post snippet. Oleh karena itu, dalam script HTML blog kita, dilakukan penambahan kode. Ikuti beberapa langkah di bawah ini.

Langkah / Cara Membuat Read More Otomatis Tanpa Javascript
1. Bukalah Akun Blog anda yang sebenarnya (jangan blog orang lain) bila anda memiliki banyak blog dalam satu akun, silahkan pilih salah satu blog saja.
2. Pilih Elemen Template, kemudian lanjutkan dengan klik Edit HTML
3. Lalu cari kode ]]></b:skin>, untuk mempermudah silahkan menggunakan ctrl+f
4. Copy / salin kode di bawah ini dan letakkan tepat di atas kode ]]></b:skin>

.post-thumbnail{float:left;margin-right:20px}

5. Jangan beranjak dulu, masih seoutar edit HTML.
6. Cari kode <data:post.body/> apabila sudah ketemu silahkan Copy kode di bawah ini.

<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<div>
<b:if cond='data:post.thumbnailUrl'>
<img class='post-thumbnail' expr:alt='data:post.title' expr:src='data:post.thumbnailUrl' width='72px' height='72px'/>
</b:if>
<data:post.snippet/>
</div>
<div class='jump-link'>
<a expr:href='data:post.url' expr:title='data:post.title'><data:post.jumpText/></a>
</div>
<b:else/>
<data:post.body/>
</b:if>
<b:else/>
<data:post.body/>
</b:if>

7. Setelah di copy, gantilah kode <data:post.body/> dengan kode yang barusan di copy.
8. Selesai. Simpan template blog anda.
9. Lihat hasilnya.

Demikianlah Cara Membuat Read More Otomatis Tanpa Javascript, apabila anda sudah menggunakan Template yang dinamis, abaikan saja ini. Semoga bermanfaat yah. Selamat mencoba. Salam blogger.

Kamis, 27 Juni 2013

Five Easy Ways to Fight Spam Unknown Uncommon People.

Spam, spam and spam! If you heard it right up because your blood is certainly very annoyed when discovered filled with spam email. And the nightmare is sometimes spam comes with a harmful virus or worm. Minimizing the amount of spam into the inbox is one important way to get rid of the spammers.

5 Cara Mudah Melawan Spam
There are several common ways to fight spam, such as using software or spam filters rely on anti-spam plugin for email client. But not only it can be done, there are also some tips for fighting spam are rarely known. Here are 5 easy ways against spam that is often missed people:

Do not do Unsubscribe To Spam
If you want to stop the work of spammers are always disturbing, never once did unsubscribe to spam. Because by doing so instead will provide clues to the spammer that the email is still active in the state. So if you do the work of spammers will unsubscribe rampant. Then how exactly? The most appropriate way is to never respond at all. So when you do not respond to spam, the spammers would think if your email is not used for a while. That way he will not attack you with spam email again.

Reveals Never-mail address
Never even you reveal the actual email address on forums, social media sites, websites, blogs, etc.. Because if you're expressing a real email address, so you can be a victim of spammers.
Another way is to edit your email address so that bots can not identify and capture your email. The trick is to replace the "@" to "at" or ". Com" to "dot com". Let's say you budi@gmail.com email, write it with favor at gmail dot com.
You can also use a picture that reads your email address. This would complicate the usual bot doing scrapping email address for spam.

Reporting Spam
To stop the disturbances of spammers would not hurt if you use a site that can make spam reporting service. Simply spam spam reporting service to the site, then your site will be reported to the hosting of email being used by spammers, and the hosting company will immediately stop spammers.
Examples of sites that SpamCop spam reporting, which will report spammers to Internet Service Providers (ISPs) and sometimes to his webhost. To use it simply register and send a report to them.

Use Multiple Email Accounts
Another alternative way is to create multiple email accounts. One particular email is used for work purposes, and to communicate, while the other can email you used to sign up the newsletter, purchase products online, and utilities "vulnerable spam" other.
So now you have your primary email address is only used for personal and work email, and certainly with a more minimal amount of spam.

Disable HTML in Email
Technological advances make the spammers use HTML and JavaScript on any spam. Content will be mengarahkah you to a page that advertised. The bad news is that spam can contain malware or a malicious virus.
Almost all email services or email client has the option to disable HTML. In doing so, it will prevent unauthorized installation or activation programs through what is on HTML content.

This PancakeBot, Pancake Maker Machine Made of LEGO.

Who is not familiar with a plastic blocks that can be made into a variety of forms. Yup very true, LEGO is a plaything or a chunk of plastic pieces which is very famous in this world are very familiar with children and adolescents, both male and female.






LEGO PancakeBot, Inovasi Lezat Sebuah Mesin Pembuat Pancake
LEGO PancakeBot, Inovasi Lezat Sebuah Mesin Pembuat Pancake


LEGO began in a wooden craft in Denmark in 1916, is now a game that a lot of inspiring and proven to increase creativity by playing LEGO requires imagination and thinking power of the players.

And the following is a form of innovation that is very interesting and tasty of course, is a genius by the name of Miguel Valenzuela, an American living in Hokksund, Norway is making a PancakeBot, which is a simple pancake making machine that is mostly made of LEGO blocks and some engine enhancements.

As I quoted through Makezine, Miguel said that he was inspired by their two daughters and the device takes about nine months to be completed perfectly. And now Miguel has just launched a campaign on Indiegogo PancakeBot his inventions and bring them to an event at the 2013 Maker Faire Bay Area in May.

These dogs are trained for Driving Car.

Dogs can indeed be trained to do some kind of activity which helps the owner everyday like for example taking an object and of course as a playmate.

But an animal foundation is now able to prove that dogs can be smarter again with a special training. Now they managed to train a stray dog ​​to take the vehicle out of the cart to start the car.
Inilah Anjing yang Dilatih untuk Mengendarai Mobil
A group of people who are in animal welfare (Auckland SPCA) is trying to teach the dog to drive and show the extent to which the limit animal intelligence. Other than that, it's done nothing else is to encourage more people to adopt stray dogs.

Initially the dogs were trained to run a dog cart but it only took 8 weeks to be able to run these wooden carts. After that three dogs were selected from seven groups and each day they used to be trained on how to drive mechanism.

Choosing Windows 32 Bit or 64 Bit

Did you just buy a computer? If you're the type who likes to do everything himself, including installing any software operating system (OS), then sure you will hit plated confusion. First of all, you need to select the first type of OS what it used to be installed into the PC. Usually confusion will be about installing Windows or Linux. If you are already beginning to use Windows, not Linux (for PC, of course, the two operating systems is the most common - surely Mac using Mac OS), then the problem is partially solved. Next problem: XP, Vista, Win 7 or Windows 8 would you install a in the PC? Of course this could also be solved by taking into account the requirements for the installation of the OS restrictions. Windows 7 and 8 require a minimum of a processor with a speed of 1 GHz, a minimum of 1 GB of RAM, and hard drive space of at least 20 GB. For lower spec computers than that, PG suggest complacency use XP. Well, the next layer of confusion is: Which do you prefer, use Windows 32 bit or 64 bit?...
[Tips Anti Galau] Memilih Windows 32 Bit atau 64 Bit
 
Bitbelieves it can make you upset because once installed will affect the 'cornerstone' of your PC next trip. Because if already installed the 32 bit version, then you should choose based software application and 32 bits, and vice versa. But do not worry I will give a little insight and tips to prevent you from confusion. So to you who were affected by the confusion caused by this issue, you may find the handle, as long as he continued to read this article ....
What is 32 bit and 64 bit?
Wutt? Not to know what a 32 bit and 64 bit? Okay, I'll tell you all. terms 32-bit and 64-bit refers to the way the processor handles the processing system on your PC. Processors can deal with the use of RAM per 32 bit or a 64 bit. Of course, handling 64 bit system using the RAM will be much more effective in data processing PC. That means you will have more spare RAM in the processing of data on your computer.
For you who use computers for gaming or image processing with Photoshop or even do video rendering, 64 bit system will be very helpful because it will save your RAM, as well as optimizing the performance of the software that you use to perform these activities.
Knowing whether your PC Support for 32 bit or 64 bit
Are all the processors can be directed to use both systems? Oo .. Of course not. This is all based on the basic spec your PC hardware, especially the processor. So how to tell if your PC support for 32 bit or 64 bit? It's easy! You can use 64bit software checker or Securable!
64bit Checker
64bit Checker is a software that can be used to find out if your PC Spec supports the use of 64-bit Windows OS or not. You can download the 64bit Checker from the following link:
http://www.igorware.com/64bit-checker
Using it is quite simple. You can click on the 64bit checker, then you will get the following interface:


The main one of the 64 bit checker assessment lies in the bottom line which indicates that your PC support for 64bit (x64) or not.
Securable
Securable is software that displays more detailed review of how the PCs you support 64bit or not, as well as specific advice if you want to use the 64bit version of Windows.
You can get Securable in:
http://www.grc.com/securable.htm
Once you get a securable, then you can just choose Maximum 64 bit length field to get an assessment of your hardware.

After clicking the button, then you will get advice and assessment of the specifics about your hardware compatibility with 64bit OS type.

Well, as explained by Securable above, I was advised to use a version of Windows XP or Vista 64-bit as the PC hardware will be optimized by using it.
Weaknesses and Advantages Using Windows 64bit OS
As I mentioned earlier, the use of 64-bit Windows OS will further optimize the RAM. Less RAM used with better management means you'll get your PC run more efficiently. Able to optimize the use of software 'big' like image editor (Photoshop, Corel, etc.), Video rendering, or Game.
The disadvantage is, once you install the 64-bit OS, either XP, Vista, 7 or 8, then you have to adjust a variety of software that you install. You can only install software that support 64 bit. It will be a 'minor disaster' for you are using Windows XP, so little software that is compatible with 64 bit systems for Windows XP. But you get more support when using Windows 7 or Windows 8. Almost all software for both OS's have the 64 bit version, so you will not be difficult to find compatible software.
How to Choose?
Finally we come to the part you've been waiting for from today ... that will eliminate the confusion of you to choose which OS based 32 bit or 64 bit. So here's tips to choose whether you need to install the version of OS-based 32-bit or 64 bit:
If you are a Windows XP user, I recommend not to use 64-bit OS. Especially if you're the typical person who likes to try different software. The reason is, very little in the outcome of compatible software for Windows XP 64 bit. If you're a typical person 'static' in the sense that only a little piece of software that you need, and all of them have the 64 bit version, then you deserve to try the 64bit version of Windows XP.If you are using Windows Vista, you will find a lot more software compatible with 64-bit Vista. But still it is not comparable with Windows 7 or 8. If you spec enough, then upgrade to Windows 7 is a pretty good alternative.

If you are using Windows 7 or Windows 8, then first check your hardware. Did you RAM greater than 4GB? Basically, Windows 7 64bit will be very effective to help you if you have any RAM greater than 4GB. If you are under the RAM, then Windows 7 32bit will be very effective performance support you. These tips are based on input from friends Windows 7 users who have tried various ways to optimize the performance of their OS.

Now, taking into account a variety of tips above, I believe the insight you gain about the versions of OS 32 bit and 64 bit, and you also can choose no more confusion, which one is better for you to use: 32 bits or 64 bits.

The important thing is to optimize the hardware capabilities of your preferences while you pay attention to the specific OS. If you are lovers of Windows 7, it's okay to not be in a hurry to upgrade to Windows 8 because the changes will be uncomfortable for you.

If you have a computer with a fairly low spec, then you need to adjust, and it may be based on a 32bit OS is the best option for you. Thinking for a hardware update? Before deciding, you need to know the tips are worth keeping your old computer.

What do you think about choosing a Windows-based 32bit and 64bit this? If you have additional tips, please participate in the comments field below to exchange insights.

Linux kernel Support Tablets and Smartphones More!

Great news! For you lovers of Linux, the Linux kernel version 3.7 will support more ARM processors with less coding. This means Linux will support more tablets and smartphones.
Kernel Linux akan Support Lebih Banyak Tablet dan Smartphone!

Kernel 3.7 kernel will also be the first to support ARM architecture 5 in the kernel:
- Calxeda's ARM server Higbank processor, used in the project Moonshot Hewlett-Packard servers.- ARM Versatile Express.- Marvell ARMADA SoC processor, is used in almost every device from server through internet TV.- Altera ARM processors, including the Cortex-A9. Used by Samsung Galaxy Note and Galaxy SII.- Picohip PicoXcell chip.

 With these features, Linux will be easier to use on mobile devices. Even Kernel 3.7 will support multitouch, the features available in the current range of tablets such as the iPad, Google Nexus 7, and Windows tablets.