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

CakePHP Programmer's Reference Guide

What is CakePHP? CakePHP is a free open-source rapid development framework for PHP. Its a structure of libraries, classes and run-time infrastructure for programmers creating web applications originally inspired by the Ruby on Rails framework. Our primary goal is to enable you to work in a structured and rapid manner - without loss of flexibility. History of CakePHP In 2005, Michal Tatarynowicz wrote a minimal version of a Rapid Application Framework in PHP. He found that it was the start of a very good framework. Michal published the framework under the MIT license, dubbing it Cake, and opened it up to a community of developers, who now maintain Cake under the name CakePHP. Introduction This chapter is a short, casual introduction to MVC concepts as they are implemented in Cake. If you're new to MVC (Model View Controller) patterns, this chapter is definitely for you. We begin with a discussion of general MVC concepts, work our way into the specific app...

Cara Kerja disk magnet

DISK MAGNET Disk merupakan piringan bundar yang biasanya terbuat dari logam atau plastic dengan permukaan dilapisi bahan yang cepat dimegnetisasi. Mekanisme baca atau tulis menggunakan kepala baca atau tulis yang disebut head, merupakan kumparan pengkonduksi ( conducting coll ). Desain fisiknya, head bersifat stasioner sedangkan piringan disk berputar sesuai kontrolnya. Metode layout data pada disk terbagi dua, yaitu constant angular velocity dan multiple zoned recording. Disk diorganisasi dalam bentuk cincin-cincin konsentris yang disebut track. Track pada disk dipisahkan oleh gap (gap: mencegah atau mengurangi kesalahan pembacaan maupun penulisan yang disebabkan melesetnya head atau karena interferensi medan magnet). Sejumlah bit yang sama akan menempati track-track yang tersedia. Semakin ke dalam disk maka kerapatan (density) disk akan bertambah besar. Data dikirim ke memori ini dalam bentuk blok, umumnya blok lebih kecil kapasitasnya dibandingkan track. Blok-blok data disimp...

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(); }