Download EasyCase 4.20

"Om Swastiastu"

EasyCase adalah suatu software yang digunakan untuk membuat ERD (Entity Relational Database) dalam pemrograman SQL atau basis data. EasyCase juga dapat membantu membuat perancangan sistem sama seperti Microsoft Office Visio, cuma yang ini lebih simple tapi tetap hebat.
Kelebihan yang dimiliki oleh EasyCase ini adalah mampu mengetes arah dari data serta mengecek keseimbangan dari level yang dimiliki. Dengan menggunakan EasyCase, dapat dipastikan bahwa diagram yang dibuat secara rule dan balance nya sudah benar.
Nah jika Anda tertatik untuk mendownload software ini, kalian dapat mendownloadnya disini gratis.

Download EasyCase 4.20


"Om Santhi, Santhi, Santhi, Om"

Pagerank Pertamaku

"Om Swastiastu"


Oia, baru nyadar lagi saya nii.. ternyata google pagerank ku udah isi, dari yang tadi nya nol alias belom kena nilai, sekarang langsung jadi peringkat satu bro!!! Kalo ga percaya, lihat aja disebelah. Mau tahu rahasianya?? Baca postingan ku sebelumnya..
Tips to Get Permanent Visitor, Raised Your Alexa Rank, and Raised Your Google Pagerank.


Pendek banget yaa postingan kali ini,, hahaha.. gapapa.. cuma mau ngasi info aja.. abisnya dalam gag ada ide lagi, malam ini aku udah posting tiga kali.. segitu aja dulu deh, mau nonton Liga Inggris dulu.. Arsenal lawan Everton nih..

"Om Santhi, Santhi, Santhi, Om"

Alexa Rank - My Blog Partner + Tips to Get Permanent Visitors

"Om Swastiastu"

Semakin hari semakin naik alexa rank IT Programmer. Walaupun mulai jarang blogwalking, tapi perjuangan serius yang saya lakukan dalam 3 bulan umur blog ini sangat bermanfaat. Pengunjung blog saya setiap harinya selalu melebihi angka 30 orang (tanpa blogwalking). Ini karena beberapa postingan blog saya ada dalam 10 besar peringkat pencarian Google.

Sekarang alexa blog saya sudah mencapai angka 991,852! Sebelumnya sekitar 1,110,999 (lupa, hehe).


Hebat memang mengingat dalam 5 hari terakhir saya tidak pernah membuka blog, blogwalking ataupun memposting apapun. Berikut adalah sara-saran yang dapat saya berikan agar blog anda mempunyai pengunjung tetap.

Continue Reading »

Download Turbo Pascal

"Om Swastiastu"

Turbo Pascal adalah pengembangan perangkat lunak yang terdiri dari kompiler dan IDE (Integrated Development Environment) untuk bahasa pemrograman pascal untuk sistem operasi CP/M, CP/M-86, dan MS-DOS yang dikembangkan oleh Borland.
Nah, bagi kalian yang tertarik untuk mempelajari bahasa pemrograman Pascal, kalian bisa mendownload program ini sebagai compilernya. Ada banyak versi Turbo Pascal yang saya berikan dalam satu link karena size compiler Pascal yang kecil.


Download Turbo Pascal

"Om Santhi, Santhi, Santhi, Om"

Google's Mobile Homepage Shows Nearby Places

Google's mobile homepage for iPhone and Android phones added a cool feature that shows a list of points of interest near you. The page can already find your location, so you only need to click on a category or to select "Explore right here".

"First, we wanted to make it fast and easy to find out more about a place in your immediate vicinity, whether you're standing right in front of a business or if it's just a short walk away. (...) Second, we wanted to make searching for popular categories of nearby places really simple," explains Google.


This is a good example of "queryless" search. Google can provide a list of relevant results just by knowing your location.

Apparently, this feature is available in the US for iPhone OS 3.0+ and Android 2.0.1+, but I managed to enable it outside of US by setting the region format to "United States" and by updating the location.

Nexus One, the Google Phone

Two years after announcing Android, Google answers the question "where's my GPhone?" by launching Nexus One. It's not the first Google-branded phone manufactured by HTC, but it's the first Android phone sold by Google.

Google set up an online store for Android phones and Nexus One is the first phone that's available for sale. Andy Rubin likes to call it a superphone because it's much more than a regular smartphone. Even if Nexus One is probably the best Android phone on the market, it's far from being revolutionary.

"Manufactured by HTC, the Nexus One features dynamic noise suppression from Audience, Inc., a large 3.7" OLED display for deep contrast and brilliant colors and a 1GHz Qualcomm Snapdragon chipset for blazing speeds. Running on Android 2.1, the newest version of Eclair, the software includes innovations like a voice-enabled keyboard so you can speak into any text field, fun Live Wallpapers, a 3D photo gallery for richer media experiences and lots more. Of course, it also comes with a host of popular Google applications, including Gmail, Google Voice and Google Maps Navigation," mentions Google.


The phone is available for purchase in the United States and can be shipped to the UK, Hong Kong, and Singapore. You can buy it unlocked for $529 or buy it for $179 with a T-Mobile plan. In the coming months, Google will ship the phone in many other countries and will add support for other carriers, including Verizon and Vodafone.

Why launch a phone and sell it only on Google's site? To create some excitement and to connect the phone with Google's brand. Nexus means "bond, link", so the phone is the link between Google's users and Google's mobile services.


Google's Animated Doodle

Google's US homepage uses an animation to celebrate Isaac Newton's birthday. After loading the page, an apple falls from the tree to illustrate Newton's theory of gravity.


It's the first time when Google uses an animated doodle on its homepage. Now that users got used to the fade-in animation that exposes Google's navigation links, Google will try new ways to make the homepage more interactive.

Google Docs Thumbnails

Google Docs generates thumbnails for documents, so you can quickly preview files. For now, this feature is only available if you share a folder and use the special view for shared folders.

Google stores the thumbnails using Picasa Web Albums. Here's an example of thumbnail:

http://lh5.ggpht.com/DsAScNyFZzs6EVjy0uN1F_Iwczykgoq0tEmmIu05WydKzIj0mBg-Znm-REMzvda8oWE=s32-c

You can replace s32 with other values: s64, s640 to see bigger versions of the thumbnails. It's likely that Google Docs will add a grid view for managing files in a more traditional way.

Menghitung Jumlah dan Rata-rata 5 Bilangan

"Om Swastiastu"

Sangat mudah untuk membuat program ini. Langkah pertama adalah memasukkan 5 buah bilangan. Kemudian untuk mencari jumlahnya, kelima bilangan itu dijumlahkan, dan untuk mencari rata-ratanya, bagi hasil jumlah bilangan dengan 5.
Sangat mudah bukan.

Ini dia syntax nya..


#include <iostream.h>
#include <conio.h>
#include <stdio.h>

void main()
{
 int bil1,bil2,bil3,bil4,bil5;
 int jumlah;
 float rata_rata;

 cout<<"Masukkan Bilangan 1 : "; cin>>bil1;
 cout<<"Masukkan Bilangan 2 : "; cin>>bil2;
 cout<<"Masukkan Bilangan 3 : "; cin>>bil3;
 cout<<"Masukkan Bilangan 4 : "; cin>>bil4;
 cout<<"Masukkan Bilangan 5 : "; cin>>bil5;

Continue Reading »

Download Championship Manager 2010 + Crack

"Om Swastiastu"

Hi bloggers, I just have installing Championship Manager 2010. Would you want to play it too? Here I will give you the download link and also a little review about the game. Ough, using English is too hard for me to explain about this game. So, I'll just explain the game in Indonesian language. But if you don't understand, I can tell you this game is pretty damn cool than the last version!! And this game also full version (crack inside & the file format is .iso). You have to try it by yourself! I'll give you the download link in the last page of this post.

Oke, Championship Manager adalah sebuah game manager sepakbola yang udah terkenal banget dari dulu. Sekarang udah memasuki versi 2010 nya. Gue udah cobain sebentar, keren banget coi! Beda banget dengan versi terdahulu nya.  Banyak perbaikan yang ada di game ini dibanding versi terdahulunya. Contohnya tampilan menu saat bermain yang halus (bikin betah main lama-lama and mata jadi ga sakit), 3D match yang halus and gerakan nya juga relative. Nih gue kasi gambar-gambar preview gamenya.

Continue Reading »