me,myself,english and programming..

Archive for December, 2010

Goodbye 2010, Welcome 2011

Friday, December 31st, 2010

goodbye2010This year has been an incredibly tough year for me, both personally and professionally.

Hopefully 2011 will bring a lot more happiness. InsyaAllah…

 

 

 

Everytime you feel like you cannot go on
You feel so lost
That your so alone
All you is see is night
And darkness all around
You feel so helpless
You can’t see which way to go
Don’t despair and never loose hope
Cause Allah is always by your side

Insha Allah…Insha Allah…Insha Allah
Insya Allah you’ll find your way

ATK Framework – Introduction

Wednesday, December 22nd, 2010

What is ATK?

ATK is a special purpose framework, targeted at business applications. It allows you to build an application with very small amounts of code.

intro

 

 

 

 

 

 

 

 

Imagine if you can write code like this.

  class kelas extends atkNode
  {
    function kelas()
    {
      $this->atkNode($this->node);
      $this->add(new atkAttribute("kelas_id", AF_AUTOKEY));
      $this->add(new atkAttribute("nama_kelas",AF_SEARCHABLE|AF_OBLIGATORY));
      $this->setTable("tblkelas");
    }
  }

(more…)