Jembelisme Media News, Opinion, Monetize, Link Exchange, Web Technology and Internet

Jembelisme Media
Archive for the ‘Tutorials’ Category

Belajar Membuat Blog Berbasis WordPress

07.10.2008 · Posted in Tutorials

Persiapan Yg harus disiapkan pertama kali adalah script WordPress itu sendiri. Jika Anda belum punya, Anda dapat mendownloadnya langsung di situs WordPress. Selanjutnya yang Anda perlukan adalah hostingan baik yang berbayar atau pun gratis. Nah, bagi yang gratisan saya menyarankan untuk menggunakan AokHost.com Silahkan register (sign up) terlebih dahulu untuk membuat account. Setelah anda register, ...

Ip 2 Nation Plugin

07.06.2008 · Posted in Tutorials

Plugin ini berfungsi untuk menampilakan flag country dari negara pengunjung yang berkomentar. Sebagai contoh klik di dini. Selanjutnya, bagaimana cara menginstalasinya? berikut adalah caranya: Buka ip2nation dan download file .sql nya, selanjutnya buka phpmyadmin yang ada di website Anda. Kemudian import ke database wordpress Anda. Nantinya, setelah Anda mengimport akan ada 2 tabel baru bernama ...

Sandi Viginer

05.04.2008 · Posted in Tutorials

#include<iostream.h> #include<string.h> #include<iomanip.h>   void main() { char choice, again; char input1[50],lock1[50]; int p1,q1,jum_k1,jum_m1,hrf1_k=0,hrf1_m=0, ubh_k1[50],ubh_m1[50],ubh_h1[50]; char input2[50],lock2[50]; int p2,q2,jum_k2,jum_m2,hrf2_k=0,hrf2_m=0, ubh_k2[50],ubh_m2[50],ubh_h2[50];     cout << endl; cout << "|===============================================================|" << endl ; cout << "|===============================================================|" << endl ; cout << "|======================VIGENER CODE PROGRAM=====================|" << endl ; cout << "|===============================================================|" << endl ; cout << "|===============================================================|" << ...

Program dengan encapsulation.

05.04.2008 · Posted in Tutorials

#include<iostream.h> #include<math.h> class vector2dimensi{ float x, y; double r; public : void set_vector2dimensi(float xx, float yy){ x= xx; y= yy; } double panj_vector2D(){ r= sqrt(x*x+y*y); return r; } void show2D(){ cout<<"panjang vektornya adalah " << r << endl; } vector2dimensi operator+(vector2dimensi t1){ vector2dimensi temp; temp.x=x+t1.x; temp.y=y+t1.y; return temp; } void show(){ cout <<"Jumlahnya adalah " ...

Program dengan prinsip inheritance (turunan)

05.04.2008 · Posted in Tutorials

#include<iostream.h> #include<math.h> class vector3dimensi{ protected: float x, y, z; double s; public : void set_vector3dimensi(float xx, float yy, float zz){ x= xx; y= yy; z= zz; } double panj_vector3D(){ s= sqrt(x*x+y*y+z*z); return s; } void show3D(){ cout<<"panjang vektornya adalah " << s << endl; } vector3dimensi operator+(vector3dimensi t2){ vector3dimensi temp; temp.x=x+t2.x; temp.y=y+t2.y; temp.z=z+t2.z; return temp; ...