skip to main | skip to sidebar

Blog Unik

Sunday, January 2, 2011

Memasang BreadCrumbs Navigation Lebih SEO Friendly!!


Seperti yang kita tahu, sekarang google juga mempertimbangkan blog yang memakai Breadcrumb Navigation, Pasti Anda sudah tahu apa itu Breadcrumb Navigation, yang mana sering dipakai di berbagai blog wordpress.org tetapi sekarang blogspot pun bisa dipasangi Breadcrumb Navigation. Mau tahu caranya ??




1. Masuk ke account blogspot Anda
2. Klik Layout atau Tata Letak
3. Klik edit HTML
4. Centang Expand Widget Template dan kalau perlu download template sekalian untuk backup
5. Cari kode ]]></b:skin>
6. Letakkan kode dibawah ini tepat diatas kode ]]></b:skin>
.breadcrumbs {
padding:5px 5px 5px 0px;
margin: 0px 0px 15px 0px;
font-size:95%;
line-height: 1.4em;
border-bottom:3px double #e6e4e3;
}
7.  Cari kode <div class=’post hentry uncustomized-post-template’>
8. Letakkan kode dibawah ini tepat dibawah kode <div class=’post hentry uncustomized-post-template’>
<b:if cond='data:blog.homepageUrl == data:blog.url'>
<b:else/>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div class='breadcrumbs'>
Browse »  <a expr:href='data:blog.homepageUrl' rel='tag'>Home</a>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast == &quot;true&quot;'> »
<a expr:href='data:label.url' rel='tag'><data:label.name/></a>
</b:if>
» <span><data:post.title/></span>
</b:loop>
</b:if>
</b:loop>
</div>
</b:if>
<b:else/>
<b:if cond='data:blog.pageType == &quot;archive&quot;'>
<div class='breadcrumbs'>
Browse » <a expr:href='data:blog.homepageUrl'>Home</a> » Archives for <data:blog.pageName/>
</div>
</b:if>
<b:else/>
<b:if cond='data:navMessage'>
<div class='breadcrumbs'>
<data:navMessage/>
</div>
</b:if>
</b:if>
9. Klik Simpan atau Save untuk menyimpan dan lihat hasilnya di atas judul postingan blog Anda
Posted by Fuerza at 10:21 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: SEO

Membuat Gadget Artikel Menarik Terkait! (Related Post)


Related Post dengan fungsi scroll. Melanjutkan artikel sebelumnya mengenai cara membuat related post di blogspot, kali ini saya akan menjelaskan cara membuat related post menjadi tampak lebih indah.




Tutorial related post atau artikel terkait yang akan dijelaskan, yaitu membuat related post dengan fungsi scroll dan dengan tampilan yang lebih menarik. Dengan fungsi scroll ini artikel terkait dalam jumlah yang banyak akan lebih tersusun rapi, tidak memanjang ke bawah.

Dengan begitu, related post ini akan meningkatkan perhatian pembaca terhadap artikel-artikel terkait yang ada. Tentunya hal ini akan berpengaruh terhadap pageview yang juga akan berpengaruh terhadap alexa rank.

Ini contohnya. 


Bagi yang ingin mencoba, silahkan ikuti 
tutorial di bawah ini.
  1. Log in ke akun blogspot Anda.
  2. Pilih menu Layout (Tata Letak) » Edit HTML.
  3. Beri tanda centang pada tulisan Expand Widget Templates.
  4. Cari kode berikut.

    <p><data:post.body/></p> 
Copy-paste kode berikut di bawah kode tadi.

<b:if cond='data:blog.pageType == "item"'> <H2>Artikel Terkait:</H2> <DIV class='rbbox'> <DIV style='margin:0; padding:10px;height:200px;overflow:auto;border:1px solid #ccc;'> <DIV id='albri'/> <SCRIPT type='text/javascript'> var homeUrl3 = "<data:blog.homepageUrl/>"; var maxNumberOfPostsPerLabel = 4; var maxNumberOfLabels = 10; maxNumberOfPostsPerLabel = 100; maxNumberOfLabels = 3; function listEntries10(json) { var ul = document.createElement('ul'); var maxPosts = (json.feed.entry.length <= maxNumberOfPostsPerLabel) ? json.feed.entry.length : maxNumberOfPostsPerLabel; for (var i = 0; i < maxPosts; i++) { var entry = json.feed.entry[i]; var alturl; for (var k = 0; k < entry.link.length; k++) { if (entry.link[k].rel == 'alternate') { alturl = entry.link[k].href; break; } } var li = document.createElement('li'); var a = document.createElement('a'); a.href = alturl; if(a.href!=location.href) { var txt = document.createTextNode(entry.title.$t); a.appendChild(txt); li.appendChild(a); ul.appendChild(li); } } for (var l = 0; l < json.feed.link.length; l++) { if (json.feed.link[l].rel == 'alternate') { var raw = json.feed.link[l].href; var label = raw.substr(homeUrl3.length+13); var k; for (k=0; k<20; k++) label = label.replace("%20", " "); var txt = document.createTextNode(label); var h = document.createElement('b'); h.appendChild(txt); var div1 = document.createElement('div'); div1.appendChild(h); div1.appendChild(ul); document.getElementById('albri').appendChild(div1); } } } function search10(query, label) { var script = document.createElement('script'); script.setAttribute('src', query + 'feeds/posts/default/-/' + label + '?alt=json-in-script&callback=listEntries10'); script.setAttribute('type', 'text/javascript'); document.documentElement.firstChild.appendChild(script); } var labelArray = new Array(); var numLabel = 0; <b:loop values='data:posts' var='post'> <b:loop values='data:post.labels' var='label'> textLabel = "<data:label.name/>"; var test = 0; for (var i = 0; i < labelArray.length; i++) if (labelArray[i] == textLabel) test = 1; if (test == 0) { labelArray.push(textLabel); var maxLabels = (labelArray.length <= maxNumberOfLabels) ? labelArray.length : maxNumberOfLabels; if (numLabel < maxLabels) { search10(homeUrl3, textLabel); numLabel++; } } </b:loop> </b:loop> </SCRIPT> </DIV> <script type="text/javascript">RelPost();</script> </DIV> </b:if><br />


  1. Setelah itu, copy-paste kode berikut di atas kode ]]></b:skin>.

    /*-----------------------------
    kode related post optimal
    visit http://www.ateonsoft.com
    ------------------------------*/
    .rbbox{border: 1px solid rgb(192, 192, 192);padding: 5px;
    background-color: #f0f0f0;-moz-border-radius:5px; margin:5px;}
    .rbbox:hover{background-color: rgb(255, 255, 255);}
  2. Terakhir, copy kode berikut dan paste di atas kode </head>, kemudian simpan template.

    <SCRIPT src='http://ateon.fs.googlepages.com/kodescript.js' type='text/javascript'/>
Silahkan dicoba tutorial blog kali ini mengenai cara membuat related post dengan fungsi scrollyang lebih indah. Semoga bermanfaat dan semoga berhasil.
Posted by Fuerza at 10:02 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: SEO

7 Cara Mengedit template Agar Lebih SEO friendly


Info SEO Bank Of Science - Edit Template agar SEO Friendly-Template blogspot blogger memang sudah banyak tersedia di situs template, tidak hanya itu template-template tersebut memang di dibuat menarik dan ok. Disisi lain kita dapat bertanya, apakah template itu sudah seo friendly..? nah itu sebuah pertanyaan yang bagus buat penggiat SEO. Kebanyakan template yang sudah tersedia itu tidak seo

Friendly hanya mementingkan disainnya saja. Kalau kita udah terlanjur memakainya gimana..? ada sebuah tips
Cara mengedit template agar seo friendly, ini sudah di terapkan di template i-om Blog seputar internet' Oke langsung aja kita  ke TKP.
Langkah-langkah edit template blogspot agar seo friendly:

1. Mengganti tag title

Biasanya sebuah template mempunyai tag title seperti di bawah ini:
<title><data:blog.pageTitle/></title>

Ganti kode tag title tersebut dengan yang seperti di bawah ini:
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>


2. Memasang Meta deskripsi dan meta keyword

Dengan memasang meta deskripsi dan meta keyword search engine akan lebih mudah untuk mengindex, crawl, dan menelusuri blog sobat. Caranay cukup mudah cukup taruh kode dibawah ini tepat di bawah kode yang no.1 tadi:

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta name="description" content="
Deskripsi Blog sobat" />
<meta name="keywords" content="
keyword1, keyword2, keyword3, dst" />
<b:else/>
<meta name="description" expr:content=’data:blog.PageName "- 
Deskripsi Blog sobat"’ />
<meta name="keywords" expr:content=’data:blog.PageName ", 
keyword1, keyword2, keyword3, dst"’ />
</b:if>

3. Mengganti tag Heading menjadi H1

Biasanya sebuah template mempunyai tag heading H3 dan H2 seperti di bawah ini:

<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
Ganti tag heading tersebut dengan tag heading di bawah ini:
<b:if cond='data:post.title'>
<h1 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h1>
</b:if>
Kemudian tambahkan kode dibawah ini sebelum kode ]]></b:skin>
h1.post-title, .post h1 #Blog1 h1, #Blog2 h1 { font-size:1.5em; }

4. memasang Breadcrumb - navigation. Klick Di sini!

5. memasang Related Post.

6. Menambahkan kode 
‘rel=canonical’

Dengan memasang kode tersebut konten|atikel kita akan terhindar dari duplicate content. Cara memasangnya cukup mudah tinggal pasang kode di bawah ini setelah kode 
<head>
<link expr:href='data:blog.url' rel='canonical' />

Setelah proses 1 s|d 6 selesai klik Save template.


7. Menonaktifkan archive | arsip

Dengan menonaktifkan arsip maka itu merupakan langkah kedua untuk menghindari duplicate content setelah langkah ke 6 tadi. Langkah2nya seperti berikut:
Sign in ke blogger.com - setting - archive - nah disitulah kita bisa menonaktifkan arsipnya.
Semua proses selesai. Ok sobat semoga bermanfaat....
Posted by Fuerza at 9:28 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: SEO

Semuanya Tentang Scroll blog


http://practicumpioneers.files.wordpress.com/2009/02/blogging_101-1.jpgBila kita membahas tentang scroll sebenarnya akan banyak sekali berkembang seiring permasalahan nyata. Bukan sekedar menambah scroll untuk script yang lewat penambahan gadget html, namun beberapa blogger ingin scroll melengkapi widget bawaan blogger yang berarti mereka tak bisa mengeditnya lewat elemen halaman



Masalah yang sedikit berhubungan adalah tentang kode verifikasiyang hanya separuh, beberapa blogger tentu tak menyadari sedangkan penggemar mereka kesulitan untuk komen. Salah satu solusi adalah dengan menambahkan scroll. Blog konsultasi datang pagi ini, dan semoga mencerahkan dengan semua hal tentang scroll.

Mengapa Kita Membutuhkan Scroll
Beberapa widget bisa jadi sangat panjang dan akan menghabiskan tempat. Tidak enak di mata dan terkesan sidebar boros namun disisi lain widget akan sangat berguna seperti archives. Nah, inilah fungsi scroll, mempersempit ruang namun tak menghilangkan konten.

Yang Berlebihan Selalu Tidak Baik
Satu pesan saya, jangan terlalu banyak scroll pada template Anda atau orang akan merasa terganggu jika melihat blog Anda. Gunakan saja secukupnya.

Bagaimana Membuat Widget Dengan Scroll
Cara ini digunakan untuk memberi scroll pada teks atau html kode. Nah, caranya mudah sekali. Silahkan gunakan script seperti ini:

    <div style="overflow:auto; padding:5px; width:80px; height:80px; background-color: rgb(255, 255, 255); border:1px solid #ccc;">
    Tambahkan teks atau script disini
    </div>

yang berwarna merah adalah pengaturan lebar dan tinggi widget Anda. Dan masukkan teks atau script Anda pada yang bercetak tebal.

Menambahkan Scroll Pada Widget Bawaan Blogger
Kasus lain, ketika Anda ingin menambahkan scroll pada widget bawan blogger seperti archives. Tentu saja ketika Anda ke elemen halaman da klik edit, maka akan muncul pengaturan otomatis dan bukan script. Bagaimana Anda mencari scriptnya dan menambah scroll?

- Masuk ke tata letak, pilih Edit HTML.
- Jangan lupa centang Expand Widget Templates
- Cari kode widget yang Anda inginkan
(cara mencari yang paling mudah adalah dengan ctrl+f lalu masukkan judul gadget di kotak pencari (di bagian bawah untuk firefox dan di atas untuk google chrome). Jika sudah ketemu perhatikan contoh pemasangan script untuk gadget recent posts advanced berikut ini:

<b:widget id='Gadget1' locked='false' title='Recent Posts' type='Gadget'>
<b:includable id='main'> 
  <!-- only display title if it's non-empty -->
  <b:if cond='data:renderingUrl != &quot;&quot;'>
    <b:if cond='data:title != &quot;&quot;'>
      <h2 class='title'><data:title/></h2>
    </b:if>
<div style='border: 0px solid #F5003D; overflow: auto; width: 310px; height: 100px; text-align: left;'>
    <b:if cond='data:gadgetSnippet != &quot;&quot;'>
       <data:gadgetSnippet/>
    <b:else/>
      <div class='widget-content'>
   ...............................................................
..................................................................
      </div>
    </b:if>
</div>
  <b:else/>
    <data:errorMessage/>

  </b:if>
  <b:include name='quickedit'/>
...............................................

yang berwarna merah adalah tambahan kode scroll yang harus Anda tambahkan, dan yang berwarna hitam adalah rambu-rambu bagaimana Anda menambahkan. Perhatikan benar posisinya.

Menambahkan Scroll Pada Setiap Postingan
Bagi Anda yang tak ingin setelah readmore artikel tetep terlihat pendek sehingga tidak memnajang ke bawah, tambahkan saja kode scroll pada setiap postingan Anda secara otomatis. Mudah saja untuk cara ini, tinggal Anda tambahkan kode css seperti di bawah ini.
.post {
height:200px;
overflow:auto;
}


Jika Ingin Hanya Pada Postingan Tertentu
Untuk kasus ini sebenarnya bisa dilakukan dengan cara pertama yaitu penambahan scroll pada text atau html code. Namun akan lebih mudah jika Anda membuat atributnya dengan css dan Anda bisa memanggilnya kapan saja dengan mudah.
 
Masukkan kode dibawah ini di atas ]]></b:skin>
.scrollpost {
height:100px;
width:400px;
overflow:auto;
} 

Nah, ketika Anda menulis sebuah postingan awali postingan dengan model penulisan seperti berikut ini.

<div class="scrollpost">
Tulis postingan Anda disini
</div>

Kode tersebut bisa diletakkan ditengah postingan tergantung bagian postingan mana (misal paragraf kedua, berarti gunkan kode tersebut untuk apit paragraf kedua) yang akan di beri scroll.

Permasalahan Scroll Pada Kode Verifikasi Komentar
Untuk permasalahan satu ini sangat mudah membenarkannya.
- Login blogger
- Tata Letak
- Edit HTML
- Centang Expand templates widget
- Cari kode berikut  <div class='comment-form'>
- Nah rubah kode scroll dari 'no' menjadi 'yes' perhatikan script lengkap di bawah ini
<div class='comment-form'>
    <a name='comment-form'/>
    <h4 id='comment-post-message'><data:postCommentMsg/></h4>
    <p><data:blogCommentMessage/></p>
    <data:blogTeamBlogMessage/>
    <a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
    <iframe allowtransparency='true' class='blogger-iframe-colorize' frameborder='0' height='275' id='comment-editor' scrolling='yes' src='' width='100%'/>
    <data:post.iframeColorizer/>
  </div>


Jika Anda tidak menemukan, Beberapa template bukan menggunakan kode comment-form namun menggunakan kode comment-editor
Alternatif lain untuk memperbaiki kotak komentar dengan verifikasi error adalah dengan menambah tinggi form, menghilangkan verifikasi atau membuat isian komen pada jendela baru.
Posted by Fuerza at 9:12 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Teknologi

8 The Best Alarm Clock

Info Bank Of Science - Jam Beker/Alarm yang kita ketahui mungkin hanyalah jam alarm yang bekerja dengan mengeluarkan suara keras untuk membangunkan dari tidur yang lelap, namun karena perkembangan ilmu pengetahuan dan teknologi yang pesat, kini telah di buat berbagai jenis jam alarm yang mempunyai keunikan dan kelebihan tersendiri, inilah 8 jam beker terbaik yang telah di buat :




1. Silent Alarm Clock
 

Tidak seperti alarm biasanya, alarm ini memiliki cincin karet yang terhubung melalui wireless. Cincin tersebut digunakan pada jari anda, alaram ini tidak akan membangunkan anda dengan suara yang berisik melainkan dengan getaran dari cincin tersebut.

2. Wifi Donation Alarm Clock
 

Ini adalah alarm yang membuat anda menjadi seorang donatur jika tidak bangun pagi. Karena alarm ini memiliki sebuah sistem yang terhubung ke rekening bank anda melalui koneksi wi-fi. Setiap keterlambatan anda maka anda secara otomatis akan menyumbangkan uang anda kepada sebuah organisasi yang telah ditentukan, semakin lambat anda bangun maka akan semakin banyak uang yang anda disumbangkan

3. Flying Alarm Clock
 

Alarm ini akan memaksa anda berolahraga jika tidak mau bangun, bila alaram ini berdering maka baling-balingnya akan terlepas dan terbang maka selama baling2 itu terbang selama itu pulalah alaram akan terus berbunyi. Satu-satunya cara untuk menghentikannya adalah dengan menangkap baling-balingnya dan meletakkan kembali di atas alarmnya

4. Banclock
 

Ini adalah alarm yang akan membuat anda berhemat, karena untuk mematikan alarm ini anda harus memasukan uang logam kedalamnya

5. Danger-Bomb Alarm Clock
 

Anda akan merasa seperti James Bond ketika terbangun mendengar alarm ini. Untuk mematikannya anda harus menghubungkan ketiga kabel (merah, kuning dan biru) jika terjadi kesalahan bersiap-siaplah untuk mendengar suara ledakan

6. Laser Tag Alarm Clock
 
Alarm ini mungkin akan melatih anda menjadi seorang sniper, karena untuk mematikannya anda harus menembakan sinar laser tepat pada pusat sasaran targetnya.
7. Carpet Alarm Clock
 

Jika alarm ini berbunyi maka satu-satunya cara mematikannya adalah dengan berdiri diatasnya, jadi tidak ada alasan untuk tidak bangun dari tempat tidur anda.

8.Ball Alarm Clock
 
Jika anda adalah seorang pemain sepak bola, alarm ini sangat cocok untuk anda. Karena jika alarm ini berbunyi anda harus mematikannya dengan memantulkan atau menggelindingkan layaknya sebuah bola, atau bisa juga dengan menjugglingnya
Posted by Fuerza at 8:25 PM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: Teknologi

Top 10 Modern Methods of Execution For Criminals




English Language Bank Of Science - We have all heard about the various methods of execution used around the world in civilized nations, but quite often we don’t know the methods involved in executing the act. With this list I hope to shed some light on thebackground of an execution, modern style. All but two of these methods of execution are still in use today. [WARNING: This list includes graphic images.]
1. Lethal Injection
Image-4Lethal injection room in Huntsville, Texas
In the short time before an execution by lethal injection, the prisoner is prepared for his death. This can include a change of clothing, a last meal, and a shower. The prisoner is taken to thesaline solution is fed through the tubes. These tubes are then fed through the wall in to an anteroom from where the execution will be carried out. The anteroom contains direct telephone connections to officials who have the power to stay the execution. Once the IV tubes are connected, the curtains are drawn back so that witnesses may watch the execution, and the prisoner is allowed to make his last statement. execution chamber and two IV tubes are inserted in to his arms; a
Unless a stay is given, the execution begins. There can be one or more executioners, and sometimes in the case of multiple executioners, the lethal dose is given by only one so that no one knows who delivered it. The executioners are shielded from the view ofthe prisoner and witnesses. The drugs can be delivered by a machine, but due to the fear of mechanical failure, most US states prefer to manually inject the drugs in to the IV. The drugs are then administered in the following order:
Sodium thiopental: This drug, also known as Pentathol is a barbiturate used as a surgical anesthetic. In surgery, a dose of up to 150mg is used; inexecution, up to 5,000mg is used. This is a lethal dose. From this point on if the prisoner is still alive, he should feel nothing.
Pancuronium bromide: Also known as Pavulon, this is a muscle relaxant given in a strong enough dose to paralyse the diaphragm and lungs. This drug takes effect in 1-3 minutes. A normal medical dose is 40 – 100mcg per kilogram; the dose delivered in anexecution is up to 100mg.
Potassium chloride: This is a toxic agent which induces cardiac arrest. Not all states use this as the first two drugs are sufficient to bring about death.
Saline solution is used to flush the IV between each dose. Within a minute of two after the final dose is given, a doctor declares the prisoner dead. The body is then sent to the coroner for verification and sometimes an autopsy and is released to the family for burial or is buried by the state.
2. The Electric Chair
M197400560386Electric Chair at Sing Sing
The electric chair was invented by Harold P. Brown who was employed by Thomas Edison for the sole purpose of investigating the uses of electricity forexecution . Brown, a dentist used to working with people in chairs, used a chair design for his device. At the time there was still competition to see whether Edison’s direct current (DC) or Westinghouse’s alternating current (AC) would win the current war. Edison was in favor of using his opponents AC as he thought it would lead people to believe that AC was more dangerous than DC. In fact, it would make little difference which current were used at the voltage needed for anexecution. Edison was so keen to alienate Westinghouse, that he tried to get people to refer to execution by electrocution as “westinghousing” someone. The chair was first adopted in 1889and the first execution took place in 1890 in New York.
In execution by electric chair, the prisoner is strapped to the chair with metal straps and a wet sponge is placed in his head to aid conductivity. Electrodes are placed on the head and leg to create a closed circuit. Depending on the physical state of the prisoner, two currents of varying level and duration are applied. This is generally 2,000 volts for 15 seconds for the first current to cause unconsciousness and to stop the heart. The second current is usually lowered to 8 amps. The current will normally cause severe damage to internal organsand the body can heat up to 138 °F (59 °C). While unconsciousness should occur within the first second or two, there have been occasions where it has taken much longer, leading people to speak out against this method ofexecution.
The post-execution cleanup is an unpleasant task as skin can melt to the electrodes and the person often loses control over bodily functions. The skin is also often burnt. The last use of the chair was on the 12th of September in Tennessee (6 days ago as of writing this). You can view a gruesome image of a person after being executed bythe electric chair here.
3. Gas Chamber
Gaschamber L-1Gas chamber at Mississippi State Penitentiary
The gas chamber has been used for executions for a considerable number of years. It has gained the most notoriety from its use in the German prison camps during World War II where it was used to exterminate millions of people in one of the worst cases of genocide in the 20th century. All of the five US states that still use the gas chamber allow the prisoner to choose death by lethal injection instead. The last death by gas chamber in the US was in 1999 when German Walter LaGrand was executed in Arizona. There are unconfirmed reports that North Korea is using the gas chamber as a method ofexecution and to test poisonous gasses on prisoners.
Prior to the execution, the executioner will enter the chamber and place potassium cyanide (KCN) pellets into a small compartment beneath the execution chair. The prisoner is then brought in and secured to the chair. The chamber is sealed and the executioner pours a quantity of concentrated sulfuric acid (H2SO4) through a tube which leads to a holding compartment in the chair. The curtains are drawn back for witnesses to see the execution and the prisoner is asked to make his last statement. After the last statement, a level is thrown by the executioner and the acid mixes with the cyanide pellets generating lethal hydrogen cyanide (HCN) gas. The prisoners will generally have been told to take deep breaths in order to speed up unconsciousness, but in most cases they hold their breath. Death from hydrogen cyanide is painful and unpleasant.
After the prisoner is dead, the chamber is purged of gas and neutralized with anhydrous ammonia (NH3). Both the ammonia and the acid that must be removed from the chamber are highly dangerous. Guards with oxygen masks then enter the chamber and remove the body so that it can be examined by a doctor.
4. Single Person Shooting
Vietnam-1Execution of a Vietcong captian
Execution by shooting is the most common method of execution in the world, used in over 70 countries. Whilst most of these countries use the firing squad, single person shooting is still found. In Soviet Russia, a single bulletto the back of the head was the most frequently used method of execution for military and non-military alike. This is still the main method of execution in Communist China though the gunshot can be to either the neck or head. In the past, the Chinese government would ask the family of the executed person to pay the price of the bullet. In Taiwan,the prisoner is first injected with a strong anesthetic to render him senseless and then a bullet is fired in to his heart.
5. Firing Squad
Firingsquad500-1Antonio Echazarreta executed in 1913 in Mexio
The firing squad is considered by many to be the most honorable method of execution, and for that reason it was specifically not used on war criminals. While the method differs widely from country to country, generally the condemned is blindfolded and restrained. A group of men then fire a single bullet into the heart of the prisoner . In some cases, one of the shooters is given a blank – so that afterwards he will feel less guilt. None of the shooters knows who has a blank or, in fact, if any of them do. In the most recentexecution by firing squad in Utah, the brother of the executed man stated that there were five bullet holes in his brother’s shirt, indicating that every shooter fired a live round. Here is an eyewitness account of theexecution of William Johnson, a deserter in the Army of the Potomac in 1861.
All being ready the Marshal waved his handkerchief as the signal, and the firing party discharged the volley. Johnson did not move, remaining in a sitting posture for several seconds after the rifles were discharged. Then he quivered a little, and fell over beside his coffin. He was still alive, however, and the four reserves were called to complete the work. It was found that two of the firing party, Germans, had not discharged their pieces, and they were immediately put in irons. Johnson was shot several times in the heart by the first volley. Each of the four shots fired by the reserves took effect in his head, and he died instantly. One penetrated his chin, another his left cheek, while two entered the brain just above the left eyebrow. He died at precisely a quarter to four o’clock.
In the United States only two states allow execution by firing squad: Idaho, and Oklahoma; though Utah still has four prisoners on death row who were sentenced when it was lawful there and they may be permitted to be executed in this way.
6. Hanging
Iran Hanging Outrage 2-117 and 18 year old boys hanged in Iran for homosexuality
Hanging is carried out in a variety of ways: the short drop is when the prisoner is made to stand on an object which is then thrust away – leaving them to die by strangulation. This was a common method of hanging used by the Nazis and was the most common form used before the 1850s. Death is slow and painful. Suspension hanging (very popular in Iran) is when the gallows itself is movable. The prisoner stands on the ground with the noose around their neck and the gallows is then lifted in to the air, taking the prisoner with it. The standard drop was in common use in English nations after the 1850s – it involved tying the noose around the prisoner’s neck and then dropping them a short distance (usually 4-6 feet) to break the neck. This was the method used to execute the Nazi war criminals. The final method is the long drop, devised in 1872 in which the weight of a person was taken in to account to determine the correct rope and drop to be used to ensure the breaking of the neck. This was the method used by Albert Pierrepoint, the last executioner of England, described here in more detail:
The night before the execution, Pierrepoint would visit the condemned man in his cell with the Warden. The prisoner was not told that pierrepoint was his executioner. The purpose of the visit was to size the man up. Pierrepoint would use the information he had gained on the visit to decide what thickness of rope and what length of drop to use. He would soak the rope in water and would hang a sandbag the weight of the prisoner at the end to prevent stretching during the execution. The next day pierrepoint would put a cloth over the face of the prisoner and tighten the noose around his neck. He was very careful to ensure that the trapdoor beneath the condemned would be opened as soon after the noose went on as possible and would often kick the level with his foot. The person would then drop through the trapdoor and their neck would break, causing death.
There have been some instances where the long drop method has caused decapitation – the most recent of which was the hanging of Saddam Hussein’s half brother, Barzan Ibrahim al-Tikriti, in Iraq in 2007.
If you can play real audio, here is a BBC interview with Pierrepoint.
7. Beheading
Saudi Killings-1Sentenced at 15, Dhahian Rakan al-Sibai’i, executed July 2007
In some nations that adhere to Islamic Sharia law, beheadings are still a commonly used method of execution. The most frequently seen cases involve beheading by a curved, single-edged sword. While many nations allow beheading by law, Saudi Arabia is the country that uses it most often. The sentence is normally carried out on a Friday night in public outside the main mosque of the city after prayers. The penalty can be dealt for rape, murder, drug related crimes, and apostasy (rejection of religious beliefs).
Saudi Arabia frequently comes under fire from international agencies because of the fact that they continue to pass this sentence on minors. Saudi Arabian officials state that they are not in breach of international law because the sentence is not carried out until the child has reached the age of 18. This was the case with Dhahian Rakan al-Sibai’i (pictured above) who was sentenced at 15 but executed this year at the age of 18.
8. Guillotine
Scaryweidmann-1Eugène Weidmann, last public guillotine execution in France, 1939
Contrary to popular belief, Joseph-Ignace Guillotin did not invent the Guillotine; he suggested that a method of execution be devised that was quick and to be used on all people regardless of class. He sat on the committee that eventually designed the device, but it was actually Antoine Louis who came up with the design that was then used to build the first functioning guillotine. This is one of the two execution methods on this list which is no longer used anywhere in the world.
The device itself is a large timber frame with a space at the bottom for the neck of the prisoner. At the top of the machine is a large angled blade. Once the prisoner is secured, the blade is dropped, severing the head and bringing about immediate death. Much speculation exists as to whether or not the person dies immediately, and one man went so far as to ask a prisoner to blink after his head was cut off if he could. The accounts tell us that he did blink, but it is most likely that if he did, it would have been a post-death twitch.
The last public guillotining in France (photo above) was secretly filmed, and the scandalous behavior of the onlookers caused the government to ban public executions. It was the official method of execution in France until the death penalty was outlawed in 1981.
9. Stoning
6Cmt1K3-1A stoning in Iran
Stoning to death is when a person’s movements are restricted and an organized group throws stones at them until dead. Under Islamic Sharia law, stoning is an acceptable method of execution and it is used in many Islamic nations. In Iran, stoning is sanctioned for adultery and other crimes. Article 104 of the Law of Hodoud provides that the stones should not be so large that a person dies after being hit with two of them, nor so small as to be defined as pebbles, but must cause severe injury.
“The penalty for adultery under Article 83 of the penal code, called the Law of Hodoud is flogging (100 lashes of the whip) for unmarried male and female offenders. Married offenders may be punished by stoning regardless of their gender, but the method laid down for a man involves his burial up to his waist, and for a woman up to her neck (article 102). The law provides that if a person who is to be stoned manages to escape, he or she will be allowed to go free. Since it is easier for a man to escape, this discrimination literally becomes a matter of life and death.” [Source]
Sentences to death by stoning, or stoning without a sentence have occurred in Afghanistan, Nigeria, Iran, Pakistan, Sudan, Saudi-Arabia and the United Arab Emirates in recent years, according to the International Society of Human Rights. Videos of recent stonings have been smuggled out of Iran. You can watch them here. The most recent stoning in Iran was in 2007 when Jaffar Kiani was stoned to death for adultery.
10. Garrote
555Px-Garroteexecution1901-11901 execution by garotte in Manila
The garrote is the second method of execution on this list which is no longer sanctioned by law in any country though training in its use is still carried out in the French Foreign Legion. The garrote is a device that strangles a person to death (as in the photograph above). It can also be used to break a person’s neck. The device was used in Spain until it was outlawed in 1978 with the abolition of the death penalty. It normally consisted of a seat in which the prisoner was restrained while the executioner tightened a metal band around his neck until he died. Some versions of the garrote incorporated a metal bolt which pressed in to the spinal chord, breaking the neck. This spiked version is known as the Catalan garrote. The last execution by garrote was José Luis Cerveto in October 1977. Andorra was the last country in the world to outlaw its use, doing so in 1990.
Source: http://listverse.com/2007/09/18/top-10-modern-methods-of-execution/
Posted by Fuerza at 5:03 AM No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Labels: English Language
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Labels

Afriyani susanti agama islam Aneh Aneh dan Unik Anime Arkeologi dan Sejarah artis porno amerika Astronomi Belajar Berita Fenomenal Best of The Best Bintang Zodiak Bisnis Bisnis Online BLog Blogging Bussines Cerita Cinta download Dunia Dalam Foto Emotional English Language Entertainment Fakta Fakta Alam Fakta Ilmiah Dan Sains Fashion Favourite Character Film Gadget Hewan Humor Humor dan Hiburan iNeT Info Umum Kecantikan Kesehatan Komputer Dan Internet Kuliner Lelaki Love Lucu Makanan Makanan Dan Minuman Mistis dan Misteri miyabi di indonesia Motivasi Musik News Olahraga Pariwisata Pepatah dan Kata Mutiara Percintaan Psikologi remaja Renungan Sains Science Sebuah Kisah Selebritis SEO Sepeda Motor Injeksi Irit Harga Terbaik Cuma Honda Software Sport Story Tahukah Kamu Teknologi Terhebat di Dunia Tips Tips N Trik Uang Unik UnLable Wanita Wanita dan Kecantikan Wawasan Wordpress

Blog Archive

  • ►  2010 (87)
    • ►  December (87)
      • ►  Dec 21 (10)
      • ►  Dec 22 (23)
      • ►  Dec 23 (3)
      • ►  Dec 24 (10)
      • ►  Dec 25 (6)
      • ►  Dec 26 (7)
      • ►  Dec 27 (2)
      • ►  Dec 28 (6)
      • ►  Dec 29 (2)
      • ►  Dec 30 (8)
      • ►  Dec 31 (10)
  • ▼  2011 (903)
    • ▼  January (117)
      • ►  Jan 01 (3)
      • ▼  Jan 02 (9)
        • CP 9 (Kategori One Piece)
        • Top Ten Controversial Flags
        • 10 The Best Senjata Perang
        • Top 10 Modern Methods of Execution For Criminals
        • 8 The Best Alarm Clock
        • Semuanya Tentang Scroll blog
        • 7 Cara Mengedit template Agar Lebih SEO friendly
        • Membuat Gadget Artikel Menarik Terkait! (Related P...
        • Memasang BreadCrumbs Navigation Lebih SEO Friendly!!
      • ►  Jan 03 (14)
      • ►  Jan 04 (12)
      • ►  Jan 05 (8)
      • ►  Jan 06 (7)
      • ►  Jan 07 (12)
      • ►  Jan 08 (8)
      • ►  Jan 09 (2)
      • ►  Jan 11 (1)
      • ►  Jan 12 (3)
      • ►  Jan 13 (4)
      • ►  Jan 14 (6)
      • ►  Jan 15 (3)
      • ►  Jan 16 (1)
      • ►  Jan 17 (6)
      • ►  Jan 21 (5)
      • ►  Jan 23 (2)
      • ►  Jan 27 (1)
      • ►  Jan 28 (4)
      • ►  Jan 29 (6)
    • ►  February (86)
      • ►  Feb 03 (3)
      • ►  Feb 05 (8)
      • ►  Feb 09 (3)
      • ►  Feb 11 (9)
      • ►  Feb 12 (1)
      • ►  Feb 14 (10)
      • ►  Feb 17 (10)
      • ►  Feb 19 (5)
      • ►  Feb 20 (13)
      • ►  Feb 22 (3)
      • ►  Feb 23 (14)
      • ►  Feb 25 (7)
    • ►  March (51)
      • ►  Mar 03 (7)
      • ►  Mar 04 (5)
      • ►  Mar 05 (5)
      • ►  Mar 11 (3)
      • ►  Mar 12 (1)
      • ►  Mar 15 (6)
      • ►  Mar 16 (10)
      • ►  Mar 17 (4)
      • ►  Mar 20 (1)
      • ►  Mar 26 (5)
      • ►  Mar 30 (2)
      • ►  Mar 31 (2)
    • ►  April (73)
      • ►  Apr 01 (2)
      • ►  Apr 04 (2)
      • ►  Apr 05 (3)
      • ►  Apr 07 (7)
      • ►  Apr 08 (1)
      • ►  Apr 10 (5)
      • ►  Apr 13 (1)
      • ►  Apr 14 (2)
      • ►  Apr 15 (3)
      • ►  Apr 16 (1)
      • ►  Apr 17 (4)
      • ►  Apr 18 (1)
      • ►  Apr 19 (15)
      • ►  Apr 20 (4)
      • ►  Apr 21 (6)
      • ►  Apr 22 (4)
      • ►  Apr 23 (3)
      • ►  Apr 26 (9)
    • ►  May (44)
      • ►  May 04 (1)
      • ►  May 06 (9)
      • ►  May 07 (4)
      • ►  May 08 (7)
      • ►  May 09 (3)
      • ►  May 11 (3)
      • ►  May 13 (3)
      • ►  May 14 (2)
      • ►  May 15 (5)
      • ►  May 18 (2)
      • ►  May 23 (2)
      • ►  May 24 (2)
      • ►  May 25 (1)
    • ►  June (31)
      • ►  Jun 02 (6)
      • ►  Jun 07 (6)
      • ►  Jun 09 (3)
      • ►  Jun 11 (6)
      • ►  Jun 12 (7)
      • ►  Jun 13 (2)
      • ►  Jun 21 (1)
    • ►  July (3)
      • ►  Jul 08 (3)
    • ►  August (332)
      • ►  Aug 01 (34)
      • ►  Aug 02 (23)
      • ►  Aug 05 (8)
      • ►  Aug 07 (27)
      • ►  Aug 08 (18)
      • ►  Aug 09 (36)
      • ►  Aug 11 (5)
      • ►  Aug 12 (18)
      • ►  Aug 13 (1)
      • ►  Aug 14 (23)
      • ►  Aug 15 (2)
      • ►  Aug 18 (7)
      • ►  Aug 19 (5)
      • ►  Aug 20 (23)
      • ►  Aug 22 (20)
      • ►  Aug 23 (6)
      • ►  Aug 24 (8)
      • ►  Aug 25 (8)
      • ►  Aug 26 (48)
      • ►  Aug 27 (12)
    • ►  September (165)
      • ►  Sep 02 (12)
      • ►  Sep 05 (30)
      • ►  Sep 07 (50)
      • ►  Sep 08 (37)
      • ►  Sep 09 (34)
      • ►  Sep 10 (1)
      • ►  Sep 22 (1)
    • ►  October (1)
      • ►  Oct 31 (1)
  • ►  2012 (499)
    • ►  January (173)
      • ►  Jan 19 (12)
      • ►  Jan 20 (6)
      • ►  Jan 21 (2)
      • ►  Jan 22 (7)
      • ►  Jan 24 (6)
      • ►  Jan 25 (31)
      • ►  Jan 26 (26)
      • ►  Jan 27 (26)
      • ►  Jan 28 (13)
      • ►  Jan 29 (17)
      • ►  Jan 30 (10)
      • ►  Jan 31 (17)
    • ►  February (64)
      • ►  Feb 01 (4)
      • ►  Feb 02 (4)
      • ►  Feb 03 (2)
      • ►  Feb 09 (7)
      • ►  Feb 11 (4)
      • ►  Feb 13 (4)
      • ►  Feb 14 (4)
      • ►  Feb 15 (4)
      • ►  Feb 16 (8)
      • ►  Feb 17 (1)
      • ►  Feb 21 (3)
      • ►  Feb 22 (3)
      • ►  Feb 23 (2)
      • ►  Feb 24 (4)
      • ►  Feb 25 (5)
      • ►  Feb 27 (2)
      • ►  Feb 29 (3)
    • ►  March (262)
      • ►  Mar 01 (2)
      • ►  Mar 02 (10)
      • ►  Mar 03 (5)
      • ►  Mar 07 (4)
      • ►  Mar 08 (11)
      • ►  Mar 09 (16)
      • ►  Mar 10 (11)
      • ►  Mar 11 (2)
      • ►  Mar 12 (10)
      • ►  Mar 13 (3)
      • ►  Mar 16 (17)
      • ►  Mar 17 (2)
      • ►  Mar 18 (14)
      • ►  Mar 19 (80)
      • ►  Mar 20 (21)
      • ►  Mar 21 (19)
      • ►  Mar 22 (16)
      • ►  Mar 23 (19)