Rabu, 27 Februari 2013

Tips SEO Cara Submit Blog


TIPS SEO CARA SUBMIT BLOG
TIPS SEO CARA SUBMIT BLOG gunanya adalah untuk mempebaiki SERP BLOG kita dimesin pencarian sekaligus sebagai ajang perkenalan Blog kita ke khalayak.Submit Blog memang sangat diperlukan sekali dalam membangun sebuah blog agar lebih SEO dan lebih bagus untuk Ratting atau pun Serp. kadangkala blog kita tercecer dimesin pencarian adakalanya blog kita juga hilang di beberapa Search Engine dan itu memang ada beberapa faktor,mungkin artikel kita Copaz ada juga disebabkan karena ada yang lebih bagus lagi dalam pemaparan artikel yang mirip seperti punya kita tersebut jadi intinya Submit Blog sangat diperlukan dalam permasalahan TRIK SEO maupun TIPS SEO. dikesempatan kali ini saya mau kasih beberapa alamat link untuk Submit Blog maupun Submit Artikel punya kalian semoga saja Ratting Blog kita bisa bagus di Search Engine seperti GOOGLE atau BING bisa juga BAIDU. Link-link dibawah ini semuanya sudah pernah saya coba apabila Ratting Blog ataupun Serp Blog saya lagi down dab semuanya ber PAGE RANK yang cukup bagus..semoga saja dengan cara TIPS SEO CARA SUBMIT BLOG yang saya ketengahkan ini bisa mendongkrak Blogkalian ketempat yang agak bagus,dan tentunya lebih SEODan inilah linklink tersebut :

http://www.theshoppings.com/
http://www.freewebsitedirectory.com/
http://www.000directory.com.ar/
http://www.134u.net/
http://www.addsitelink.com/
http://www.businessesonthenet.co.uk/
http://www.coolwebsitelistings.com/
http://www.linkaddurl.com/
http://www.boingboing.net/suggest.html
http://www.ribcast.com/
http://www.wmxp.com/
http://www.cheetosokumaodasi.com/
http://www.miriblack.com/
http://www.seocourt.com/
http://www.londovor.com/

MediaInfo 0.7.62 Full Version

MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files.

Version: 0.7.62
Size: 4.21MB
Date Added: Feb 27, 2013
License: Freeware
Languages: Multi-languages
  • Publisher:
  • MediaArea.net SARL
  • Website:
  • http://www.mediainfo.sourceforge.net
  • OS:
  • Windows XP / Vista / Windows7 / XP64 / Vista64 / Windows7 64 / Windows8 / Windows8 64
Attention
When the download you will be redirected to adf.ly, wait 5 seconds and click SKIP AD / SKIP 

Selasa, 26 Februari 2013

3 Cara Membuat Artikel Terkait di Blog



Hallo sobat, kali ini saya akan share Cara Membuat Artikel Terkait/Related post di Blogger. seperti yang kita tahu, jenis script artikel terkait memang berbeda-beda ada yang daftar list biasa, ada yang menggunakan scroll dan ada pula yang menggunakan thumbnails. Oleh sebab itu, saya bermaksud merangkum ke-3 cara tersebut dalam satu posting. Oke, sekarang mari ikuti panduan saya ;

Masuk blogger > Rancangan(Template) > Edit Html > Centang Expand Template Widget
(Jangan lupa backup dulu caranya pilih "Download template lengkap")

1. Cara Membuat Artikel Terkait Biasa (Sederhana)


cari kode </head> (Gunakan Ctrl + F) kemudian letakkan script dibawah ini tepat di atas/sebelum kode</head>


<script type="text/javascript">
//<![CDATA[
var relatedTitles = new Array();
var relatedTitlesNum = 0;
var relatedUrls = new Array();
function related_results_labels(json) {
for (var i = 0; i < json.feed.entry.length; i++) {
var entry = json.feed.entry[i];
relatedTitles[relatedTitlesNum] = entry.title.$t;
for (var k = 0; k < entry.link.length; k++) {
if (entry.link[k].rel == 'alternate') {
relatedUrls[relatedTitlesNum] = entry.link[k].href;
relatedTitlesNum++;
break;}}}}
function removeRelatedDuplicates() {
var tmp = new Array(0);
var tmp2 = new Array(0);
for(var i = 0; i < relatedUrls.length; i++) {
if(!contains(tmp, relatedUrls[i])) {
tmp.length += 1;
tmp[tmp.length - 1] = relatedUrls[i];
tmp2.length += 1;
tmp2[tmp2.length - 1] = relatedTitles[i];}}
relatedTitles = tmp2;
relatedUrls = tmp;}
function contains(a, e) {
for(var j = 0; j < a.length; j++) if (a[j]==e) return true;
return false;}
function printRelatedLabels() {
var r = Math.floor((relatedTitles.length - 1) * Math.random());
var i = 0;
document.write('<ul>');
while (i < relatedTitles.length && i < 20) {
document.write('<li><a href="' + relatedUrls[r] + '">' +
relatedTitles[r] + '</a></li>');
if (r < relatedTitles.length - 1) {
r++;
} else {
r = 0;}
i++;}
document.write('</ul>');}
//]]>
</script>
Kemudian cari kode <data:post.body/></b:if> atau <data:post.body/> lalu letakkan script berikut ini di bawah kode <data:post.body/>

<b:if cond='data:post.labels'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:blog.pageType == "item"'>
<script expr:src='"/feeds/posts/default/-/" + data:label.name + "?alt=json-in-script&amp;callback=related_results_labels&amp;max-results=5"' type='text/javascript'/>
</b:if>
</b:loop>
</b:if>

<b:if cond='data:blog.pageType == "item"'>
<h4>Artikel Terkait</h4>
<script type="text/javascript">
removeRelatedDuplicates();
printRelatedLabels();
</script>
</b:if>

Terakhir simpan template sobat dengan begitu Cara Membuat Artikel Terkait Sederhana selesai.

2. Cara Membuat Artikel Terkait dengan Scroll
(contoh seperti yang dipakai oleh blog ini)

Cari kode <data:post.body/></b:if> atau <data:post.body/> lalu sama seperti cara diatas letakkan script berikut ini di bawah kode <data:post.body/>


<b:if cond='data:blog.pageType == &quot;item&quot;'> <br/>
<br/>
<H2>Related Post:</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 = &quot;<data:blog.homepageUrl/>&quot;;
var maxNumberOfPostsPerLabel = 4;
var maxNumberOfLabels = 10;
maxNumberOfPostsPerLabel = 9999;
maxNumberOfLabels = 3;
function listEntries10(json) {
var ul = document.createElement(&#39;ul&#39;);
var maxPosts = (json.feed.entry.length &lt;= maxNumberOfPostsPerLabel) ?
json.feed.entry.length : maxNumberOfPostsPerLabel;
for (var i = 0; i &lt; maxPosts; i++) {
var entry = json.feed.entry[i];
var alturl;
for (var k = 0; k &lt; entry.link.length; k++) {
if (entry.link[k].rel == &#39;alternate&#39;) {
alturl = entry.link[k].href;
break;
}
}
var li = document.createElement(&#39;li&#39;);
var a = document.createElement(&#39;a&#39;);
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 &lt; json.feed.link.length; l++) {
if (json.feed.link[l].rel == &#39;alternate&#39;) {
var raw = json.feed.link[l].href;
var label = raw.substr(homeUrl3.length+13);
var k;
for (k=0; k&lt;20; k++) label = label.replace(&quot;%20&quot;, &quot; &quot;);
var txt = document.createTextNode(label);
var h = document.createElement(&#39;b&#39;);
h.appendChild(txt);
var div1 = document.createElement(&#39;div&#39;);
div1.appendChild(h);
div1.appendChild(ul);
document.getElementById(&#39;albri&#39;).appendChild(div1);
}
}
}
function search10(query, label) {
var script = document.createElement(&#39;script&#39;);
script.setAttribute(&#39;src&#39;, query + &#39;feeds/posts/default/-/&#39;
+ label +
&#39;?alt=json-in-script&amp;callback=listEntries10&#39;);
script.setAttribute(&#39;type&#39;, &#39;text/javascript&#39;);
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 = &quot;<data:label.name/>&quot;;
var test = 0;
for (var i = 0; i &lt; labelArray.length; i++)
if (labelArray[i] == textLabel) test = 1;
if (test == 0) {
labelArray.push(textLabel);
var maxLabels = (labelArray.length &lt;= maxNumberOfLabels) ?
labelArray.length : maxNumberOfLabels;
if (numLabel &lt; maxLabels) {
search10(homeUrl3, textLabel);
numLabel++;
}
}
</b:loop>
</b:loop>
</script>
</div>
<script type="text/javascript">RelPost();</script>
</div>
</b:if>

angka 9999 menunjukkan jumlah artikel terkait dalam satu label, bisa diganti sesuai yang sobat inginkan. Siipp Cara Membuat Artikel Terkait dengan Scroll Finish!

3. Cara Membuat Artikel Terkait dengan Thumbnails/Gambar (Linkwithin)

Yang membuat beda cara ketiga ini dari cara di atas adalah cara ini tidak menampilkan artikel terkait berdasarkan label melainkan random/acak semua posting dalam blog sobat.

Pertama-tama sobat daftar dulu di www.linkwithin.com




Email     :   Masukkan email
Blog Link     :  Link blog sobat lengkap dengan http://
Platform     :  Pilih Blogger
Width     :  Berapa jumlah artikel yang akan ditampilkan nanti

Pilih Get Widget dan dapatkan script-nya.

Next, cari kode </body> lalu letakkan kode script berikut di bawah atau sebelum kode </body>

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

kode script yang sobat dapatkan di linkwithin.com

</b:if>
Sekian dan Terima Kasih

Kaspersky Free Virus Removal Tool 2013 11.0.0.1245 Full download

Kaspersky Free Virus Removal Tool is now released for free download on 19 February 2013 with its new version 11.0.0.1245 included new definitions and updates to work more effectively and more efficiently. Kaspersky Free Virus Removal Tool can working perfectly against Viruses, Spyware, Maleware, Trojans, Suspicious and Malicious programs with autoruns. Kaspersky includes the same algorithms and definitions that are included in Kaspersky antivirus 2013. Kaspersky Free Virus Removal Tool has includes fully functional antivirus and its scanning techniques to identify viruses and maleware from your computer.

Kaspersky Free Virus Removal Tool works perfectly with windows XP, windows vista, windows 7 and windows 8. This will help to locate virus dangerous and suspicious viruses and other malewares. Kaspersky Free Virus Removal Tool is completely freeware tool that automatically detects and quarantine suspicious and malicious files from your computer. Kaspersky Free Virus Removal Tool is unable to provide you real time protection for your computer to protect your privacy and your important data.

What's New in Kaspersky Virus Removal Tool 2013:


  • The interface has been improved and designed to make user friendly.
  • The installation and un-installation has been simplified as much as possible.
  • The self-defense system has been implemented.
  • The advanced security and privacy setting has been improved.
  • Compatibility for antivirus applications with real-time protection that is also improved.
  • Feature of "cloud" technology of Kaspersky Security Network has been included.

Simplified Interface:


  • It can be installed to an previously infected computer in Safe Mode.
  • Composite scan with multiple drives to completely disinfection your system.
  • Virus signature detection and heuristic analyzer feature has been included.
  • Gathering complete system information and provides more security for all information.

General Functions:

  • Automatic and manual removal of virus, Trojans, Malewares and worms.
  • Automatic and manual removal of Spyware and Adware modules.
  • Automatic and manual removal of all types of rootkits and Auto-runs.


Supported Languages:

  • Russian
  • English
  • German
  • French
Attention
When the download you will be redirected to adf.ly, wait 5 seconds and click SKIP AD / SKIP

Senin, 25 Februari 2013

Mengatasi Error 404 Not Found Blogspot dan WordPress


Rangking blog akan sulit meningkat apabila blog yang dikelolah sedang tidak sehat. Kesehatan sebuah blog dilihat dari banyak indikator, diantaranya adalah link yang rusak atau url link yang sudah dihapus sehingga search engine tidak menemukan url dimaksud.
Kenapa error 404 not found itu bisa muncul pada Google Webmaster? error 404 itu tercatat dalam Google Webmaster karena:

  1. Search engine tidak menemukan artikel yang dicari, sedangkan artikel tersebut sudah di index oleh Google
  2. Link didalam blog itu sendiri mengarah ke artikel yang sudah dihapus
  3. Link dari blog lain yang mengharah ke artikel yang telah dihapus
Untuk mengatasi error 404 not found di atas, kita bisa memperbaikinya untuk nomor 1 dan 2 sedangkan nomor 3 tentu kesulitan, karena kecuali blog lain tersebut milik kita juga, kita bisa dengan mudah mengedit link yang rusak dan memperbaiki menjadi link yang sesuai secara manual, namun ada cara untuk mengatasi semua error 404 not found pada Google Webmaster.

Mengatasi Error 404 Not Found Blogspot

  1. Login ke Dasboard Blogger
  2. Klik menu Settings
  3. Klik Search Preferences
  4. Pada bagian Custom Page Not Found klik Edit
  5. Masukkan kode : <script type="text/JavaScript"> location.replace('http://rizkynovi99.blogspot.com//'); </script>
  6. Ganti http://rizkynovi99.blogspot.com/ dengan url blog anda
  7. Klik Save

Mengatasi Error 404 Not Found Blog Wordpress

  1. Login ke Dasboard blgo Wordpress anda (self hosting)
  2. Klik menu Appearance - Editor
  3. Klik 404 Template (File 404.php)
  4. Tambahkan kode berikut pada baris paling atas : <?php header( 'Location:http://tobipuken.com/' ) ; ?>
  5. Ganti http://tobipuken.com dengan url blog anda dan klik Update Files
Langkah mengatasi error baik untuk blogspot dan wordpress di atas dengan maksud agar setiap kali pengunjung mengunjungi url artikel yang sudah dihapus, akan dialihkan ke homepage blog atau istilah umunya dikenal dengan redirect. Dengan demikian maka robots mesin pencari tidak lagi menganggap not found url (tidak menemukan url) meskipun tujuan sudah dialihkan ke alamat home page blog.
Setelah menyelesaikan langkah di atas, mari kita lanjutkan dengan menghapus url yang sudah terlanjur di index di Google dengan menghapus url not found pada Google Webmaster.
  1. Login ke Google Webmaster
  2. Klik nama blog yang akan dihapus urlnya
  3. Klik Optimization
  4. Klik kanan pada Remove URLs dan pilih Open Link in New Tab
  5. Klik Health
  6. Klik Crawl Errors
  7. Pada tab Web, klik Not Found (25 errors)
  8. Scroll sedikit ke bawah dan klik url error yang pertama (jendela 1)
  9. Blok dan copy URL error tersebut
  10. Klik tab Remove URLs (jendela baru yang dibuka pada langkah ke 4, saya namakanjendela 2)
  11. Klik Create a new removal request
  12. Klik kanan dan pilih paste (atau CTRL+V)
  13. Klik Continue
  14. Klik Submit Request
  15. Kembali ke jendela 1
  16. Klik Mark as Fixed dan OK
  17. Ulangi langkah 8 hingga langkah 16 sampai semua url terhapus
Demikian cara mengatasi error 404 not found di blog dan Google Webmaster, namun anda harus menunggu beberapa hari bahkan minggu dan bulanan untuk membuktikan bahwa apa yang anda lakukan telah berhasil menghilangkan url error 404 not found, semoga dengan cara ini bisa membantu pengunjung blog Belajar Ilmu KOmputer untuk mengatasi error 404 pada blognya masing-masing sekaligus meningkatkan ranking blognya.

Cue Club PC Snooker Game Free Download Full Version

 
Cue Club is a perfect PC snooker game that is too much popular among the child's and also the elders. Cue Club has high quality 3D graphics that will attract the player to install and play this game in any version of windows. Cue Club has integrated 8-ball, 9-ball and snooker game into one package. The player can easily select the game type and play with computer as a player 2. User can easily move the stick around the table of cue club with mouse and play its ball with mouse click. Remember that Cue club is not a difficult and boring game. Just play cue club from your passion and enjoy it, its best game in the world of pool games.

Cue Club has includes 7 pool game types, so player occupied in this game for some time. US or European 8-ball game is popular and also tryout 9-ball. In 9-ball the player must put balls in to sink by the numbers. The numbers are started from 1 to 15. The user must hit and put the ball into the sink by the numerical order. If user puts wrong ball number into sing so it would be a foul and the opponent should take advantage of this foul so he get points.

Easy to Play


There are some players who choose European style of game. So it has 2 types of ball one in 15 red balls and second includes 10 red balls. User can choose and play any type of game on his choice and play this against computer player. There are chat rooms in cue club to play online against the top players and after defeating them you would be wins the trophies and other awards. So if you are interested to become a premium member of cue club snooker game so you should sign up to participate among the players from all over the world.



The balls should move in to that direction where the user expects to hit the ball through the sink. There is one white and one black ball in 8-ball type game. Cue Club is fully featured game that is more interested pool game then snooker 147. Play this game and choose your favorite game type. Defeat the computer player by your intelligence and become a top player among the world of players. User can easily stretch the power of stick to hit the ball in a low or high power with the white bar at top to screen.

Game Types in Cue Club:

  • U.S. 8-ball
  • European 8-ball
  • 9-ball
  • Snooker
  • Mini-snooker
  • Speed ball
  • Killer

Application Details

Size: 15 MB
License: 20 Minutes Free Trial
Developer: download-free-games
Attention
When the download you will be redirected to adf.ly, wait 5 seconds and click SKIP AD / SKIP


GTA Grand Theft Auto Vice City Full Download

Grand Theft Auto Vice City the famouse game all over the world  for PC users can plays the game just like a gangster do the crimes like criminals in the streets of diffirent places its very difficult but user can enjoy during plying the game . This game is easily working with diffirent Windows XP,Vista,7,8 and so on. GTA is also provides for  Android, XBOX ,iPhone, Play Station3 and Play Station2 and many other gaming zone. The version of GTA Grand Theft Auto Vice City for PC is easy to configure the all keys and very easy to play with keyboard of  the operating system. 
GTA  has extra beautiful and  attract graphics that  force the users especially kids to play this game again and again. GTA Vice City is full package of joy and an extension of GTA 3 that is the basic game of Grand Theft Auto series. GTA III has introduce many of the versions released for XBOX , PC and PS2 also. GTA Vice city has attractive graphics game that includes the category of adventure games and fast action games, mission games and action games . GTA III is full style and entertaining game that entertains every and all type of users like child, young guys etc.

GTA Grand Theft Auto Vice City including alots of new features like eight hours of licensed music and plenty of Hollywood voice actors and other beautiful graphics. Grand Theft Auto Vice City includes boats, motorcycles, Tanks, helicopters, cars, air jet and plans, police force, army force, new weapons, girls, airports, sport bikes, heavy bikes, dancing clubs pubs and golf carts.
There are many cities and area in new versions of GTA vice city with upgration of game. 
The voice city GTA games are very famous games all over the world in urope asia and many other countries all the versions of GTA become popular with the time being and these are very difficult versions of GTA game but   some cheat codes are supported in this game to play it more fun joy and more entertaining and users can play it very easily.  
Attention
When the download you will be redirected to adf.ly, wait 5 seconds and click SKIP AD / SKIP
 

Minggu, 24 Februari 2013

Download IDM Optimizer v.01 Free Download

You feel your connection internet is good ?? but when you download a something file using internet download manager, the speed or connection is bad ??? okey, i think there is a mistake in your IDM...maybe setting in IDM is not very good...And Now, you can use this software, is IDM Optimizer v.01 to improve your IDM Speed download

How To Improve IDM Speed With IDM Optimizer
• You can download on the link above, and launch the aplication without install
• and then, click the button "optimizer IDM!" and try your speed connection download
• if not success, you can click the button "Default" to return first setting..
• Good Luck !!


Sabtu, 23 Februari 2013

Download Kunci Jawaban Game iOS Icon Pop Quiz



Gak usah banyak basa basi lagi langsung download aja, nih dibawah link downloadnya
Kunci Jawaban Game iOS Icon Pop Quiz.docx : klik disini via ziddu

Jumat, 22 Februari 2013

KMPlayer free Download

KMP is very useful multi function multimedia player that is used to play many formats in your operating system.KM player can plays almost all types of multimedia files included videos and audio files.KM Media Player has very efficient internal codec pack that can plays all video and audio file formats easily without  any external codec pack. KM Player can easily supports OGG, DTS, MPEG1, AC3, AAC, WMA 7, 8 and many other audio formats. It also supports all the Codec from ffdshow and MPEG1 it additionally supports MPEG2 its users friendly software and users can install and use easily without any external Codec.

KMPlayer has unique features that provides multimedia hub that manage your VCD/DVD, video  and audio into your operating system. KMPlayer provides the facility of its own powerful tools for processing multimedia files more easier and faster. KMPlayer can also supports the auto-play feature so users can also play videos and audios in their operating systems automatically. KMPlayer is a multi functioned and multi language software and users can use in anywhere in the world with local languages.
Supports Video Format:
DivX 4/5/6, 3ivX D4H.261H.263 / H.263iH.264 / MPEG-4 AVCCinepakTheoraDirac / VC-2MJPEG (A/B)WMV ,WMV-9 / VC-1Sorenson 1/3 (Quicktime)DV On2 VP3/VP5/VP6Indeo Video v3 (IV32)Real Video 1/2Real Video 3/4,MPEG-1/2DIVX (1/2/3)MPEG-4 ASP,XviD, 
Supports Audio Format:
MPEG Layer 3 AAC - MPEG-4 part3 Vorbis AC3 - A/52 (Dolby Digital) E-AC-3 MLP / TrueHD">3 DTS WMA 1/2 WMA 3 FLAC ALAC Speex Musepack / MPC ATRAC 3 Wavpack Mod  TrueAudio APE (Monkey Audio) Real Audio Alaw/µlaw AMR (3GPP) MIDI LPCM ADPCM QCELP DV Audio QDM2/QDMC (QuickTime) MACE MPEG Layer 1/2 MP3.

Application Details: 

Size:
24 MB
Version:
3.4
License:
Freeware
Author:
KMPMedia

Selasa, 19 Februari 2013

Zyuden Sentai Kyoryuger Episode 1 Subtitle Indonesia



Zyuden Sentai Kyoryuger Brave 01
" Dia Datang! Raja Merah "
" Detā! Makka na Kingu " (でたァーッ! まっかなキング)

Dahulu kala, pada masa dinosaurus, Bumi diserang oleh pasukan dari luar angkasa. Satu-satunya orang yang mampu menghentikan mereka adalah tim yang dikenal sebagai Kyouki Ryu no Sha, Rakyat dari Naga yang Kuat, atau disingkat Kyoryuger. Sekarang, di dunia modern, mereka kembali menggunakan kekuasaan Baterai Hewan untuk melawan ancaman yang telah kembali.

-------------------------------------------------------------------------------------------------------------------

via ShareBeast

Password : HeroeSubs

-------------------------------------------------------------------------------------------------------------------

Sabtu, 16 Februari 2013

Kamen Rider Fourze The Movie - Minna de Uchuu Kitaa! Subtitle Indonesia



Kamen Rider Fourze The Movie - Minna de Uchuu Kitaa!
(仮面ライダーフォーゼ THE MOVIE みんなで宇宙キターッ!)


Anggota Kamen Rider klub di SMA Amanogawa berjuang melawan monster misterius Zodiarts. Sementara itu, Manusia Besi Luar Angkasa Groundyne dan dan Skydyne berusaha untuk menyelesaikan senjata orbital XVII. Ada kemungkinan tinggi senjata orbital XVII akan menghancurkan dunia. Kisaragi Gentaro dan anggota lain dari Kamen Rider klub bertugas untuk menghancurkan senjata orbital XVII dan harus pergi ke luar angkasa untuk menyelamatkan dunia.

-------------------------------------------------------------------------------------------------------------------


Password : HeroeSubs

-------------------------------------------------------------------------------------------------------------------

Jumat, 15 Februari 2013

Perbedaan Ms. Acces, My SQL, SQL Server, POSTGRE, dan Oracle



Dari sekian banyak Database Storage Engine, ada 5 engine yang paling banyak digunakan yaitu Ms. Access, MySql, SQL Server, Postgre dan Oracle. Semuanya mempunyai kelebihan dan kelemahan masing-masing. Di sini saya akan sedikit berbicara menyenai perbedaan di antara ke-5 nya. Walaupun belum pernah mencoba menggunakan Postgre dan Oracle, tapi saya berusaha mencari sumber dari berbagai artikel yang sudah terbaca. So, kalau ada kekurangan mohon dimengerti dan alangkah gembiranya jika para pembaca mau berbagi pengetahuan yang dimiliki untuk kemajuan bersama.

1. Ms. Access
Ms. Access adalah Database Storage Engine buatan dari Microsoft yang menempel di produk Microsoft Office. Untuk instalasinya membutuhkan space di hardisk yang lumayan gedhe. Engine ini hanya bisa dijalankan di lingkup sistem operasi Windows saja. Kapasitas datanya sangat terbatas sehingga hanya cocok jika diaplikasikan untuk small system ato home bisnis. Untuk keamananya tidak begitu bisa dihandalkan walaupun sudah mengenal konsep relationship.

2. MySql
Database Storage Engine ini banyak digunakan oleh programmer apalagi oleh web developer karena sifatnya yang free. Untuk yang expert sudah ada yang bayar. Kemampuannya sudah bisa diandalkan, mempunyai kapasitas yang cukup mumpuni sekitar 60.000 tabel dengan jumlah record mencapai 5.000.000.000 bahkan untuk yang terbaru sudah lebih. Keamanan datanya cukup aman walaupun tidak sehebat Postgre apalagi Oracle. Engine ini multiplatform sehingga mampu diaplikasikan di berbagai sistem operasi. My Sql cocok diaplikasikan diaplikasi kelas kecil dan menengah. Kelebihan paling utama engine ini adalah kecepatannya.

3. SQL Server

Database Storage Engine buatan Microsoft. Engine ini berbayar, akan tetapi Microsoft juga menyediakan yang versi gratisan (Express Edition). Karena buatan dari Bos Bill Gates maka Engine ini hanya bisa dijalankan di sistem operasi Windows saja (monoplatform). Keamanan datanya sudah lumayan. Kapasitas penyimpanan datanya tidak mencapai Tera Byte, sehingga sudah mampu untuk diterapkan di aplikasi besar. SQL Server banyak bermain di Memori untuk processing. Untuk bacup data Ms SQL banyak extensinya ada extensi .MDB, .BAK, .file. Denger – denger kapasitas rollback dan recoverinya tidak secanggih di Oracle.

4. Postgre
Database Storage Engine ini bersifat open source ato gratisan yg dikembangkan oleh berbagai developer didunia.untuk sintax query postgre sql menggunakan ANSI SQL 89, 92 dan 99. untuk postgre sql sudah support joins, views, aggregasi.

5. Oracle 
Man this is a great database. Database Storage Engine ini bisa menyimpan data sampai ukuran tera byte, dan database oracle juga meyediakan yg gratisan versi home edition untuk sekedar yg ingin belajar oracle aja sedangkan untuk versi enterprisenya kita harus bayar. sejauh yg saya tahu dalam pengalaman saya, untuk bagian query-nya oracle tetap menggunakan standard bahasa SQL. oralce bisa digunakan diberbagai platform seperti unix,windows, ato yg lainnya...
untuk masalah keamanan oracle bisa dibilang baik. untuk masalah perfomance oracle kebanyakan bermain di harddisk jd klo anda ingin menggunakan oracle anda harus menyediakan space harddisk yg cukup besar. untuk backup oracle mempunyai extensi sendiri namanya file DMP. 

Sekian dulu artikel dari saya...
Semoga artikel ini berguna...
Terima Kasih...

Minggu, 10 Februari 2013

Cara Mempercepat Internet Menggunakan DNS Alternatif pada Windows 7

Banyak para pengguna komputer yang mengeluhkan tentang kecepatan internet dari ISP (Internet Service Provider) atau penyedia layanan internet yang mereka gunakan termasuk saya sendiri. Salah satu faktor penyebabnya adalah kualitas server DNS dari ISP yang kita gunakan. DNS merupakan singkatan dari Domain Name Server, yang berfungsi untuk mengubah alamat suatu website/blog pada URL bar browser menjadi alamat IP asli dari website/blog itu sendiri. Untuk lebih jelasnya seperti contoh di bawah ini.

Misal, jika kita ingin mengunjungi espn.com untuk melihat skor sepakbola hari ini, kita akan ketik espn.com ke web browser kita. Namun, kita juga dapat mengakses espn.com dengan mengetikkan 68.71.216.176 ke URL bar pada web browser. Tentunya, espn.com jauh lebih mudah untuk diingat daripada 68.71.216.176 (bayangkan harus mengingat alamat IP untuk puluhan website yang kita kunjungi). Jadi, disinilah fungsi dari server DNS. Setiap kali seseorang mengetik alamat website, browser akan memeriksa dengan server DNS untuk menemukan alamat IP yang sebenarnya (yang tersembunyi dari pengguna) dan menggunakannya untuk mengakses situs web.

Sering kali ketika situs web atau internet itu terasa loading lambat, sebenarnya yang terjadi adalah saat itu server DNS sedang melayani jutaan permintaan begitu banyak, sehingga hal ini membuatnya sibuk dan kewalahan. Untuk itu kita akan mencoba memilih menggunakan DNS seperti Google Public DNS milik Google ataupun DNS yang lain dengan tujuan untuk meningkatkan kecepatan internet yang lebih baik. Walaupun tidak begitu berubah drastis, tapi  ini akan membantu mempercepat loading halaman web, bukan untuk membuat internet kita lebih cepat, tetapi mudah-mudahan mampu mempercepat waktu respon DNS. Sehingga membuat browser web kita memuat halaman web lebih cepat.

Ada banyak software yang berfungsi untuk mencari server DNS terbaik dan tercepat lalu kita bisa memasangnya pada windos maupun modem kita. Namun sejauh ini Open DNS dan Google Public DNS tetap menjadi yang terbaik. Silakan untuk mencoba mencarinya sendiri dengan mengunduh DNS Benchmark di bawah ini.

Homepage (untuk menuju halaman awal situs)
Download DNS Benchmark

Mencari DNS Tercepat dengan DNS Benchmark

Berikut adalah cara menggunakan software DNS Benchmark untuk mencari DNS tercepat
1. Jalankan software DNS Benchmark
2. Setelah software tampil, klik tab Nameservers kemudian klik Run Benchmark
3. Tunggu proses pencarian DNS selesai.
4. Klik tab Status dan Sort Fastest Fest pastikan dicentang

cara mempercepat internet dengan DNS alternatif

Pada tab Status akan terlihat DNS tercepat yang masih bisa digunakan (warna hijau) dan DNS tercepat yang dicekal oleh penyedia layanan internet kita (warna orange)
5. Pilih 2 DNS yang hampir memiliki kesamaan sebagai Primary dan Secondary DNS yang masih bisa digunakan
Contoh ;

Primary DNS : 8.8.4.4
Secondary DNS : 8.8.8.8 dan
Primary DNS : 129.250.35.250
Secondary DNS : 129.250.35.251

Sampai disini pencarian DNS terbaik telah selesai. Selanjutnya DNS tersebut akan kita gunakan pada pengaturan windows dan modem kita.

Cara Mengganti DNS pada Windows 7 dan Modem

Berikut adalah cara untuk melakukan perubahan DNS pada Windows dan modem.
Windows ;
1. Pertama klik Start, kemudian pilih Control Panel dari sidebar kanan Start Menu.
Selanjutnya, klik pada bagian Network and Internet.
2. Setelah itu, klik Network and Sharing Center.
3. Pada sidebar kiri, klik Change adapter settings, yang akan menampilkan daftar semua adapter jaringan (Ethernet, WiFi, Bluetooth), yang telah diinstal pada komputer kita. Disini akan saya kondisikan koneksi internet kita menggunakan dial-up modem axis.

cara mempercepat internet

4. Klik kanan profil internet > Properties > pilih tab Networking > pilih Internet Protocol Version 4 (TCP/IPv4) > Properties

cara mempercepat internet

5. Pada jendela Internet Protocol Version 4 (TCP/IPv4) Properties, pilih Use the following DNS server addresses dan masukkan Primary dan Secondary DNS pada kotak tersebut. Setelah selesai, klik OK.
    Untuk mengubah DNS pada Modem ;
    1. Jalankan Modem
    2. Klik Tool > Options

    cara mempercepat internet

    3.  Pilih Profile Management > Edit > Advanced

    cara mempercepat internet

    4. Pada menu Advanced, lihat DNS Setting lalu pilih Static

    cara mempercepat internet

    5. Masukkan Primary DNS dan Secondary DNS, klik OK

    Sampai disini pengaturan DNS untuk windos dan modem telas selesai. Restart komputer dan silahkan memulai berselancar di internet.

    Ada banyak pilihan DNS yang tersedia. Seperti disebutkan milik OpenDNS dan Google Public DNS yang bisa dengan gratis untuk digunakan. Jika kita ingin memilih OpenDNS, ada dua server: 208.67.222.222 dan 208.67.220.220 (kita dapat menggunakan keduanya atau salah satunya). Google Public DNS menggunakan 8.8.8.8 dan 8.8.4.4 sebagai server DNS-nya. Kedua DNS inilah yang paling sering digunakan.

    Tidak ada jaminan jika Google Public DNS atau OpenDNS akan lebih cepat dari server DNS ISP kita. Oleh sebab itu mengapa kita harus mencari dahulu DNS terbaik dengan software DNS Benchmark atau software lain yang sejenis. Lakukan pencarian DNS jika dirasa koneksi internet kita lambat atau jauh dari kecepatan biasanya.