Skip to main content
A. HISTORY OF BOGOR
Bogor is one of the oldest cities in Indonesia, which was founded in the 16th century (in the year 1579). Before the Dutch and VOC occupation, Bogor was the center of the Kingdom of Pajajaran. But after the invasion of troops from Banten, the city was destroyed and for one century it was almost wiped out from history. By the time VOC occupied Banten and its vicinity, Bogor also fell under the control of VOC.

Parung Angsana which was named Kampung Baru (The New Village) was the origin of modern Bogor (Tanujiwa 1689-1705). In Kampung Baru, a kind of holiday residence was built by GJ. Baron Van Imhoff (1740), which is now known as the Bogor Palace. In 1745, the city was given the name Buitenzorg, which meant "beyond worry". In 1904, Buitenzorg was formally appointed as capital and residence of the Governor General of the Dutch Indies, covering an area of 1,205 hectares, and comprising 2 sub-districts (Kecamatan) and 7 villages.

In 1924, through the decree of the Governor General of the Dutch Indies Number 289 of 1924, the villages of Bantar Jati and Tegalega were added to the district, an expansion of 951 hectares, which made the area of Buitenzorg to total 2,156 hectares. The area was designed to be inhabited by 30,000 people. In 1941, Buitenzorg was formally separated from Batavia, and was given autonomy.


The Indonesian Act Number 16 of 1950 established the City of Bogor as a big city and municipality, which was divided into 2 Kecamatans and 16 neigborhoods.

Comments

Popular posts from this blog

Membuat website dengan CodeIgniter Part1

Langsung aja saya jabarkan kebutuhan yg akan di pakai nanti untuk membuat sebuah website d ari framework codeigniter... pertama.. ya tentu saja source dari codeigniter-nya... bisa pake yg terbaru atau 2.0 ++ disini kedua.. database -nya bisa menggunakan MySql yg udah di bundle ke dalam Xampp disini ketiga (optional) Editor teks.... pake notepad oke... pake netbeans oke juga... Langkah selanjutnya adalah install terlebih dahulu xampp-nya jika sudah ada xamppnya, lanjut ke langkah selanjutnya, lalu kemudian extract source Codeigniter di htdocs xampp. berikut susunan direktori Codeigniter root dir....         .../application                   .../cache                   .../config                   .../controllers      ...

A history of Einstein

Around 1886 Albert Einstein began his school career in Munich. As well as his violin lessons, which he had from age six to age thirteen, he also had religious education at home where he was taught Judaism. Two years later he entered the Luitpold Gymnasium and after this his religious education was given at school. He studied mathematics, in particular the calculus, beginning around 1891.  In 1894 Einstein's family moved to Milan but Einstein remained in Munich. In 1895 Einstein failed an examination that would have allowed him to study for a diploma as an electrical engineer at the Eidgenössische Technische Hochschule in Zurich. Einstein renounced German citizenship in 1896 and was to be stateless for a number of years. He did not even apply for Swiss citizenship until 1899, citizenship being granted in 1901.  Following the failing of the entrance exam to the ETH, Einstein attended secondary school at Aarau planning to use this route to enter the ETH in Zurich. While at Aarau he wr...

Mengurutkan string di C++

//*****************************************************************// // Mengurutkan data array string menggunakan bubble sort // // http://wirautama.net // //*****************************************************************// #include #include #include void main() { clrscr(); //declare the variable and array int n, test; char data[10][100]; char tmp[100]; n = 10; //input data for(int i=0; i { cout cin>>data[i]; } //sort data using bubble sort for(int i=0; i { for(int j=i+1; j { test = strcmp(data[i], data[j]); if(test > 0) { strcpy(tmp, data[i]); strcpy(data[i], data[j]); strcpy(data[j], tmp); } } } cout for(int i=0; i { cout } getch(); }