Computer Elements

Manakah yang lebih dipentingkan? Security? Functionality? ataukah Easy to Use ?

Social Engineering

Tak perduli ada berapa banyak patch yang tersedia untuk sebuah sistem, atau firewall terbaru yang dirilis di pasar, tetap saja hal sederhana bisa menjadi jalur yang mengancam keamanan sistem komputer dan informasi di dalamnya.

Jam Biner

Sistem bilangan biner atau sistem bilangan basis dua adalah sebuah sistem penulisan angka dengan menggunakan dua simbol yaitu 0 dan 1. Sistem bilangan biner modern ditemukan oleh Gottfried Wilhelm Leibniz pada abad ke-17. Sistem bilangan ini merupakan dasar dari semua sistem bilangan berbasis digital.

Is Osama bin Laden Terorist?

Is The Osama bin Laden Terrorist??? Many of the assumption of the world about the terrorist.

Program Belanja

dibawah ini ialah contoh script sederhana untuk program belanja.

Rabu, 25 Mei 2011

belajar Office Word bagi pemula

assalamu'alaikum, Wr.Wb.

alhamdulillah, akhirnya selesai juga buku panduan Ms. Office Word 2007 untuk pemula yang benar-benar masih tidak tahu dengan Program untuk mengetik ini.
didalamnya terdapat beberapa tutorial, dijelaskan dengan gambar screenshot, insyaallah bisa bermanfaat bagi mereka yang ingin belajar. amiin..
ukuran file tidak besar, hanya 9 MB.
Bagi yang mau belajar, silakan download disni.

Selasa, 17 Mei 2011

some place that i wanna go

TRAVELING

There are 3 places that I want to visit with people I love, that is:

1. Bali

Reason: because this place is a place that has beautiful scenery, cultural variety, and Bali's most famous beaches. This will be a romantic destination.

Sample photos of places:

Estimated cost:

By relying on a package tour to Bali (3 days 2 nights, including hotel), is estimated at only Rp. 2,100,000.00. With cost @1.050.000, 00

2. Alaska, (North End (United States)

The reason: after a look around the site, I found this site

http://duitdaridesa.blogspot.com/2009/06/tempat-tempat-terindah-di-dunia-dalam.html "Rays of the Aurora Borealis" spectacular "in the skies of Alaska (the northern tip of America, near the North Pole). Aurora is actually the natural light in the sky caused by the collision of particles of the earth's magnetic field with atoms and molecules of Earth's upper atmosphere. The color is most common there are two, green and red and can be seen at night. "And this is a photo from that site:

Estimated cost:

After seeing the sites that provide information about Alaska, ranging from ticket prices, and lodging. Estimated to cost around $ 4500, or about Rp. 42,500,000,-

3. Paris

Reason: this place is the most romantic place on the planet. Hehe J

Every woman must have longed to visit this place. Sample photos of places:

Estimated cost:

Looking at the packages offered by the sites on the internet, I made a decision, the estimated cost to vacation in Paris at USD. 3,000 or approximately Rp. 25,500,000, -

Rabu, 11 Mei 2011

Tugas UAS


membuat aplikasi sederhana, dengan menggunakan gabungan dari prosedur, fungsi logika, aritmatika, dan looping berikut nested loop.
di tampilan halaman depan akan diminta password.

halaman berikutnya akan diberikan pilihan menu, yang terdiri atas tiga pilihan.
yaitu : Data Siswa, Pembelian, dan Keluar dari program.





Data Siswa terpecah menjadi 2 opsi. yaitu input data dan lihat data. input data digunakan jika ada siswa baru yang akan mendaftar. dan lihat data digunakan untuk melihat hasil inputan yang telah dimaskukan dengan hasil berupa tabel.setiap menu yang anda pilih akan terdapat pilihan menu didalamnya yang menyatakan, apakah anda ingin kembali mengulang opsi yang anda pilih? atau mau keluar dengan cara masuk ke manu utama terlebih dahulu.

untuk melihat keseluruhan kode dan programnya bisa di ambil dari sini.

Selasa, 10 Mei 2011

Program Gabungan

Penerapan Prosedur dalam pascal for windows.

program ini saya buat dengan menggunakan TPW 1.5
berikut contoh script nya.

program gabungan;
uses wincrt;
var
a,b,c: real;
pilihan_huruf,lagi: char;
pilihan,masuk,keluar,sisa,y,n,i,umur,tahun,tanggal,beli: integer;
harga,bersih,kotor,jumlah,total,subtotal,diskon,bayar,pajak: real;
nama,kode,tempat,bulan,hobi,makan,minum:string;

procedure luas_lingkaran;
begin
write(' masukan jari-jari lingkaran : ');readln(a);
c:= 22/7*a*a;
end;
procedure luas_persegi_panjang;
begin
write(' masukan panjang : ');readln(a);
write(' masukan lebar : ');readln(b);
c:=a*b;
end;
procedure luas_segitiga;
begin
write(' masukan alas : ');readln(a);
write(' masukan tinggi : ');readln(b);
c:=1/2*a*b;
end;
procedure hasil;
begin
writeln(' hasil : ',c:0:0,' cm2');
end;

procedure jual;
begin
y:=9;
jumlah:=0;
n:=0;
write(' berapa banyaknya barang yang masuk? => ');readln(n);
writeln;
writeln(' PT. KADANG UNTUNG ');
writeln(' Jl. Ngayayay Gang Bohay No.555, Rangkasbitung ');
writeln('===============================================================================');
writeln(' No. Nama Kode Jumlah sisa Harga Hasil Pajak Hasil ');
writeln(' Barang Barang masuk|keluar barang Barang Kotor Bersih');
writeln('-------------------------------------------------------------------------------');
i:=1;
repeat
gotoxy(2,y);writeln(i);
gotoxy(6,y);;readln(nama);
gotoxy(15,y);readln(kode);
gotoxy(24,y);readln(masuk);
gotoxy(31,y);readln(keluar);
sisa:=masuk-keluar;
gotoxy(38,y);writeln(sisa);
gotoxy(47,y);readln(harga);
kotor:=keluar*harga;
gotoxy(57,y);writeln(kotor:0:0);
if kotor > 100000 then
pajak:=0.1*kotor
else
pajak:=0;
gotoxy(66,y);writeln(pajak:0:0);
bersih:=kotor-pajak;
gotoxy(74,y);write(bersih:0:0);
jumlah:=jumlah+bersih;
y:=y+1;
i:=i+1;
until i=n;
y:=y+1;
gotoxy(65,y);writeln(' Jumlah : ',jumlah:0:0);
end;

procedure biodata;
begin
write(' Nama : ');readln(nama);
write(' Tempat Lahir : ');readln(tempat);
write(' Tanggal Lahir : ');readln(tanggal);
write(' Bulan Lahir : ');readln(bulan);
write(' Tahun Lahir : ');readln(tahun);
write(' Umur : ');readln(umur);
write(' Hobi : ');readln(hobi);
write(' Makanan Favorit : ');readln(makan);
write(' Minuman Favorit : ');readln(minum);
end;

procedure pembelian;
begin
subtotal:=0;
jumlah:=0;
pajak:=0;
diskon:=0;
write(' berapa banyak barang yang di beli : ');readln(n);
writeln(' -------------------------------------');
for i:=1 to n do
begin
write(' Nama Barang : ');readln(nama);
write(' Kode Barang : ');readln(kode);
write(' Harga Satuan : Rp. ');readln(harga);
write(' Beli : ');readln(beli);
jumlah:=harga*beli;
writeln(' Jumlah : Rp. ',jumlah:0:2);
subtotal:=subtotal+jumlah;
writeln(' ==============================');
end;
writeln(' Subtotal : Rp. ',subtotal:0:2);
if subtotal >= 500000 then
diskon := 0.1*subtotal
else
if subtotal > 250000 then
diskon := 0.05*subtotal
else
diskon := 0;
writeln(' Diskon : Rp. ',diskon:0:2);
total:=subtotal-diskon;
writeln(' Total : Rp. ',total:0:2);
write(' Bayar : Rp. ');readln(bayar);
bersih:=bayar-total;
writeln('===============================');
writeln(' Kembali : Rp. ',bersih:0:2);
end;

procedure menu;
begin
writeln;
writeln(' 1. Ulangi Program');
writeln(' 2. Ke Menu Utama');
writeln(' --------------------');
write(' masukan pilihan => ');readln(n);
end;

begin
writeln;
writeln;
writeln(' This Program has Made by ');
writeln(' ----------------------------------- ');
writeln(' Royan D'algren ');
writeln;
writeln(' Please Enjoy it !!! ');
writeln(' ====================================== ');
writeln;
writeln;
write(' press enter to continue');
readln;
lagi:='y';
while lagi='y' do
begin
clrscr;
writeln;
writeln(' MENU ');
writeln(' --- select one --- ');
writeln;
writeln(' 1. Luas');
writeln(' 2. Penjualan');
writeln(' 3. Biodata');
writeln(' 4. Pembelian');
writeln(' 5. Exit');
writeln;
writeln(' --------------------');
write(' masukan pilihan => ');readln(pilihan);
case pilihan of
1 : begin
clrscr;
n:=1;
while n=1 do
begin
clrscr;
writeln;
writeln(' a. Luas Lingkaran');
writeln(' b. Luas Persegi Panjang');
writeln(' c. Luas Segitiga');
writeln(' --------------------');
write(' masukan pilihan => ');readln(pilihan_huruf);
if pilihan_huruf='a' then
begin
clrscr;
writeln;
luas_lingkaran;
hasil;
end;
if pilihan_huruf='b' then
begin
clrscr;
writeln;
luas_persegi_panjang;
hasil;
end;
if pilihan_huruf='c' then
begin
clrscr;
writeln;
luas_segitiga;
hasil;
end;
menu;
end;
end;
2 : begin
clrscr;
n:=1;
while n=1 do
begin
clrscr;
jual;
menu;
end;
end;
3 : begin
clrscr;
n:=1;
while n=1 do
begin
clrscr;
writeln;
biodata;
menu;
end;
end;
4 : begin
n:=1;
while n=1 do
begin
clrscr;
writeln;
pembelian;
menu;
end;
end;
5 : begin
writeln(' --------------------');
write(' press enter for exit');
readln;
donewincrt;
end;
end;
end;
read;
donewincrt;
end.

yang belum mempunyai programnya bisa di donlot disini.
dan program yang telah jadi dapat di donlot disini.

Review Osama

Is The Osama bin Laden Terrorist???

Many of the assumption of the world about the terrorist. And terrorist activities has been around since long. Terrorist activities that highlight the most at present is from the Al Qaeda organization. Al Qaeda is a Sunni Islamic fundamentalist paramilitary organization one of whose main goal is to reduce external influence on the interests of Islam. Al-Qaeda international terrorist organization listed by the United States, European Union, the United Nations, the United Kingdom, Canada, Australia, and several other countries.

Here are the responses from several countries about Osama who had considered dead and activities that they consider terrorist.

· Hungary EU:

Chairman of Hungary's European Union, warned on Monday (2 / 5) that the fight against terrorism is far from over despite the welcome news of the death of Al-Qaeda leader Osama Bin Laden as good news. "The United States has achieved a great achievement by eliminating the terrorist leader, but it does not necessarily end the fight against terrorism," said Hungarian Foreign Minister Janos Martonyi told national radio MR.

· Australia:
The death of Al Qaeda leader Osama bin Laden is very good news for the world who want freedom and peace
German Foreign Minister Guido Westerwelle

· Indonesia:

"From Mr. President, President Yudhoyono said that Indonesia would have the same spirit with other nations in the world in combating the threat of terrorism. And of course Indonesia interested to liberate themselves from the threat or terrorist attack," said presidential spokesman of Interior Affairs, Julian Aldrin Pasha.

Of the three representatives of the country's statement was quite clear that they think that Osama is a terrorist who should be fought.

United States often strap on his terrorists of various groups in the world. Even they have a list of "most wanted terrorists" in the world based on false assessments of U.S. intelligence agents and allies, if a person or entity is considered or accused of endangering national security of the superpower.

Actually, the terrorist leader alleged that the United States pinned on Osama bin Laden is more due to different understanding. Previously head of Al Qaeda are just want to promote Islamic revolution throughout the Muslim world and reject foreign intervention in the Middle East. Osama and his group then considered a terrorist, after the first Gulf War. When that Al-Qaeda against the U.S. presence, particularly in Saudi Arabia. According to Osama, he did not like the U.S. troops near the Ka'aba and the presence of female soldiers.

From where Americans furious against Osama bin Laden, because he only one who dared to challenge the U.S.!

The tragedy of 9 / 11 or 9 September that occurred in America, is a twin attack on two buildings which called the WTC (World Trade Center) to hijack commercial aircraft and crashed off.

This is the culmination of the feud American-Osama. Until Osama became no.1 in search of people around the world, with Americans who proclaim.

But, besides that all, there were other interesting events that circulated in cyberspace. That the incidence of 9 / 11 was created by the Americans themselves. This operation is commonly called "Operation False Flag", which has been made in such a way as to deceive the public so the public thought the operation was carried out by other groups.

This operation is usually performed by the ruling government in the country. Then the situation was engineered in such a way, giving rise to the notion that government forces were targeted by a particular group, but the attack and rebel is orang2 of government itself. The goal? That the government had the support to launch an attack on an ongoing basis to countries who accused or blamed.

Many of the facts that reveal the singularity-singularity of the alleged events had been on Osama. If the event 9 / 11 truly acts of Osama and no party to intervene, questions that arise are:

1. WTC events of 9 / 11 are full of conspiracy, and certainly the U.S. using this operation.

2. Who are groups / person responsible for conducting these operations at the WTC event? Could it be Osama Bin Laden? Who is actually Osama Bin Laden? Really he is a mujahidin who dared to attack the U.S.?

3. If Osama Bin Laden is a U.S. stooge, it means that answered why the U.S. is so eager to kill Arabs? As we know, the U.S. could do anything to achieve their goals, one kill and rid the Middle East and Islamic nations.

From the questions above, this obviously includes conspiracy illuminati. Surely this has to do with the NWO (New World Order).

The term New World Order (NWO) has been used by many politicians throughout the ages, and is a generic term used to refer to a global conspiracy conducted by a group of extremely powerful and influential which includes the wealthy people of the world, political leaders, corporate elite , as well as members of a group called Black Nobility of Europe (dominated by the British Crown), which aims to create a world with one government (fascist) that is free from any nationality and border areas.

Meanwhile, illuminati is the secret society that was formed around 1776 by a number of family / dynastic nobility of Europe, their dream is to control the world through the dream of "New World Order." They control the world economy, the government of the countries through agents and billionaire, often make the financial-economic crises and wars (including World War I, World War II, Vietnam, Iraq, etc..) To profit and control as well as post-disaster.

Of course, with a lot of evidence already disclosed above, we can conclude what actually happened! Is it really Osama is a terrorist No.1 in the world? Or is he just a victim of slander America and other countries that have a hidden agenda behind it all?

Personality, i rejected Statement of Osama is The Big Terorist in the World.

Wallahu'alambissawab.

Source :

http://informasidamas.wordpress.com/konspirasi/new-world-order-dajjal/

http://www.rense.com/general21/was911mossad.htm
http://www.911review.com/articles/an...perations.html
http://www.truthmove.org/content/false-flag-operations/

http://www.kaskus.us/showthread.php?t=3538825

http://id.shvoong.com/law-and-politics/2155806-osama-bukan-obama/

http://www.tribunnews.com/2011/05/02/inilah-tanggapan-para-pemimpin-eropa-soal-kematian-osama

http://id.wikipedia.org/wiki/Al-Qaeda

http://www.detiknews.com/read/2011/05/03/130141/1631218/10/ini-tanggapan-sby-soal-tewasnya-osama-bin-laden