May 16, 2005

You are currently browsing the daily archive for May 16, 2005.

Tadi pagi, seperti biasanya saya menyempatkan diri datang ke server student untuk memantau server dan membaca auth.log nya. Hasilnya sudah bisa ditebak, auth.log sudah membengkak menjadi 1 Megabyte lebih. Setelah saya baca saya mendapatkan beberapa IP address penyerang, yaitu :

  • 203.69.18.100
  • 203.197.124.195
  • 202.98.203.29
  • 202.55.229.226
  • 202.134.82.163
  • 202.153.41.139

Read the rest of this entry »

Kirain ini tadinya mau dikumpulin, ternyata enggak, jadi ya saya publish aja deh.

// Menggambar Grafik Cosinus dengan OpenGl

#include <GL/glut.h>
#include <math.h>

void display(void)
{
    double i;
    glClear(GL_COLOR_BUFFER_BIT);
    glColor3f (0, 0, 1.0);

Read the rest of this entry »