Warung Bebas

Senin, 31 Desember 2012

Cara Mengetahui Kecepatan Koneksi Internet Hanya Dengan Ping Cmd...!!!

Apa sich yang Dimaksud Ping Cmd ....?
Ping Cmd biasanya digunakan bagi pengunaa internet atau sering di gunakan dalam sebuah jaringan..lan.wifi atau modem.
Mengetahui kecepatan koneksi internet melalaui Ping CMD
Cara PING ini bukan mempercepat koneksi internet anda.. Melainkan ini hanya menstabilkan dan melihat seberapa cepat paket data yg terkirim dari provider yang anda gunakan...!

Langsung Aja Ya...!!!Kl Kebanyakan Ngomong Ga kelar2 ntar... : )!
1. Buka CMD (Command Prompt)

2. Sekarang Tulis → Ping 8.8.8.8 -t -l 1 ( L kecil ) :


3. Lalu akan muncul gambar seperti dibawah ini :


4. Perhatikan Gambar Di Atas Pada Tulisan TIME Artinya,Paket Data Yang Dikirimkan Adalah 351ms...
Semakin Besar Angka Makin Semakin Lemot Koneksi Internet Anda
Semakin Kecil Angkanya,Maka Semakin Kencang/Stabil Koneksi Internet Anda

5. Digambar Juga Terlihat Tulisan REQUEST TIME OUT Artinya, Koneksi Sedang Putus atau Tidak Tersambung
Jika RTO ini terjadi hanya sekali-kali aja tidak masalah..
Jika Sampai Berkali-kali muncul RTO trs,Itu yg menjadi masalah


Biarkan CMD ini berjalan dan kalau bisa jangan di close selama sobat masih menjelajahi Dunia Maya.


Mudah Bukan..???

Indahnya Berbagi....



Cara Membuat Tulisan Mengikuti Kursor di Blog

Tulisan Mengikuti Cursor di Blog

Hai sob.........
Diartikel kali ini aku akan kasih tau cara Cara Membuat Tulisan Mengikuti Kursor di Blog. Kalau para blogger masih ada yang sedang memperindah blognya aku sarankan bisa mengikuti metode yang satu ini. Ywd langsung aj ya...

Cara Membuat Tulisan Mengikuti Kursor di Blog : 
1. Masuk ke dashbor blog sobat.
2. Klik Tata Letak (Layout) >> Tambah Gadget (AddGadget)>> Pilih HTML/Java Script.
3. Copy code berikut ke dalam box HTML/Java Script tadi
<style type='text/css'>
#outerCircleText {
font-style: italic;
font-weight: bold;
font-family: &#39;comic sans ms&#39;, verdana, arial;
color: #ff840a;
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
</style>
<script type='text/javascript'>
//<![CDATA[
;(function(){
// Pesanmu di sini, bahasa sundanya yaitu "Pesan anjeun di dieu.." hehehe... (QUOTED STRING)
var msg = "TULISAN YANG INGIN DITAMPILKAN";

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 25;
// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;
// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;
// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;
// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.2;
// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;
// BERHENTI NGEDITNYA..! Parantos cicing di dieu! Ulah diteraskeun..! //
if (!window.addEventListener && !window.attachEvent || !document.createElement) return;
msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement :
document.body,
mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},
makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + 'px';
o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById('iemsg' + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) +
'px';
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
};
},
drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},
init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement('div'); d.id = 'iemsg' + i;
d.style.height = d.style.width = a + 'px';
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},
ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};
o.id = 'outerCircleText'; o.style.fontSize = size + 'px';
if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};
})();
//]]>
</script>
Ket: Ganti tulisan yang berwarna merah dengan tulisan/teks yang sobat inginkan.

4. Simpan dan lihat hasilnya.

Mudah Bukan...???
Indahnya berbagi..

Salam Blogger



Sumber : Disini

Cara Membuat Artikel Terkait dengan Thumbnail


Cara Membuat Artikel Terkait dengan Thumbnail - Cara memberi/menciptakan related post dengan thumbnail gambar atau cara menjadikan artikel terkait muncul dengan gambar. Lihat Gambar Diatas.

Hai Sob,,,
Diartikel kali ini aku akan kasih tau tentang cara membuat related post dengan thumbnail(gambar) di blog. Silahkan dibaca: cara membuat related post atau artikel terkait. Tapi, membuat related post dengan thumbnail gambar pastinya lebih keren dan membuat pengunjung lebih betah di blog kita, silahkan lihat contoh di atas. Nah, bagi yang tertarik untuk membuatnya, silahkan ikuti langkah-langkah di bawah ini:

1. Login ke akun Blogger sobat.
2. Klik Template >> Edit HTML >> Lanjutkan (jangan lupa centang Expand Template Widget).
3. Dengan menggunakan CTRL+F atau F3, cari kode berikut: </head>
4. Pastekan kode di bawah tepat di atas kode nomor 3 di atas
<!--Related Posts with thumbnails Scripts and Styles Start-->
<!-- remove --><b:if cond='data:blog.pageType == "item"'>
<style type="text/css">
#related-posts {
float:center;
text-transform:none;
height:100%;
min-height:100%;
padding-top:5px;
padding-left:5px;
}
#related-posts h2{
font-size: 1.6em;
font-weight: bold;
color: black;
font-family: Georgia, Times New Roman , Times, serif;
margin-bottom: 0.75em;
margin-top: 0em;
padding-top: 0em;
}
#related-posts a{
color:black;
}
#related-posts a:hover{
color:black;
}
#related-posts a:hover {
background-color:#d4eaf2;
}
</style>
<script type='text/javascript'>
var defaultnoimage="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4Zxm7WAOwRFW1sMLJHuD_zxmMpZSyu9nhyphenhyphenDURFZIKrtHujBc0ClfmYPaMeJ4UHFcwfPlwEczSp0sgVWV63MlBXUH0HZXWDQvvUZTyPYaB_wETa-_38hnYw6VcnfqcQTzXGnUb6GscnHk/s400/noimage.png";
var maxresults=5;
var splittercolor="#d4eaf2";
var relatedpoststitle="Related Posts";
</script>
<script src='http://infonetmu.googlecode.com/files/related-posts-with-thumbnails-for-blogger-pro.js' type='text/javascript'/>
<!-- remove --></b:if>
<!--Related Posts with thumbnails Scripts and Styles End-->
5. Lanjutkan dengan mencari kode <data:post.body/> dan pastekan kode berikut tepat di bawah kode <data:post.body/> tadi
<!-- Related Posts with Thumbnails Code Start-->
<!-- remove --><b:if cond='data:blog.pageType == &quot;item&quot;'>
<div id='related-posts'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast != &quot;true&quot;'>
</b:if>
<script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=related_results_labels_thumbs&amp;max-results=6&quot;' type='text/javascript'/></b:loop>
<script type='text/javascript'>
removeRelatedDuplicates_thumbs();
printRelatedLabels_thumbs(&quot;<data:post.url/>&quot;);
</script>
</div><div style='clear:both'/>
<!-- remove --></b:if>
<!-- Related Posts with Thumbnails Code End-->

6. Simpan template sobat dan lihat hasilnya

Keterangan :
var maxresults = 5 adalah jumlah artikel akan ditampilkan di related post blog sobat.
var relatedpoststitle="Related Posts"; kamu bisa ganti kata Related Posts atau kalimat lain yang sobat inginkan.

Demikianlah posting mengenai cara membuat artikel terkait dengan thumbnail. Semoga bermanfaat buat semua.

Sumber : Disini

Cara Memasang Yahoo Messenger di Blog

Hai Sob,
Diartikel kali ini aku akan kasih tau Cara Memasang Yahoo Messenger di Blog, kalau bisa dibilang status ym kita di blog. Caranya mudah kok, pasti masih ada yang belum memasang status ym diblog kamu kan..??kl belum aku kasih tau dech Caranya Memasang Yahoo Messenger di Blog. Langsung aja ya...
Cara Memasang Yahoo Messenger di Blog
1. Masuk ke dashbor blog sobat.
2. Klik Tata Letak (Layout) >>> Tambah Gadget (Add Gadget)>>> Pilih yang HTML/Java Script.
3. Lalu masukkan script code dibwah ini:
<a href="ymsgr:sendIM?Id_yahoo_kamu"><img src="http://opi.yahoo.com/online?=Id_yahoo_kamu&amp;m=g&amp;t=0&amp;2=us"/>
4. Ubah Text yang berwarna Merah dengan Id Yahoo kalian, Sedangkan Text yang berwarna Biru ganti dengan Code gambar Berikut:

Status Yahoo Messenger1
Status Yahoo Messenger2
Status Yahoo Messenger3

Status Yahoo Messenger4


5. Simpan.

Mudah kan..??? 
Indahnya Berbagi...Salam Blogger...


Cara Membackup Template DiBlog

Hai Blogger,,
Diartikel ini aku akan memberi tahu Cara Membackup Template DiBlog. Fungsi Dari Membackup template itu sangat penting. Terkadang ketika mengutak-ngatik HTML template blog, baik itu sewaktu mengeditnya maupun pada saat menambahkan script lain ke dalam template tersebut, terjadi keruksakan pada template blog kita. Tentu saja hal ini akan membuat penampilan blog kita jadi kurang menarik dan bahkan bisa jadi terlihat ancur amburadul.

Makanya aku mau kasih tau Cara Membackup Template DiBlog untuk sobat blogger semua.
Nah Langsung aj ya..

 Cara Membackup Template DiBlog:

  • Masuklah keDashbor sobat Blogger
  • Pilih Rancangan (Template) Lihat Gambar Dibawah:

  • Lihat Dibagian pojok kanan atas. Disana ada tulisan Backup/Restore. Lalu Kliklah.


  • Nanti akan muncul tampilan seperti berikut:



  • Setelah itu pilihlah Download Full template. Dan simpanlah Backup template blogger ditempat yang aman. Selesai dech...
  • Jika kalian ingin merestore Backupan tadi tinggal pilih yang Choose File dan Upload.
Nah, jadi jika para blogger ingin mengutak-atik html atau template sobat ga perlu khawatir lagi dech jika sudah melakukan proses backup ini..
Semoga artikel ini bermanfaat untuk para Blogger baru yang ingin menjelajahi dunia Blogger.

Indahnya Berbagi,
Salam Blogger...!!!


Cara Membuat Sticky Social Pada Blog

Hai Blogger...
Diartikel kali ini aku mau share Cara Membuat Sticky Social Pada Blog. Sobat Blogger ada yang tahu Sticky Social? Sticky Social ini adalah widget yang serupa dengan social widget yang sering kita lihat diblog2 para blogger. Cuma,Sticky Social ini posisinya tidak vertical melainkan horizontal. kl bisa dibilang seperti stardock di desktop pc.

Nah,Bagi kamu yang tertarik dan ingin memasang Widget Sticky Social ini diblog kamu, ikutin cara - cara dibawah ini:
Cara Membuat Sticky Social Pada Blog:
  • Masuk lah keHalaman Dasbor Sobat, pilih Rancangan (Template) - Edit HTML. Dan jangan lupa diExpand dulu ya. (Sebelum melakukan metode ini diharapkan untuk membackup template sobat sekalian untuk berjaga - jaga. Kalau masih ada yang belum tahu caranya bisa lihat Disini.)
  • Masukkan lah script dibawah. dan letakkan di bawah kode <body>:
<!--stickysocial_dock--> 
<style type='text/css'> 
.stickysocial { 
background: transparent; 
position: fixed; 
top35%
left0.25%; 
z-index: 100; 
vertical-align: bottom; 
width: 37px; 
text-align: center; 
.stickysocial a:hover { 
opacity: .73; 
-moz-opacity: .73;
filter: alpha(opacity=73); 
</style> 
<div class='stickysocial' id='stickysocial_dock'> 
<a href='https://plus.google.com/USERID' target='_blank' title='Follow us on Google+'><img alt='Google+' src='http://i563.photobucket.com/albums/ss76/peace_enes/neon-google.png' style='position:relative; width:37px'/></a>
<a href='http://www.facebook.com/USERNAME' target='_blank' title='Follow us on Facebook'><img alt='Facebook' src='http://i563.photobucket.com/albums/ss76/peace_enes/neon-facebook.png' style='position:relative; width:37px'/></a> 
<a href='http://twitter.com/USERNAME' target='_blank' title='Follow us on Twitter'><img alt='Twitter' src='http://i563.photobucket.com/albums/ss76/peace_enes/neon-twitter.png' style='position:relative; width:37px'/></a> 

 <a href='http://www.myspace.com/USERNAME' target='_blank' title='Follow us on MySpace'><img alt='MySpace' src='http://i563.photobucket.com/albums/ss76/peace_enes/neon-myspace.png' style='position:relative; width:37px'/></a>

 <a href='http://softpcdownloads.blogspot.com/2013/02/cara-membuat-sticky-social-pada-blog.html' target='_blank' title='Get Widget'><img alt='SoftPcDownloads' src='http://i563.photobucket.com/albums/ss76/peace_enes/neon-rss-feed.png' style='position:relative; width:37px'/></a> 

 </div>
  • Ganti Tulisan yang Bewarna Merah dengan nama ID atau UserName Akun Social Sobat Blooger Ubahlah ukuran top dan left-nya sesuai keinginan.
  • Jika sudah selesai, Simpanlah (Save template) dan Lihat lah Hasilnya.
  • Jika kamu menginginkan, kamu juga bisa menambah atau mengurangi icon-icon social network lainnya.
Semoga Artikel ini berguna untuk Sobat Blogger Semua.

Indahnya Berbagi,
Salam Blogger...!!!

Cara Untuk Membuat Like Facebook Melayang DiBlog


Hai Blogger Semuanya...

Diartikel kali ini aku akan kasih tau cara untuk membuat  Like Facebook melayang diblog. Sebelumnya aku sudah pernah Post tentang Cara membuat Yahoo Messenger diblog, makanya aku buat pasangan untuk Siyahoo tersebut diblog supaya tidak kesepian..hahaha.... Ywd dech langsung aj ya. kalau kebanyakan pembuka ga cukup ntar box post nya..hehehe..:)

1. Masuk keDashBoard Blogger kalian.
2. Setelah itu pilih Template>>Edit Html. Jangan lupa Diexpand ya..
3. Cari Kode </head> biar lebih mudah Ctrl + F aj trus masukin dech Keyword </head>.Setelah ketemu copy Script yang ada dibawah ini diatas kode </head> tadi:
<script src='http://jmk-js.googlecode.com/files/Fans%20Page%20FB.js' type='text/javascript'/>
4. Lalu Klik Save template.
5. Nah Setelah itu kita lanjut ketahap selanjutnya dengan cara pilih Layout>>AddGadget>>Pilih yang HTML/JavaScript.
6. Stelah itu masukkan Script yang ada dibawah ini:
<script type="text/javascript">
//<!--
$(document).ready(function() {$(".w2bslikebox").hover(function() {$(this).stop().animate({right: "0"}, "medium");}, function() {$(this).stop().animate({right: "-250"}, "medium");}, 500);});
//-->
</script>
<style type="text/css">
.w2bslikebox{background: url("http://s20.postimage.org/wudckp49p/facebook_copy.png") no-repeat scroll left center transparent !important;display: block;float: right;height: 270px;padding: 0 5px 0 46px;width: 245px;z-index: 99999;position:fixed;right:-250px;top:20%;}
.w2bslikebox div{border:none;position:relative;display:block;}
.w2bslikebox span{bottom: 12px;font: 8px "lucida grande",tahoma,verdana,arial,sans-serif;position: absolute;right: 6px;text-align: right;z-index: 99999;}
.w2bslikebox span a{color: #000000;text-decoration:none;}
.w2bslikebox span a:hover{text-decoration:underline;}
</style><div class="w2bslikebox" style=""><div>
<iframe src="http://www.facebook.com/plugins/likebox.php?href=https://www.facebook.com/Softpcdownloads &amp;width=245&amp;colorscheme=dark&amp;show_faces=true&amp;connections=9&amp;stream=false&amp;header=false&amp;height=240" scrolling="yes" frameborder="" style="border: medium none; overflow: hidden; height: 240px; width: 246px;background:#000000;"></iframe></div></div>
7. Perhatikan Script diatas!!! Tulisan yang bewarna merah wajib diganti dengan url facebook sobat. Sedangkan yang bewarna biru untuk mengatur warna background.
8.Selesai juga akhirnya.

Mudah2an Artikel ini bisa membantu kalian yang ingin Membuat Like Facebook Melayang DiBlog. Semoga bermanfaat ya...Kalau ada yang mau ditanyakan bisa memberikan komentar dibawah. kl tidak ad halangan pasti langsung dibales..: )

Indahnya Berbagi..
Salam Blogger...!!!

Cara Membuat Link Otomatis Diartikel Blog

Cara Membuat Link Otomatis Saat Artikel Kita Di Copy Paste Orang Lain. Kenapa demikian?? Betapa pentingnya membuat Link sumber otomatis untuk blog kita, dimana ketika ada seseorang yg mengcopy paste artikel dari blog kita.
Maka di postingan copaster tersebut akan muncul sumber url postingan dari blog kita. Nah, Gimana?? Apakah sobat tertarik untuk membuatnya? Oke langsung saja ikuti cara saya berikut ini :
1. Masuk ke alamat ini Tynt.Com
2. Pilihlah Get Code. Lihat Gambar Dibawah:


3. Lalu isilah formulir seperti dibawah ini dgn lengkap dan klik SUBMIT:


4. Setelah itu kalian akan masuk ketempat dimana script disediakan, dan copy lah script terserbut:(NB: Hanya yang Dilingkari saja yang dicopy ya...??Selain itu jangan dicopy)


5. Lalu masuklah kedasboard Blogger kalian, lalu pilih template >>edit HTML dan jangan lupa expand ya...trus cari kode </head> letakan script yang kita dapet dari Tynt tadi diatas kode </head>

6. Finish.....Mudah bukan...??

Semoga Bermanfaat untuk kalian semua!!!

Salam Blogger...

Cara Membuat Scroll Pada Link List diBlog

Hai Blogger,

Diartikel kali ini aku mau share Cara Membuat Scroll Pada Link List diBlog.
Bagi kamu yang ingin membuat scroll pada Linklist-nya dapat mengikuti langkah-langkah berikut:

Dari halaman Dashbor, pilih Tata Letak (template) - Edit HTML.
Berikan tanda centang pada Expand Template Widget.
Kemudian cari kode type='LinkList' (NB: Gunakan Control F).
Perhatikan Code yang ada di bawah:
<b:includable id='main'>
<b:if cond='data:title'><h2><data:title/></h2></b:if>
<div class='widget-content'>
Lalu tambahkan perintah style='overflow:auto; height:200px' pada kode yangberwarna biru (NB:Harus didalam tanda kurung), sehingga menjadi seperti ini:
<b:includable id='main'>
 <b:if cond='data:title'><h2><data:title/></h2></b:if>
<div class='widget-content' style='overflow:auto; height:200px'> 

Untuk Mengatur ukuran tinggi (Height)-nya Ubahlah sesuai kebutuhan Sobat.
Save Template. Sebelum diSave bisa dipreview dulu kok. Dan Cara diatas bisa juga untuk Widget2 tambahan lainnya.Cuma, harus menyesuaikan nama widget yang ingin di ubah.

Semoga artikel ini bermanfaat untuk sobat blogger yang baru membangun blognya.

Indahnya Berbagi,
Salam Blogger....!!!

Cara membuat Link Dikolom komentar

Cara Membuat Link di Kolom Komentar
Hai blogger,
Diartikel kali ini aku mau kasih tau Cara membuat Link Dikolom komentar. Metode ini juga bisa membuat link yang akan kita masukkan di kolom komentar, dan tersembunyi dibalik sebuah nama, pasti lebih rapihkan..???
Dan fungsi dari kita meletakkan link dikolom komentar banyak loh,,selain menaikkan rank dialexa atau sebagainya kita juga bisa saling berkunjung kesesama blogger dan saling sharing artikel. Nah, Langsung aj dech ya…
Cara membuat Link Dikolom komentar:
Sebenarnya sederhana saja, anda tinggal menyimpan link dengan menulis kode tag HTML pada kolom komentar, caranya tulis tag alamat dan Nama link blog anda.
Contoh :
<a href="http://softpcdownloads.blogspot.com/">SoftPcDownloads</a>, maka hasilnya akan  terlihat seperti ini : SoftPcDownloads

Anda juga dapat menambah efek huruf tebal dengan tag <b> dan </b>.
Contoh :
<b><a href="http://softpcdownloads.blogspot.com/"> SoftPcDownloads</a></b>, maka akan terlihat seperti ini : SoftPcDownloads
Teks berwarna merah anda gantikan dengan nama blog dan teks anchor blog anda.
Ini hanyalah salah satu tag yang dapat anda manfaatkan sebagai pemanis tampilan agar lebih rapi.
Semoga Cara Membuat Link di Kolom Komentar ini bermanfaat.

Indahnya Berbagi...

Pasang iklan Di Blog SoftPcDownloads


Pasang Iklan di Blog SoftPcDownloads caranya sangat Mudah - Berikut ini adalah Sketsa & tarif pemasangan iklan teks/banner di blog SoftPcDownloads, Blog ini berisi Tutorial - Tutorial Seputar Blogging,  serta informasi internet lain dan tempatnya downloads segala aplikasi.
Informasi mengenai Statistik Blog dan Alexa Rank, silakan dilihat sendiri pada SideBar kanan paling bawah. Mungkin bisa dibilang ini adalah blog baru, tapi menurut saya blog ini bakalan maju pesat dikarenekan saya Online 24 jam. Dan Gigih dalam pengurusannya.

Sketsa Pemasangan Iklan DiBlog SoftPc Downloads Milik saya:


Deskripsi dan Tarif Pasang Iklan :
  • Banner “A” tidak tersedia
  • Banner “B” ( 520x70 ) – Diatas Posting / dibawah header(kiri dan kanan)
    Harga : Rp. 75.000,- / 30 hari
    Banner “B” ( 520x70 ) – Dibawah Posting
    Harga : Rp. 70.000,- / 30 hari
    Slot Tersedia : Masih Banyak
    Deskripsi : Tampil di Homepage dan semua posting artikel + link do-follow. Pemasangan Minimum 1 bulan ( 30 hari )
  • Banner “C” ( 180x180 ) – Di Sidebar Kanan dan Kiri Atas
    Harga : Rp. 50.000,- / 30 hari
    Slot Tersedia : Masih Banyak
    Deskripsi : Tampil di semua posting artikel + link do-follow. Pemasangan Minimum 1 bulan ( 30 hari )
  • Banner “D” ( 87x87 ) – Di Sidebar Kanan dan kiri di bawah Banner “C”
    Harga : Rp. 5.000,- / slot / 30 hari
    Slot Tersedia : Masih Banyak
    Deskripsi : Tampil di semua posting artikel + link do-follow. Pemasangan Minimum 1 bulan ( 30 hari )
  • Banner “++(Big Size)” ( 950x100 ) – Di Atas Post
    Harga : Rp. 100.000,- / slot / 30 hari
    Slot Tersedia : 3 Contoh Seperti yang di HomePage
    Deskripsi : Tampil di semua posting artikel + link do-follow. Pemasangan Minimum 1 bulan ( 30 hari )
Banner / Text Iklan Lain – Menyesuaikan permintaan Sobat
Harga : Tergantung Ukuran dan Penempatan Banner
Slot Tersedia : Masih Banyak
Deskripsi : Ukuran dan penempatan iklan tergantung permintaan Sobat ( Selain Sketsa di atas ), Tampil di semua posting artikel + link do-follow. Pemasangan Minimum 1 bulan ( 30 hari )

Peraturan :

1. Iklan tidak boleh mengandung unsur SARA, Pornografi, kebohongan, provokasi, serta semua yang berlawanan dengan hukum yang berlaku di Indonesia
Materi iklan sepenuhnya adalah tanggung jawab pemasang iklan, Blog SoftPCDwonloads tidak bertanggung jawab terhadap kritikan atau tuntutan atas isi iklan.
2. Format image yang diijinkan hanya GIF, JPEG, JPG dan PNG serta diusahakan ukuran kurang dari 50 kb

Cara Pemesanan Slot Iklan :Bagi Sobat yang berminat memasang iklan banner atau iklan teks di blog Saya ini, silakan Hubungi saya via email atau SMS dengan mengirimkan data sebagai berikut:
1. Deskripsi singkat iklan yang ingin dipasang
2. URL iklan atau image banner
3. Type slot banner yang dipesan dan lama pemasangan
4. Iklan akan segera dipasang setelah Sobat menyelesaikan proses administrasi ( No. Rekening akan        saya berikan via Email )
5. Tersedia juga berbagai ukuran (Jika Sobat ingin memesan selain contoh slot diatas, akan saya berikan slot     lain, selama tempat masih muat dan memungkinkan)
6. Iklan akan dipilih terlebih dahulu.

Info Kontak dan Konfirmasi Pembayaran:
Email : blackhawktm87@gmail.com atau black_hawktm@yahoo.co.id
SMS : 0813 1123 1659 (No MisedCall)
Yahoo Messenger : black_hawktm ( Aktif Selalu )
Demikian informasi mengenai Pasang Iklan di Blog SoftPcDownloads. Jika Sobat berminat atau ada hal lain yang ingin ditanyakan segera hubungi alamat kontak diatas. Terima kasih atas kerjasamanya.

Kamis, 13 Desember 2012

Google Chrome 23.0.1271.97

Google Chrome 23.0.1271.97


 
Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier.

One box for everything
Type in the address bar and get suggestions for both search and web pages.
Thumbnails of your top sites
Access your favorite pages instantly with lightning speed from any new tab.
Incognito mode
Don't want pages you visit to show up in your web history? Choose incognito mode for private browsing.
Safe browsing
Google Chrome warns you if you're about to visit a suspected phishing, malware or otherwise unsafe website.
Change Log :
# Fixes:
* Some texts in a Website Settings popup are trimmed
* Linux: <input> selection renders white text on white bg in apps
* some plugins stopped working
* Windows8: Unable to launch system level chrome after self destructing user-level chrome
# Security fixes
* Use-after-free with visibility events.
* Use-after-free in URL loader.
* Limit Chromoting client plug-in instantiation.
* Crash in history navigation.
* Integer overflow in PPAPI image buffers.
* Stack corruption in AAC decoding.

Download from TusFiles


WinArchiver 3.0

WinArchiver 3.0



WinArchiver is a powerful archive utility, which can open, create, and manage archive files. It supports almost all archive formats, including zip, rar, 7z, iso, and other popular formats. WinArchiver can also mount the archive to a virtual drive without extraction.

WinArchiver supports the following file types: .zip (WinZip Files), .rar (WinRAR Files), .7z (7z Files), .mzp (Mountable Archive), .iso (CD/DVD Image File), .001 (7z Sub Volume), .arj, .bz2, .bzip2, .gz, .gzip, .tar, .taz, .tbz, .tbz2, .tgz, .tpz, .cab, .cpio, .deb, .lha, .lzh, .rpm, .split, .swm, .wim (Windows Imaging File), .z, .daa (PowerISO File), .bin, .cue, .mdf, .mds, .ashdisc, .bwi, .b5i, .lcd, .img, .cdi, .cif, .p01, .pdi, .nrg (Nero Disc Image), .ncd, .pxi, .gi, .fcd, .vcd, .c2d, .dmg (Apple Disc Image), .bif, .ima, .flp, .uif (MagicISO File)
MZP is the new archive format supported by WinArchiver. It supports data compression, encryption, and file spanning. WinArchiver can be used to create and manuplate MZP archives. The MZP archive can also be mounted as virtual drive instantly with WinArchiver Virtual Drive, thus you can access files in the archive without extraction. Compared with other archive formats, MZP archives can be mounted more efficiently.
Main Features:
-Support almost all popular archive formats.
-Open and extract archive files.
-Edit existing archives.
-Create zip, 7z, iso, mzp archive file from hard disk files.
-Support unicode file names.
-Mount archive file to a virtual drive without extraction. You can use it as a professional virtual drive software.
-Support multivolume, encryption, and archive comments.
-Support Windows Explorer shell integration.
-Support both 32-bit and 64-bit Windows.

Download from TusFiles
WnArchiver 3.0 | 3.0 Mb


Avira Free Antivirus 13.0.0.2890

Avira Free Antivirus 13.0.0.2890


Avira AntiVir Personal - FREE Antivirus is a reliable free antivirus solution, that constantly and rapidly scans your computer for malicious programs such as viruses, Trojans, backdoor programs, hoaxes, worms, dialers etc. Monitors every action executed by the user or the operating system and reacts promptly when a malicious program is detected.

Key features:
*Detects and removes more than 150,000 viruses
*Always among the winners of comparison test featured in computer journals
*The resident Virus Guard serves to monitor file movements automatically, e.g. downloading of data from the internet
*Scanning and repair of macro viruses
*Protection against previously unknown macro viruses
*Protection against trojans, worms, backdoors, jokes and other harmful programs
*AntiVir protection against viruses, worms and Trojans
*AntiDialer protection against expensive dialers
*AntiRootkit protection against hidden rootkits
*AntiPhishing protection against phishing
*AntiSpyware protection against spyware and adware
*NetbookSupport for laptops with low resolution
*QuickRemoval eliminates viruses at the push of a button
*Easy operation
*Internet-Update Wizard for easy updating
*Protection against previously unknown boot record viruses and master boot record viruses

Download from TusFiles

RAM Saver Pro 12.1

RAM Saver Pro 12.1
 
RAM Saver Pro is an easy-to-use RAM booster, RAM optimizer tool that will keep your computer running faster. RAM optimizer increases the operation system performance by making more memory available for your applications.


RAM Saver Pro will:
defragment system memory for faster access time;
increasing the efficiency of your CPU and Motherboard caches;
recover memory leaks from poorly behaved applications;
temporarily flush unused libraries out to disk and so on.
Using these optimization tricks will help your favorite applications and games run faster and more efficiently - even on old computers.
Main program features:
System Tray monitor of RAM optimizer
Desktop RAM monitor
specialized Control Panel
professional memory monitoring
flexible memory optimization with complete statistics output
RAM benchmark test
monitoring and control over the processes which take place in the memory
possibility to create "boosted shortcuts"
common and advanced RAM optimizer options
automatic and intelligent RAM optimization
fast run of tools
forced cleaning of Clipboard
possibility to close all programs for full memory release by one click
control over Windows uptime
suppressing and fast running of screen saver
check the presence of disk in CD-ROM drive in the moment of computer shut down
hide all desktop icons
forced shut down and restart of computer


Winrar v4.65 Pro

Winrar v4.65 Pro


WinRAR is an archiving utility that completely supports RAR and ZIP archives and is able to unpack CAB, ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, 7Z, Z archives. It consistently makes smaller archives than the competition, saving disk space and transmission costs.

WinRAR offers a graphic interactive interface utilizing mouse and menus as well as the command line interface. WinRAR is easier to use than many other archivers with the inclusion of a special "Wizard" mode which allows instant access to the basic archiving functions through a simple question and answer procedure.
WinRAR offers you the benefit of industry strength archive encryption using AES (Advanced Encryption Standard) with a key of 128 bits. It supports files and archives up to 8,589 billion gigabytes in size. It also offers the ability to create selfextracting and multivolume archives. With recovery record and recovery volumes, you can reconstruct even physically damaged archives.Change Log :
# Changes in RAR compression:
* RAR general compression algorithm is optimized for better utilization of several processor cores. While some speed gain is possible even in single processor mode, best results are achieved in multi-core environment. Speed gain depends on data type and average file size. Several cores are utilized more efficiently when compressing large files.
* we had to increase memory requirements to achieve higher compression speed. General RAR compression algorithm allocates about 120 MB comparing to 40 MB in WinRAR 4.11;
* RAR text compression algorithm cannot utilize several CPU cores efficiently, so its performance in multiprocessor environment is much lower than for general algorithm. Also its decompression speed is much lower than in general algorithm regardless of CPU number. So we decided to disable the text algorithm by default. If you need maximum possible compression ratio for plain text data regardless of speed, you can enable the text compression in "Advanced compression parameter" dialog. Press "Compression..." button on "Advanced" page of archiving dialog to access it. You can also change this option permanently in default compression profile; In the command line mode the text compression can be enabled with -mct switch;
* "Fastest" (-m1) compression mode also supports several processor cores now. In 4.11 it could use only a single processor core.
# RAR general decompression algorithm speed is slightly improved, though not to same extent as RAR compression. RAR decompression is not able to use several processor cores, so its performance does not depend on a number of cores.
# Changes in ZIP compression:
* now ZIP compression supports several processor cores resulting in noticeably higher performance in multi-core environment. Single CPU ZIP compression is also faster than in 4.11;
* memory use for ZIP compression is increased to about 15 MB.
# Recovery volume creating and processing can use several CPU cores resulting in higher speed. Though, typically hard drive seek speed is a limiting factor for recovery volumes, so this gain is most noticeable when working with solid state drive.
# Now the allowed value for -mt switch is 1 - 32, not 0 - 16 as before.
# "Find files" command can search data in 7-Zip archives. Previously "Find files" did not support .7z archive format.
# Windows 2000 is not supported by WinRAR and WinRAR self-extracting modules anymore.
# "Save current settings" button in "Advanced SFX options" dialog is now available only when converting an existing archive to SFX. Options saved with this button are applied only to convert to SFX operation. If you create or update SFX archive, only SFX options stored in default compression profile are used. Options saved in "Advanced SFX options" dialog are ignored for these operations.

Download from TusFiles
Winrar v4.65 | x86/x64 | 2.9 Mb

Super Hide IP 3.2.5.6

Super Hide IP 3.2.5.6


Do you know what your IP address means? Are you aware that your IP address is exposed every time you visit a website? Many websites and hackers use IP address to monitor your home address and other personal information. Your IP address is your online identity and could be used by hackers to break into your computer, steal personal information, or commit other crimes against you. Super Hide IP allows you to surf anonymously, keep your IP address hidden, protect your personal information against hackers and provide full encryption of your online activity, all with a simple click of a button.

Key Features
* Anonymous Web Surfing
Click Hide IP button and you will be assigned fake IP addresses, preventing others from getting your true IP when surfing the Internet.
* Protect Your Identity
Surf anonymously to prevent hackers or identity thieves from monitoring your web activity or intercepting your personal information such as your financial information.
* Choose IP Country
You can select to use fake IP from different countries via "Choose IP Country" option and can Check IP directly.
* Send Anonymous E-mails
Hide your IP in E-mail headers. Be protected while sending e-mails via Yahoo!, Hotmail, Gmail.
* Un-ban Yourself from Forums and Restricted Websites
Use Super Hide IP to change your IP which allows you to access any forums or websites that has ever banned you.

Download from iFile

Angry Birds Rio 1.4.4 + Pacth

Angry Birds Rio 1.4.4

 

What happens when everyone's favorite fierce fowl get caged and shipped to Rio? They get very angry!
In Angry Birds Rio, the original Angry Birds are kidnapped and taken to the magical city of Rio de Janeiro, where they eventually escape their captors and set out to save their friends, Blu and Jewel – two rare macaws and the stars of the hit motion picture, Rio. Angry Birds Rio pairs the physics-based gameplay of the original game with unique twists based on the film.



Download from TusFiles
Installer | 50.0 Mb
Patch | 66 Kb

Angry Birds 2.2.0

Angry Birds 2.2.0


The survival of the Angry Birds is at stake. Dish out revenge on the green pigs who stole the Birds' eggs. Use the unique powers of the Angry Birds to lay waste to the pigs' confounding constructions.
 Angry Birds features challenging, physics-based demolition gameplay with hours and hours of replay value. Each of the 240+ levels requires logic, skill, and brute force to crush the enemy.

Download from TusFiles
Installer | 46.4 Mb
Patch | 66 Kb

Angry Birds Space 1.3.0

Angry Birds Space 1.3.0



NASA and Angry Birds team up for the most epic episode yet! The piggies have hijacked the Curiosity Mars Rover -- but instead of searching for ice crystals, they're looking for eggs!

Blast through 20 fiery levels on the red planet, plus two antenna egg levels!
Dodge explosive volcanoes and fire asteroids!
Say hello to the brand new astronaut pig!
Find three hidden rovers and landers to open special bonus levels and discover more about the NASA missions!

Download from TusFiles
Installer | 35.7 Mb
Patch | 66 Kb

Angry Birds Seasons 2.5.0

Angry Birds Seasons 2.5.0

  

Angry Birds Seasons takes the captivating gameplay of the original to a whole new level! From Halloween to Chinese New Year, the birds are c
elebrating different festive seasons around the world!
With more than 290 levels and regular free updates, these special episodes offer more challenging levels of pig-popping action and golden eggs to discover.

Download from TusFiles
Installer | 58.4 Mb 
Patch | 66 Kb

AnyToISO Professional 3.4.2 Build 450

AnyToISO Professional 3.4.2 Build 450

 

AnyToISO Converter Professional - an easy to use and functional converter helps you to convert images for CD and DVD in specific formats into a universal format for ISO. The problem that solves the proposed tool, familiar to most PC users. Many applications, allowing you to create images of optical disks use a proprietary format. Especially this is true of commercial products. For example, to write a disc image file format NRG, may be used only to original toolbox Nero.
Key features AnyToISO Converter
- Ability to convert disk images from formats BIN, MDF, PDI, CDI, NRG, B5I, IMG CD / DVD-ROM format ISO.
- Fast and simple technology.
Limitations of the free version AnyToISO Converter
- The program can convert only the images of CD, full professional version allows you to convert images of DVD.
Quick Facts
- AnyToISO supports all CD / DVD formats popular in Internet.
- AnyToISO works on Windows and Mac OS X.
- Most CD / DVD burning software works with ISO images and its native images only. Use AnyToISO for conversion before burning.
- With AnyToISO you can mount any CD / DVD image found in Internet to your Parallels / VMWare virtual machine.
* The program is free to convert CD images, Professional license allows to convert DVD images.
AnyToISO supports the following CD / DVD image formats popular in Internet.
- Convert - convert the image to the ISO format
- Extract - extract the image to a local drive

Download from TusFiles 
AnyToISO Professional 3.4.2 Build 450 | 6.2 Mb


 

TRIKDOWNLOAD Copyright © 2012 Fast Loading -- Powered by Blogger