Driver Notebook Presario CQ-42 263TU (windows 7)

Sedikit spesifikasi:

CPU : Intel Core i5 M450 @2.40GHz

Ram : 2GB (DDR3)

Harddisk : 320 GB

Chipset : driver 1 driver 2 driver 3

Audio : Realtek High-Definition (HD) Audio Driver

Video : Intel High-Definition (HD) Graphics Driver

WiFi : Realtek RTL8191SE 802.11b/g/n Wireless LAN Driver for Microsoft Windows

Bluetooth : driver 1 driver 2

Input : Synaptics TouchPad Driver

Posted in Coretan | 2 Comments

Modelright Professional V3.6.0.10

ModelRight, Inc. provides a fresh approach to data modeling – and at an affordable price. ModelRight, our flagship product, streamlines the design process for database professionals and software developers, empowering them to design, visualize and document the database they are building or using.

ModelRight provides an innovative interface for data modeling that consists of windows, browsers, and toolbars that work together to provide an easy-to-use database design environment. With ModelRight there are no pop-up dialogs. Simply select the object to edit and change its properties. Web-like hyperlinks provide an easy way to navigate to related objects. Design, create, reverse engineer, or compare your database design with your database.

ModelRight is ideal for data modelers, engineers and programmers to use on small to large scale data modeling and data warehousing projects. And ModelRight provides an array of effective features not contained in any other data modeling tool.

Top 10 Differentiators

* Reverse Engineer into Model
* Generate Change Script
* Modeless Database Compare
* Extensive Domain Support
* Transaction Summary/Impact Analysis
* Themes
* Hyperlinked Model Navigation
* Innovative User Interface
* Most Comprehensive Database Support
* Quality Product at an Unbeatable Price

Posted in Coretan | Leave a comment

Redirect page – PHP

Simple :

header(“location=http://www.google.com”);

Apabila muncul error, ex:

Warning: Cannot modify header information – headers already sent by …

gunakan cara alternatif :

1. menggunakan tag meta – refresh

echo “<meta http-equiv=\”refresh\” content=\”0;url=http://www.google.com\”>”;

*bagian yang di bold (tebal), menentukan lamanya/waktu untuk redirect.

2. menggunakan javascript

echo “<script language=\”javascript\”>document.location=\”http://www.google.com\”;</script>”;

Posted in Coretan | Leave a comment

Netbeans dengan Style Nimbus

Prasyarat: JDK 6 u10 or later

Cara :

Dengan menambahkan parameter “–laf com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel" (strip 2)

> menambah parameter pada shorcut

- pada shortcut netbeans, click kanan > properties

- pada target, tambahkan “–laf com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel" (tanpa tanda petik,strip 2)

- jalankan netbeans :)

> menambah parameter pada netbeans.conf

- buka file netbeans.conf (ex: C:\Program Files\NetBeans 6.9.1\etc) — lokasi file disesuaikan dengan versi netbeans.

- cari bagian netbeans_default_options, tambahkan “–laf com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel" (tanpa tanda petik,strip 2), didalam tanda petik yang ada

- jalankan netbeans :)

Penampakan:


Posted in Coretan | Leave a comment

Default passwords of Oracle 11g

Kasus:

Lupa password user Oracle 11g?

Pendukung:

- OS Vista

- Installasi Oracle : default

FIX:

Cara 1:

a. Buka SQLPlus ( Start Menu > All Programs > Oracle …

b. Pada username masukan : “/ as sysdba” (tanpa tanda petik)

c. Ubah password user “system” menjai “manager”:

SQLPLUS> alter user system identified by manager;

d. Jika sukses, coba login menggunakan user “system” dan password “manager”

SQLPLUS> connect system/manager;

Cara 2:

a. Buka Command Prompt (DOS)

b. Masuk ke folder installasi Oracle (ex: c:\app\..\bin)

c. 1. ketikan perintah “SQLPLUS” (jika ingin menjalankan SQLPLUS tanpa login, tambahkan opsi “/nolog”)

2. ketikan perintah “SQLPLUS / as sysdba” (jika ingin menjalankan SQLPLUS dengan user “sysdba”)

d. dilanjutkan dengan langkah “c” pada “cara 1″.

Posted in Coretan | 2 Comments