Tuesday, August 31, 2010

Hal hal



Begitu banyak hal-hal yang ada didunia ini.
Published with Blogger-droid v1.5.7

Sunday, August 29, 2010

Bintang dan Bulan terang


Hari itu tanggal 26 aug 2010, suasana malam di gedung KTB Pulomas sungguh hening. Kebanyakan para karyawan sudah balik dari kantor, dikarenakan masih dalam periode ramadhan(pulang lebih awal). Namun ada hal yang menarik perhatian saya yakni Bintang dan Bulan bersinar terang dan sangat jelas. Hal ini saya perhatikan dari awal saya balik kantor sampai setibanya saya dirumah. Sungguh hal yang indah dan menakjubkan. Tuhan telah memberikan keindahan kepada kita, dan sudah selayaknya lah kita menjaga apa yang Tuhan berikan pada kita. Tuhan jadikan kami menjadi manusia yang menghargai pemberianMu.
Published with Blogger-droid v1.4.8

Friday, August 27, 2010

Suasana BSI waktu sore

Ini adalah suasana di BSI waktu sore.

Published with Blogger-droid v1.4.8

Handle UltraWinGrid when Export for Datetime format

Today i had issue when i run application for inquiry report, when the grid (ultrawingrid) have column with date value. I want to export to excel file. when i opened that excel file i cann’t update my date value to dateformat.

Until i found this rootcause :D [gladly]
it because the column value on string type not on datetime format.

image

so i use this datatable to fill that grid (see column name – calendar date) :

Private Function SetDataTableColumn() As DataTable
        Dim dtDesign As New DataTable
        With dtDesign.Columns
            .Add("EmployeeNo")
            .Add("EmployeeName")
            ' Menambahkan kolom dengan format date ( agar excelnya bisa dimodif)
            Dim idColumn As DataColumn = New DataColumn()
            idColumn.DataType = System.Type.GetType("System.DateTime")
            idColumn.ColumnName = "CalendarDate"
            .Add(idColumn)
            .Add("WDCode")
            .Add("WDSplitCode")
            .Add("AbsentCode1")
            .Add("AbsentCode2")
            .Add("AbsentCode3")
            .Add("DatetimeIn")
            .Add("DatetimeOut")
            .Add("OTBefStart")
            .Add("OTBefEnd")
            .Add("OTAftStart")
            .Add("OTAftEnd")
            .Add("OTTypeA")
            .Add("OTTypeB")
            .Add("OTTypeC")
            .Add("OTTypeD")
            .Add("TotalOT")
            .Add("TransactionPeriod")
        End With
        Return dtDesign
    End Function




After that you can export that rows with this code:







Private Sub btnExportToExcel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExportToExcel.Click
        If Not grdATDReport.Rows.Count = 0 Then
            Dim fsave As New Windows.Forms.SaveFileDialog
            fsave.Filter = "Excel Files (*.xls)|*.xls|All files (*.*)|*.*)"
            fsave.ShowDialog()
            If Not (fsave.FileName = "") Then
                Exporter.Export(grdATDReport, fsave.FileName)
                MessageBox.Show("Data has been exported !", "Export OK", MessageBoxButtons.OK, MessageBoxIcon.Information)
            End If
        Else
            If grdATDReport.Rows.Count = 0 Then
                MessageBox.Show("No data to export !", "WARNING", MessageBoxButtons.OK, MessageBoxIcon.Error)
            End If
            If grdATDReport.Rows.Count >= 65001 Then
                MessageBox.Show(String.Format("Cannot export more than 65000 attendance data (there are {0} data)", grdATDReport.Rows.Count), "Export Fail", MessageBoxButtons.OK, MessageBoxIcon.Error)
            End If
        End If
    End Sub




Thank to God because He opened my knowledge for this.













Using DateTime.ToString Pattern

How to use DATETIME.TOSTRING()

All the patterns:

0
MM/dd/yyyy
08/22/2006

1
dddd, dd MMMM yyyy
Tuesday, 22 August 2006

2
dddd, dd MMMM yyyy
HH:mm Tuesday, 22 August 2006 06:30

3
dddd, dd MMMM yyyy
hh:mm tt Tuesday, 22 August 2006 06:30 AM

4
dddd, dd MMMM yyyy
H:mm Tuesday, 22 August 2006 6:30

5
dddd, dd MMMM yyyy
h:mm tt Tuesday, 22 August 2006 6:30 AM

6
dddd, dd MMMM yyyy HH:mm:ss
Tuesday, 22 August 2006 06:30:07

7
MM/dd/yyyy HH:mm
08/22/2006 06:30

8
MM/dd/yyyy hh:mm tt
08/22/2006 06:30 AM

9
MM/dd/yyyy H:mm
08/22/2006 6:30

10
MM/dd/yyyy h:mm tt
08/22/2006 6:30 AM

11
MM/dd/yyyy HH:mm:ss
08/22/2006 06:30:07

12
MMMM dd
August 22

13
MMMM dd
August 22

14
yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK
2006-08-22T06:30:07.7199222-04:00

15
yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK
2006-08-22T06:30:07.7199222-04:00

16
ddd, dd MMM yyyy HH':'mm':'ss 'GMT'
Tue, 22 Aug 2006 06:30:07 GMT

17
ddd, dd MMM yyyy HH':'mm':'ss 'GMT'
Tue, 22 Aug 2006 06:30:07 GMT

18
yyyy'-'MM'-'dd'T'HH':'mm':'ss
2006-08-22T06:30:07

19
HH:mm
06:30

20
hh:mm tt
06:30 AM

21
H:mm
6:30

22
h:mm tt
6:30 AM

23
HH:mm:ss
06:30:07

24
yyyy'-'MM'-'dd HH':'mm':'ss'Z'
2006-08-22 06:30:07Z

25
dddd, dd MMMM yyyy HH:mm:ss
Tuesday, 22 August 2006 06:30:07

26
yyyy MMMM
2006 August

27
yyyy MMMM
2006 August

The patterns for DateTime.ToString ( 'd' ) :

0
MM/dd/yyyy
08/22/2006

The patterns for DateTime.ToString ( 'D' ) :

0
dddd, dd MMMM yyyy
Tuesday, 22 August 2006

The patterns for DateTime.ToString ( 'f' ) :

0
dddd, dd MMMM yyyy HH:mm
Tuesday, 22 August 2006 06:30

1
dddd, dd MMMM yyyy hh:mm
tt Tuesday, 22 August 2006 06:30 AM

2
dddd, dd MMMM yyyy H:mm
Tuesday, 22 August 2006 6:30

3
dddd, dd MMMM yyyy h:mm
tt Tuesday, 22 August 2006 6:30 AM

The patterns for DateTime.ToString ( 'F' ) :

0
dddd, dd MMMM yyyy HH:mm:ss
Tuesday, 22 August 2006 06:30:07

The patterns for DateTime.ToString ( 'g' ) :

0
MM/dd/yyyy HH:mm
08/22/2006 06:30

1
MM/dd/yyyy hh:mm
tt 08/22/2006 06:30 AM

2
MM/dd/yyyy H:mm
08/22/2006 6:30

3
MM/dd/yyyy h:mm tt
08/22/2006 6:30 AM

The patterns for DateTime.ToString ( 'G' ) :

0
MM/dd/yyyy HH:mm:ss
08/22/2006 06:30:07

The patterns for DateTime.ToString ( 'm' ) :

0
MMMM dd
August 22

The patterns for DateTime.ToString ( 'r' ) :

0
ddd, dd MMM yyyy HH':'mm':'ss 'GMT'
Tue, 22 Aug 2006 06:30:07 GMT

The patterns for DateTime.ToString ( 's' ) :

0
yyyy'-'MM'-'dd'T'HH':'mm':'ss
2006-08-22T06:30:07

The patterns for DateTime.ToString ( 'u' ) :

0
yyyy'-'MM'-'dd HH':'mm':'ss'Z'
2006-08-22 06:30:07Z

The patterns for DateTime.ToString ( 'U' ) :

0
dddd, dd MMMM yyyy HH:mm:ss
Tuesday, 22 August 2006 06:30:07

The patterns for DateTime.ToString ( 'y' ) :

0
yyyy MMMM 2006 August

Building a custom DateTime.ToString Patterns

The following details the meaning of each pattern character. Note the K and z character.

d
Represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero

dd
Represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero

ddd
Represents the abbreviated name of the day of the week (Mon, Tues, Wed etc)

dddd
Represents the full name of the day of the week (Monday, Tuesday etc)

h
12-hour clock hour (e.g. 7)

hh
12-hour clock, with a leading 0 (e.g. 07)

H
24-hour clock hour (e.g. 19)

HH
24-hour clock hour, with a leading 0 (e.g. 19)

m
Minutes

mm
Minutes with a leading zero

M
Month number

MM
Month number with leading zero

MMM
Abbreviated Month Name (e.g. Dec)

MMMM
Full month name (e.g. December)

s
Seconds

ss
Seconds with leading zero

t
Abbreviated AM / PM (e.g. A or P)

tt
AM / PM (e.g. AM or PM

y
Year, no leading zero (e.g. 2001 would be 1)

yy
Year, leadin zero (e.g. 2001 would be 01)

yyy
Year, (e.g. 2001 would be 2001)

yyyy
Year, (e.g. 2001 would be 2001)

K
Represents the time zone information of a date and time value (e.g. +05:00)

z
With DateTime values, represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. (e.g. +6)

zz
As z but with leadin zero (e.g. +06)

zzz
With DateTime values, represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. (e.g. +06:00)

f
Represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value.

ff
Represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.

fff
Represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.

ffff
Represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. While it is possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On Windows NT 3.5 and later, and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

fffff
Represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. While it is possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On Windows NT 3.5 and later, and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

ffffff
Represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. While it is possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On Windows NT 3.5 and later, and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

fffffff
Represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. While it is possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On Windows NT 3.5 and later, and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

F
Represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero.

:
Represents the time separator defined in the current DateTimeFormatInfo..::.TimeSeparator property. This separator is used to differentiate hours, minutes, and seconds.

/
Represents the date separator defined in the current DateTimeFormatInfo..::.DateSeparator property. This separator is used to differentiate years, months, and days.

"
Represents a quoted string (quotation mark). Displays the literal value of any string between two quotation marks ("). Your application should precede each quotation mark with an escape character (\).

'
Represents a quoted string (apostrophe). Displays the literal value of any string between two apostrophe (') characters.

%c
Represents the result associated with a c custom format specifier, when the custom date and time format string consists solely of that custom format specifier. That is, to use the d, f, F, h, m, s, t, y, z, H, or M custom format specifier by itself, the application should specify %d, %f, %F, %h, %m, %s, %t, %y, %z, %H, or %M. For more information about using a single format specifier, see Using Single Custom Format Specifiers.

Many information that we get outside :D

Membuat datarow menggunakan VB.NET

Untuk membuat datarow menggunakan bahasa pemograman VB.NET dapat dilakukan dengan cara berikut ini :

image

Private Sub CreateNewDataRow()




    ' Use the MakeTable function below to create a new table.
    Dim table As DataTable
    table = MakeNamesTable()
    ' Once a table has been created, use the 
    ' NewRow to create a DataRow.
    Dim row As DataRow 
    row = table.NewRow()
    ' Then add the new row to the collection.
    row("fName") = "John"
    row("lName") = "Smith"
    table.Rows.Add(row)
    Dim column As DataColumn
    For Each column in table.Columns
       Console.WriteLine(column.ColumnName)
    Next
    DataGrid1.DataSource=table
 End Sub
 Private Function MakeNamesTable() As DataTable
    ' Create a new DataTable titled 'Names.'
    Dim namesTable As DataTable = new DataTable("Names") 
    ' Add three column objects to the table.
    Dim idColumn As DataColumn = new  DataColumn()
    idColumn.DataType = System.Type.GetType("System.Int32")
    idColumn.ColumnName = "id"
    idColumn.AutoIncrement = True
    namesTable.Columns.Add(idColumn)
    Dim fNameColumn As DataColumn = New DataColumn()
    fNameColumn.DataType = System.Type.GetType("System.String")
    fNameColumn.ColumnName = "Fname"
    fNameColumn.DefaultValue = "Fname"
    namesTable.Columns.Add(fNameColumn)
    Dim lCalColumn As DataColumn = new DataColumn()
    lCalColumn.DataType = System.Type.GetType("System.Datetime")
    lCalColumn.ColumnName = "CalCol"
    namesTable.Columns.Add(lCalColumn)
    ' Create an array for DataColumn objects.
    Dim keys(0) As DataColumn 
    keys(0) = idColumn
    namesTable.PrimaryKey = keys
    ' Return the new DataTable.
    MakeNamesTable = namesTable
 End Function







Have a nice day folks.






Thursday, August 19, 2010

Menerawang kedepan

Begitu banyak cerita didunia ini
Begitu banyak scenario yang dimainkan
Dari hal yang kecil sampai hal yang paling besar.

Sungguh menakjubkan kehidupan ini
Ku hendak menerawang kedepan...
Bersama dengan orang2 yang kukasihi.

Mataku menjadi terbuka dengan sangat
Menyaksikan hal-hal yang mengisi relung hatiku
Benih kehidupan telah ditanamkan
Tinggal bagaimana kita menjaga dan merawatnya

Sungguh kuingin menerawang kedepan
Bersama jalan Tuhan yang kusayangi
Dan biarlah waktu mengajarkan pada kita
Hal-2 apa saja yang kita butuhkan.

Tuk menjadi lebih besar dan kokoh.
Published with Blogger-droid v1.4.8

Friday, August 13, 2010

Our junior

Have a nice day all.
May God is always beside you and me.

Published with Blogger-droid v1.4.8

Angin malam

Malam itu suasana begitu dingin

Published with Blogger-droid v1.4.8

Thursday, August 12, 2010

HTC Wildfire Spec Information


Want to to know about this gadget …

The name "Wildfire" was decided in a poll on Facebook, which resulted in 50% of the votes for "Wildfire" and 24% for "Zeal" on the second place. So it become HTC Wildfire

The HTC Wildfire is a smartphone  developed by the HTC Corporation, that was announced on 17 May 2010 and released in Europe in June of the same year.  It is powered by a 528 MHz Qualcomm  processor and runs the Android operating system - version 2.1.  It includes an TFT LCD capacitive touchscreen and a 5-megapixel camera. It has been described as a "Mini HTC Desire".


HTC Wildfire spesification :

image



image

image


image


Nice gadget to try :D

Visual Source Safe Term

Under normal operation in a stable environment, Microsoft Visual SourceSafe provides excellent storage and security for your current source data and past revisions.

image

Sharing and Branching

Use the Sharing and Branching features of Visual SourceSafe with discretion. Avoid Sharing or Branching across top-level projects because it complicates the process of archiving a project and restoring it into another database. Moreover, when you branch files and then delete them, the space is not recovered until all copies of the branched file in the database are destroyed.

Server Rights

All users must have create, modify, change/edit, and delete permissions for files in the Data folder and its subfolders in the directory tree. These permissions must also be applied to the share permissions. If a user receives the message "Unable to create user login file," that user does not have the proper permissions to the VSS database location.

Working Folders

To maintain file integrity, make sure that all users have their own working folders for all projects. When multiple users share a working folder, a file checked out by one user can be modified by anyone with access to that folder. Maintaining separate working folders ensures that users modify only files they have checked out themselves.

File/folder Description
SrcSafe.ini Visual SourceSafe database global settings and configuration information for all users.
Users.txt List of all users of the Visual SourceSafe database.
Data\Aaaaaaaa.cnt Physical name of last file added to the database.
Data\Crcs.dat CRC information used to speed up the get and check-out processes (Visual SourceSafe 6.0 format databases only).
Data\Names.dat Long file name information.
Data\Rights.dat User and project security information.
Data\Status.dat Visual SourceSafe Explorer cache file (used to speed up the display of the Visual SourceSafe Explorer).
Data\Um.dat User management information (names and passwords) and the database identifier (GUID).
Data\Version.dat Visual SourceSafe database version.
Data\A…Z (folders) Folders containing log files and data files.
Data\Backup (folder) Contains analyze log file (analyze.log), list of bad files (analyze.bad), and backups of files changed by Analyze.
Data\Labels (folder) Label cache information used for label promotion (Visual SourceSafe 6.0 format databases only).
Data\Locks (folder) Used if Visual SourceSafe locking is enabled.
Data\Loggedin (folder) Contains user logon files and an Admin.lck file if the database is locked.
Users (folder) Contains Template.ini, which stores default values for the Ss.ini file for new users. The Users folder also contains a subfolder for each user. This subfolder contains an Ss.ini file defining user-specific settings. The Admin folder also contains Ssadmin.ini, which defines administrator settings.

And many more information about VSS

Reference 



Wednesday, August 11, 2010

Framework on Business Strategy

Yesterday i found that we must had this to create better Business strategy framework :

1. Roles
2. Responsibility
3. Information


All components is connected, and can not be desperate.
I need to know about this information. Thanks for Mr.Richard Kartawijaya to share this information for us.

Three on Promo - Tarif Edan Kartu Three




imageimage
Lagi-lagi melakukan terobosan promo yang dapat dikatakan menarik dibandingkan dengan pesaing-pesaingnya, mengapa tidak … berikut adalah penjelasannya :

Mereka membuat konsep untuk berkomunikasi menjadi murah kesemua operator yang ada hanya dengan Rp. 99/menit sampai dengan total menit 150 menit/bulannya. Dimana pemakaian diatas kuota akan dikenakan tarif Rp. 600/menitnya.

Kalau setiap hari kita berbicara dalam waktu 10 menit maka waktu pemakaian yang kita gunakan dalam sebulan ada sebagai berikut :
10 * 30 hari = 300 menit --- so ini overlimit

Kalau tdk mau overlimit dan tidak ingin dikenakan charge over kuota maka perhitungannya sebagai berikut , dimana Asumsi dalam sebulan = 30 hari

150 menit / 30 hari  = 5 menit sehari (waktu ideal per harinya)
Jadi boleh dicoba mengenai produk ini … mau tahu caranya …
Mau mau mau …


image
Nah kalau buat orang-orang yang suka bersms ria, paket berikut ini juga tidak kalah menariknya yakni gratis 100.000 SMS/harinya.
Dengan 3 jenis paket yang dikeluarkan :harian, mingguan dan bulanan. so buruan …:D

image
Dimana ada ketentuan tambahannya, yang bisa menjadi masukan bagi kita semua sebelum memilih produk yang sesuai dengan kebutuhan kita.

image
Referensi

Tuesday, August 10, 2010

Marhaban Ya Ramadan 1431 H

Bagi yang sebentar lagi menjalankan Puasa (yang menurut perkiraan jatuh pada tanggal 11 Aug 2010 – Rabu), semoga bisa menjalankannya dengan sebaik mungkin. Semoga dalam bulan Ramadhan ini kalian dapat menjalankannya dengan penuh cinta, hati yang tulus ikhlas dan berserah diri kepada Allah SWT dengan penuh kesungguhan.


image

image


Jadwal Imsakiyah dapat dilihat di gambar dibawah:

image

image
image



Referensi

Monday, August 9, 2010

Mengapa badut ditakuti oleh anak-anak – Why Clown Scaring for kids




Badut adalah sosok yang lucu, menggemaskan dan menghibur. Tapi hal ini berbeda jika yang melihat badut adalah anak-anak. Sebagian besar anak kecil tidak suka atau takut dengan badut. Apa penyebabnya? Peneliti di University of Sheffield menemukan bahwa badut secara universal tidak disukai oleh anak-anak, terutama ketika hiasan badut ini menjadi dekorasi dari rumah sakit.

image


Studi ini dilaporkan dalam Nursing Standard Magazine dengan melibatkan jajak pendapat dari 250 anak berusia 4-16 tahun. Dalam jajak pendapat tersebut didapatkan bahwa sebagian besar anak-anak tidak menyukai badut, bahkan beberapa anak yang lebih tua juga ada yang tidak menyukai badut.

Dikutip dari Digitaljournal.com, Senin (9/8/2010) ada banyak asumsi yang melatarbelakangi anak-anak takut dengan badut. Salah satunya adalah sebagian besar media menggambarkan badut sebagai sosok kejahatan dalam berbagai film. Hal ini tentu saja membuat anak-anak menjadi berpikir bahwa badut adalah seseorang yang jahat, sehingga tak heran banyak yang takut dengan badut.

Meski karakter menakutkan dalam film atau televisi biasanya menggunakan topeng atau ekspresi wajah yang berlebihan, namun ini menunjukkan adanya beberapa persamaan dengan fitur badut yang dilihat oleh anak-anak. Selain itu sebagian analis dan psikolog percaya bahwa hal yang membuat anak-anak takut dengan badut adalah lukisan atau riasan di wajah orang tersebut yang berlebihan.

Agar ketakutan ini tidak berlanjut hingga dewasa dan membuat anak menjadi Coulrophobia (fobia badut), maka orangtua bisa mulai perlahan-lahan memperkenalkan badut pada anak sebagai sosok yang lucu dan bukan menakutkan. Tapi bukan dengan cara memaksa anak untuk mau berani dengan badut atau memaksa anak untuk berfoto dengan badut saat anak belum berani.

Buatlah anak berani dengan memberinya penjelasan bahwa badut adalah seorang manusia juga yang wajahnya diberi topeng atau riasan tertentu, orang ini tidak akan menyakiti anak-anak tapi justru akan menghibur. Lalu tak ada salahnya untuk memberikan pujian pada anak jika ia sudah menunjukkan keberaniannya saat mau berdekatan dengan badut.

Internetan dengan provider Three 3




Sekarang Three juga melakukan trobosan dalam memasarkan produknya, yakni Three internetan dalam mobile phone. Mau tahu informasinya … Mau mau mau ….

image


Saat kelebihan kuota, jangan takut berikut adalah informasinya.
image

Silakan dishare saja bagaimana pengalamannya mengenai hal ini.
Happy a nice suft with Three (3).

Referensi

Friday, August 6, 2010

Yuk ke Dufan Yuk …




Yuk ke Dufan yuk ….
Bermain bersama dengan teman, saudara dan orang-orang yang memiliki tujuan yang sama.

image

Dufan adalah singkatan dari  “Dunia Fantasi” yang berada di Jakarta Utara. Merupakan salah satu wahana rekreasi yang ada di Indonesia. Dan bisa dikatakan recommended place to surf on Indonesia.


Dunia Fantasi buka : Senin - Kamis : 11.00 - 18.00 WIB, Jumat : 13.30 s/d 18.00 dan Sabtu - Minggu : 10.00 - 20.00 WIB

Lagian dalam bulan kedepan(sehubungan dengan bulan Ramadhan) ini akan dimulai dengan masa diskon ..
Cihui “Discount Time” let rock the place :D

image

Waktu itulah yang banyak dinanti-nanti.
HARGA TIKET: DUNIA FANTASI
Weekend Rp. 150 rb menjadi Rp. 75 rb
Weekdays Rp. 120 rb menjadi Rp. 60 rb
ATLANTIS Weekend Rp. 100 rb menjadi Rp. 50 rb
Weekdays Rp. 75 rb menjadi Rp. 40 rb
Ketentuan:
- Tidak berlaku pintu gerbang masuk Ancol
- Tidak berlaku untuk rombongan
- Promo ini tidak dapat digabung dengan promo lain
- Tunjukan Flyer ini di loket DUFAN atau ATLANTIS ( printout gambar flyer)
- Berlaku Foto Copy
Kalau mau mampir ke Gelanggang Samudra juga bisa :D
Jam pertunjukan Aneka Satwa ( Variety Animal's Show)
    * Show I   : 09.45 WIB
    * Show II  : 12.15 WIB
    * Show III : 14.45 WIB
Jam pertunjukan Singa Laut ( Sea Lion Show)
    * Show I   : 10.30 WIB
    * Show II  : 13.00 WIB
    * Show III : 15.45 WIB
Jam pertunjukan Lumba-lumba & Paus Putih ( Dolphin Show)
    * Show I   : 11.15 WIB
    * Show II  : 13.45 WIB
    * Show III : 16.45 WIB
Jam pertunjukan Teater 4 Dimensi
    * Show I   : 12.00 WIB
    * Show II  : 13.00 WIB
    * Show III : 14.00 WIB
    * Show IV : 15.00 WIB
    * Show V  : 16.15 WIB
Khusus hari Minggu & Libur Extra show di 4D Pukul 11.00 & 17.30 WIB

Referensi Link

Thursday, August 5, 2010

Ambisius … identik dengan penyakit jantung




Punya sifat ambisius memang menguntungkan dalam segi karier dan ekonomi. Tapi tidak dari segi kesehatan, karena orang dengan sifat ini lebih rentan terkena penyakit jantung dan pembuluh darah alias stroke.

image



Berdasarkan penelitian Friedman dan Rosenman, ada dua tipe sifat yang dimiliki manusia, yaitu tipe A dan tipe B.

Tipe A merupakan orang-orang yang memiliki sifat ambisius, kompetitif, tidak sabaran, agresif, terburu-buru dan mudah marah. Sedangkan orang tipe B memiliki sifat mudah bergaul dan lebih santai.

"Orang yang punya sifat tipe A, salah satunya orang yang ambisius dan kompetitif, umumnya tidak pernah mau kalah sehingga mereka akan lebih mudah frustasi dan cenderung mudah mengalami stres," ujar dr Santoso Karo Karo, MD, MPH, SpJp, Ketua Yayasan PERKI (Perhimpunan Dokter Spesialis Kardiovaskular Indonesia), dalam acara konferensi pers Jakarta Red Run 10 K, di Kantor Yayasan Jantung Indonesia, Jakarta, Rabu (4/8/2010).

Nah, stres merupakan salah satu faktor memicu penyakit jantung. Pola hidup dan kerja yang penuh stres karena manajemen waktu yang buruk, juga bukan tidak mungkin meningkatkan denyut jantung dan tekanan darah yang sering dirasakan sebagai nyeri dada atau angina pektoris.

Pada saat orang mengalami stres, hipotalamus dalam otak akan memicu hormon stres, baik yang adrenalin maupun non-adrenalin, yang kemudian akan memicu peningkatan denyut jantung, peningkatan tekanan darah yang mengakibatkan cedera pada dinding arteri dan pembentukan bekuan dalam pembuluh darah, serta aterosklerosis (pengerasan pembuluh darah arteri).

"Orang bahkan bisa tiba-tiba meninggal karena penyakit jantung, karena pecahnya pembuluh darah yang dipicu oleh stres. Ini disebut dengan penyakit jantung akut," tutur dokter yang juga anggota Kolegium Ilmu Penyakit Jantung dan Pembuluh Darah Indonesia.

dr Santoso juga menjelaskan pada beberapa penelitian terakhir, ditemukan adanya hubungan antara stres dan perubahan dalam kadar kolesterol total, yang secara nyata menunjukkan peningkatan pesat dalam kadar lemak darah yang mengganggu mekanisme kliring lemak tubuh.

"Meski stres bukan merupakan faktor utama penyabab penyakit jantung, tapi stres paling banyak dialami orang, terutama orang dengan sifat tipe A," tambah dr Santoso yang telah pensiun sebagai spesialis jantung di RS Harapan Kita.
Untuk mengatasi hal itu, orang yang memiliki sifat tipe A seharusnya mampu menjaga pola makan dan gaya hidup yang sehat. Karena kemungkinan mengalami stres akan semakin meningkat bila orang tersebut memiliki faktor risiko utama penyakit jantung, yaitu perokok, kolesterol dan diabetes.
"Kami melihat bahwa rutinitas sehari-hari atau kesibukan kantor bisa mengaburkan kesadaran ini. Sehingga satu-satunya cara adalah kemampuan mengelola waktu dengan baik sehingga dapat menyelesaikan pekerjaan tanpa menimbulkan stres berlebih, disamping tentu hidup sehat," tutur dr Dewi Andang Joesoef, Ketua Umum Yayasan Jantung Indonesia.
Tak lupa dr Santoso memberikan beberapa tips untuk menghindari stres, yaitu sebagai berikut:

  1. Selalu berdoa, berserah kepada Tuhan
  2. Jangan ngoyo
  3. Mau memaafkan
  4. Jangan terburu-buru
  5. Harus punya hobi

Modem AHA – Penyedia jasa Internet Indonesia






Dengan melihat persaingan layanan internet yang semakin merebak dan menjadi salah satu komoditas yang menguntungkan, maka pihak Bakrie juga mengeluarkan produknya, yakni AHA modem.

Kalau ada yang hendak dishare mengenai pengalaman menggunakan AHA silakan saja :D

image

image

image 

image

Jenis produk yang ditawarkan :
image

Harga yang ditawarkan:
image


Daerah yang sekarang dicoverage :
  • Surabaya
  • Malang
  • Jogja
  • Semarang
  • Solo
  • Bogor
  • Cirebon
  • Tasikmalaya
  • Bandung
  • Bali
  • Jakarta

Referensi Link

Tuesday, August 3, 2010

Alternative way to Synchronize contact on HTC mobile

How do I import my Outlook 2007/2003 contacts and calendars into my phone without HTC Sync?

-> To import your Outlook 2007/2003 contacts into your phone without HTC Sync, follow the steps below:

  1. In Outlook
  2. Go to File > Import and Export > Export to a file > Comma Separated Values (Windows), then select the folder you want to export.
  3. Type a name for the exported file and click Next
    1. If you are using a language other than English, it is highly recommended you click Map Custom Fields to ensure that your data is matched properly.
  4. After clicking Finished, your file will have been created on your computer.  Unless you selected a different location to save it in, the file will now be in your My Documents folder in your computer.

This will create a file that Gmail can import.

-> For Contacts:

  1. Log in to Gmail. If you do not have a Gmail account, you may sign up for an account right from your phone.
  2. Click Contacts, located on the bottom of the panel on the left.
  3. Click Import in the Contact Manager.
  4. Click Browse... or Choose File and locate the CSV file just created. Unless you selected a different location to save it in, the file will now be in your My Documents folder in your computer.
  5. Select the file and click Import.

-> For Calendars:

  1. Open Google Calendar
  2. Click Add in Other calendars on the left side of the window.
  3. Click Import Calendar in Calendar settings
  4. Click Browse and select your exported file and locate the CSV file just created. Unless you selected a different location  to save it in, the file will now be in your My Documents folder in your computer.
  5. Select the file and click Import.

After this, simply log into your Gmail account from your phone and your contacts and calendars will automatically sync to your phone wirelessly.

NOTE 1: You need an internet connection (Wi-Fi, GPRS/3G, etc.) to access this service. Your operator may charge for using GPRS/3G.

NOTE 2: Gmail limits you to 3000 contacts in one CSV file at a time. If you have more than 3000 contacts, you can use multiple CSV files to complete the import.

NOTE 3: This is an import of your contacts and calendars from Outlook, and changes made on your phone and/or Gmail will not be reflected in your Outlook.  Gmail and your phone, however, will be continuously synced and changes will be reflected.

Reference

List Kelompok Matakuliah IS Policy & Strategic Planning - 04MAM

Silakan diperiksa untuk kelas 04MAM , silakan diingat.
Bahan presentasi dari case yang ada. Presentasi berdasarkan data silabus dan diacak kapan presentasinya oleh dosennya. (max kelompok presentasi = 2 kali)

Kelompok 1
Raphael
Marihut D
Deddy H
Taufik H
Dwi L.K
 
 
Kelompok 2
Sugiarto
Stevanus S
Ferdian T
Galih Septanto
Angga Kharisma P
 
 
Kelompok 3
Fikri
Ray
Rendy
Andhika
Angga Perdana
 
 
Kelompok 4
Poltak
Aditya K
Ratih K
Wide M
Hadi

Sunday, August 1, 2010

Lirik Jadi Yang Kuinginkan - 2010

By : Vierra

kau tak sepenuhnya sendiri
Aku kan slalu ada di sini
Mengapa oh mengapa dirimu
Penuh dengan rasa bimbang
*
Tak perlu kau pergi tuk mencari
Mencari arti cinta
Reff :
Aku sendiri di sini menunggu
Aku sendiri di sini menanti
Aku tak terbiasa untuk berharap
Berlari untuk mengejar dirimu
Dalam menggapai semua impiku
S’moga kau kan tetap jadi apa yang ku inginkan
Mengapa oh mengapa dirimu
Penuh dengan rasa bimbang
Back to * , Reff
Jangan pernah berubah
Ingat janjimu
Jangan pernah menghilang
Dari hatiku
Back to Reff

Lirik Manusia Biasa (CLB) - 2010


By Yovie & Nuno

Aku memang manusia biasa
Yang tak sempurna dan kadang salah
Namun di hatiku hanya satu
Cinta untukmu luar biasa
Kemanakah dirimu
yang dulu cinta aku
Dimanakah dirimu
Yang selalu merindukanku
Aku memang manusia biasa
Yang tak sempurna dan kadang salah
Namun di hatiku hanya satu
Cinta untukmu luar biasa