Archive for the ‘Other’ Category

The Best Of Xandria

Friday, November 13th, 2009

Akhirnya saya menemukan lagi 1 group band dengan vokalis cewek :) yang membawa aliran Symphonic Metal. Mungkin buat teman-teman pecinta aliran Symphonic Metal pasti udah tahu donk group band Xandria ini :) Nah dari ke 5 album Xandria (yaitu Kill_the_Sun , Ravenheart, India, Salome_-_The_Seventh_Veil dan Now and Forever) yang menurut saya paling bagus (soalnya ini yang sering saya denger :D ) yaitu :

Sister Of The Light dari Album Salome The Seventh Veil


Yang saya seneng dari lagu ini adalah intronya :) Menurut saya hm.., asyik banget suasananya kek ada suara ketipung-ketipung-nya gitu :D (eh bener ga yah :P :) ) ) , ini klo mau lyrics-nya sekalian :
Lyrics:
follow me through the night
we are the sisters of the light

Follow me through the night
We are sisters of the light
We are daughters of sin
We are laughter in the wind
Follow me through the night
We are sisters of the light
We are wild, we are free
Through the darkness follow me!

I am here to break the silence and
I want you to be the voice of mine

follow me follow me follow me now

Follow me through the night
We are sisters of the light
We are daughters of sin
We are laughter in the wind
Follow me through the night
We are sisters of the light
We are wild, we are free
Through the darkness follow me

You alone, you can let time stand still and
You create the missing element

We’re the fires of hell
We’re the deep rough sea
We’re the stormy air
We are we
We’re the ashes of time
And we are banshee
Through the darkness, sisters,
Follow me!

follow me follow me follow me now

Follow me through the night
We are sisters of the light
We are daughters of sin
We are laughter in the wind
Follow me through the night
We are sisters of the light
We are wild, we are free
Through the darkness follow me

sisters of the light
sisters of the light

Follow me through the night
We are sisters of the light
We are daughters of sin
We are laughter in the wind
Follow me through the night
We are sisters of the light
We are wild, we are free
Through the darkness follow me

we are sisters of the light
(more…)

Editing Your PDF With OpenOffice

Friday, November 6th, 2009

Pernah merasa butuh mengedit file PDF ? Jika jawaban-nya adalah Ya dan file PDF yang ingin di edit/dimodifikasi tidak begitu kompleks mungkin kita bisa menggunakan Sun PDF Import Extension dari OpenOffice.org yang bisa kita gunakan untuk memodifikasi file PDF :) Sedangkan beberapa fitur yang akan kita dapatkan jika kita menginstall extension
Sun PDF Import Extension
ini adalah :

- Text attributes like font family, font size, weight (bold, not bold), style (italic, not italic) are imported together with their respective text
- Retain font appearance, when a PDF file uses a font not installed on your system, the font is replaced with the best alternative font
- Converts images and vector graphics
- Each line in a paragraph is converted into one text object
- Import of password-protected PDF files
- Import shapes with default style
- Support for colors and bitmaps
- Backgrounds remain behind other elements

Sedangkan beberapa fitur yang belum didukung yaitu :

- Native PDF forms
- Proper paragraphs
- Processing layout of LaTeX PDF
- Import of complex vector graphics elements
- Conversion of tables
- Import of EPS graphics
- RTL (right-to-left) text/font support

(more…)

Adding Multiple SVN Externals

Sunday, June 21st, 2009

Apa sih svn externals itu ?? Untuk penjelasan tentang apa itu svn externals bisa dibaca di halaman manual Subversion Chapter 7 Section 2.3.6 atau kalau tidak mau membaca yang bahasa inggris, pak Endy sudah menjelaskan dengan detail tentang penggunaan svn externals itu disini.

Nah sekarang kasus yang dihadapi yaitu, bagaimana jika kita ingin menambah lebih dari 1 svn externals ?? Hm… bukannya caranya gampang, tinggal jalankan saja perintah svn propset svn:externals “com.myrepository.modul.satu.project.lain https://myrepository.com/svn/project-lain/trunk/com.myrepository.modul.satu.project.lain” . secara berulang sesuai dengan modul yang ingin diambil. Ok sekarang mari kita coba simulasikan, kita akan mengambil 3 modul dari project-lain dan 3 modul itu yaitu modul.satu.project.lain, modul.dua.project.lain dan modul.tiga.project.lain.

Sekarang mari kita coba, langkah pertama yaitu menambahkan properties svn:externals untuk modul.satu.project.lain dan mengambil modulnya dengan perintah seperti dibawah ini :

[martin@opensolarisbox:~/PROJECT/project-saya/trunk]$ svn propset svn:externals "com.myrepository.modul.satu.project.lain https://myrepository.com/svn/project-lain/trunk/com.myrepository.modul.satu.project.lain" .
property 'svn:externals' set on '.'
[martin@opensolarisbox:~/PROJECT/project-saya/trunk]$  svn up
Fetching external item into 'com.myrepository.modul.satu.project.lain'
A    com.myrepository.modul.satu.project.lain/nbproject
A    com.myrepository.modul.satu.project.lain/nbproject/project.properties
A    com.myrepository.modul.satu.project.lain/nbproject/project.xml
A    com.myrepository.modul.satu.project.lain/nbproject/genfiles.properties
A    com.myrepository.modul.satu.project.lain/nbproject/build-impl.xml
Updated external to revision 7.

Updated to revision 27.
[martin@opensolarisbox:~/PROJECT/project-saya/trunk]$

Ok berhasil, mari sekarang kita cek apakah properties svn:externals sudah disimpan ??? Mari kita lihat pada file .svn/dir-props dan hasilnya adalah seperti berikut :

[martin@opensolarisbox:~/PROJECT/project-saya/trunk]$ more .svn/dir-props
K 13
svn:externals
V 121
com.myrepository.modul.satu.project.lain https://myrepository.com/svn/project-lain/trunk/com.myrepository.modul.satu.project.lain

END
[martin@opensolarisbox:~/PROJECT/project-saya/trunk]$

(more…)

View Your DataBase Schema with OpenOffice 3.0.1

Saturday, June 20th, 2009

Hore.. OpenOffice sekarang sudah bisa menampilkan schema database loh, misalkan kita punya 3 tabel yaitu T_ARTIKEL, T_KOMENTAR dan T_ARTIKEL_T_KOMENTAR dengan struktur tabel seperti dibawah ini:

mysql> show create table T_ARTIKEL;
*************************** 1. row ***************************
       Table: T_ARTIKEL
Create Table: CREATE TABLE `T_ARTIKEL` (
  `id` bigint(20) NOT NULL auto_increment,
  `content` varchar(255) default NULL,
  `mode` varchar(255) default NULL,
  `publishDate` datetime default NULL,
  `title` varchar(255) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
1 row in set (0.01 sec)

ERROR:
No query specified

mysql> show create table T_KOMENTAR;
*************************** 1. row ***************************
       Table: T_KOMENTAR
Create Table: CREATE TABLE `T_KOMENTAR` (
  `id` bigint(20) NOT NULL auto_increment,
  `email` varchar(255) default NULL,
  `komentar` varchar(255) default NULL,
  `url` varchar(255) default NULL,
  `username` varchar(255) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
1 row in set (0.66 sec)

ERROR:
No query specified

mysql> show create table T_ARTIKEL_T_KOMENTAR;
*************************** 1. row ***************************
       Table: T_ARTIKEL_T_KOMENTAR
Create Table: CREATE TABLE `T_ARTIKEL_T_KOMENTAR` (
  `T_ARTIKEL_id` bigint(20) NOT NULL,
  `listKomentar_id` bigint(20) NOT NULL,
  UNIQUE KEY `listKomentar_id` (`listKomentar_id`),
  KEY `FK2BF571DCDAEA7AB0` (`listKomentar_id`),
  KEY `FK2BF571DC8E399F31` (`T_ARTIKEL_id`),
  CONSTRAINT `FK2BF571DC8E399F31` FOREIGN KEY (`T_ARTIKEL_id`) REFERENCES `T_ARTIKEL` (`id`),
  CONSTRAINT `FK2BF571DCDAEA7AB0` FOREIGN KEY (`listKomentar_id`) REFERENCES `T_KOMENTAR` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
1 row in set (0.47 sec)

ERROR:
No query specified

mysql>

Kalau tabel yang kita miliki cuma sedikit sih tidak begitu masalah, sekarang bagaimana kalau tabel kita lebih dari 10 ? Mau dilihat satu persatu dari terminal ? :D Nah untungnya sekarang kita bisa melihat schema database tersebut dari OpenOffice :) Sedangkan perlengkapan yang saya pakai disini adalah seperti berikut:
- MySQL server versi 5.0.67
- OpenOffice 3.0.1

Sedangkan langkah-langkah yang harus kita lakukan yaitu adalah sebagai berikut:
1. Memasang MySQL JDBC Driver di OpenOffice
2. Akses Database MySQL menggunakan OpenOffice
(more…)

Violeted Constraints When Installing Packages in OpenSolaris

Sunday, May 31st, 2009

Pernah mendapatkan pesan pkg: the following package(s) violated constraints: ketika ingin menginstall sebuah packages di OpenSolaris ?? Yaps saya pernah :D dan ini berkali-kali saya alamin, kejadian ini terjadi kalau kita mempunyai lebih dari 1 mirror repositori selain yang terdapat di http://pkg.opensolaris.org/release/. Masalah ini saya alami ketika saya ingin menginstall packages amp di OpenSolaris yang saya gunakan, sedangkan konfigurasi repository yang saya pakai adalah sebagai berikut :

[martin@opensolarisbox:~]# pkg authority
AUTHORITY                           URL
Development                         http://pkg.opensolaris.org/dev/
Blastwave                           http://blastwave.network.com:10000/
OpenSolaris (preferred)             http://pkg.opensolaris.org/release/

[martin@opensolarisbox:~]#

Sedangkan untuk menginstall packages amp, saya gunakan perintah pkg install amp dan akhirnya saya dengan sukses mendapatkan pesan error seperti dibawah ini :

martin@opensolarisbox:~]# pkg install amp
Creating Plan -
pkg: the following package(s) violated constraints:
	Package pkg:/SUNWcsl@0.5.11,5.11-0.111 conflicts with constraint in installed pkg:/entire:
	        Pkg SUNWcsl: Optional min_version: 0.5.11,5.11-0.101 max version: 0.5.11,5.11-0.101 defined by: pkg:/entire
[martin@opensolarisbox:~]#

(more…)