잉 릳


Which Pharaoh???

What is the name of the pharaoh that was confronted by moses??

That question had crossed my mind a long time ago,,because Holy Qur’an nor Bible ever stated the name of that pharaoh. After searching I got the answer that he was Ramesses II. I believed that fact was true until few days ago I finished reading manga Anatolia Story, there is a little story about Ramesses II. After reading it I felt curious and googling again about Ramesses II. After reading some website I found out that there was no final statement from historian which pharaoh he was,,some said that he was Ramesses II, some said that he was Ramesses III, some said that he was Ahmose 1, which body is on display of museum Egypt.

Confusing,,I guess I just need to ask god later if I enter heaven (hopefully :D )


Geeks .NetIndonesia

Two weeks ago I tried to join http://geeks.netindonesia.net where I can download lots of learning stuff about .NET if I am a member. I was using Mozilla Firefox back then, and the website offered me to download IE 8 and said that I used Mozilla Firefox,,I don’t really like using IE so I just ignore it and just registered myself to that website. After I Sign Up, I got a message in my Email that the administrator has to approve my account first, then I would accept another mail. I waited for two weeks, always checked my email in hoping to be the member soon, but I’ve never received a single mail from that website after the first one.

I became impatient, finnally last night I registered myself again, now I was using IE 8, coz I’ve just reInstalled my PC and decided to use IE 8 for now. After I sign up, I recieved an email from the web admin, but this time it was different. The mail said that I became the member and they gave me temporary password that I could change after I Sign in. I tried to sign in, and I did it. I downloaded lots of tutorial, ebooks and other stuff, but then I realised that they haven’t approved my first account probably due to I used Mozilla Firefox instead of IE. It make me dissapointed, how come they limited the member just by the browser that is used when register, they really force us to use Microsoft stuff huh :(


Download Japanese/Korean/Taiwan/Chinese TVDrama or Movie

Howdies friends,,

It’s been quite a while since the last time a download a Japanese/Korean TV Drama. Now i’m downloading an old Japanese TV Drama News No Onna (Anchor Woman/News Woman) stars by Honami Suzuki (Tokyo Love Story), Hideaki Takizawa and Kyoko Fukada. I was aired in Japan in 1998, and aired in Indonesia in 2000. I love this drama so much, it’s funny and encouraging. I found the link to download it from a website that gives you link to download Japanese/Korean/Taiwan/Chinese TV Drama or Movie, the website name is SilentRegret. I download news no onna from MegaUpload, and i think all the download links go to MegaUpload, so for you who don’t have premium download have to be patient, coz the files are big..

Happy Downloading ^^


program membalik kata

kemarin itu dapat tugas ngerjain program java buat membalik kata dari kk kelas, buat ngajuin lamaran kerjaan ^^, and setelah berpusing-pusing ria akhirnya jadi juga.
Semoga bisa bermanfaat buat yg perlu or yg mau belajar java


import java.util.StringTokenizer;

/**
*
* @author Ingrid Masithoh
*/

public class TestApp {

public static void main(String[] args){
String input = "Gaza! Gaza! Palestina merdeka";
String output = "";
StringBuffer sb = new StringBuffer();
int i = 0;
int j;
int k;
StringTokenizer tokens = new StringTokenizer( input );
String token[] = new String[tokens.countTokens()];

/** membagi tiap kata ke dalam array token yang berbeda */
while ( tokens.hasMoreTokens() ) {
   token[i] = tokens.nextToken();
   i++;
}

/** membalik kata per token kecuali tanda baca dan mengubah
huruf besar menjadi huruf kecil, dan sebaliknya */
for ( j = 0; j < i; j++ )
{
   char c[] = token[j].toCharArray();
   k = token[j].length();
   sb.setLength(k);

   if ( c[k-1] == '!' || c[k-1] == '?' || c[k-1] == ',' ||
       c[k-1] == '.')
   {
      if (Character.isUpperCase(c[0]))
      {
         c[k-2] = Character.toUpperCase(c[k-2]);
         c[0] = Character.toLowerCase(c[0]);
      }

      for ( int l = 0; l &lt; k - 1; l++ )
      {
         sb.append( c[k-l-2] );
      }
      sb.append(c[k-1]);
      token[j] = sb.toString().trim();
      sb.setLength(0);
   }
   else
   {
      if (Character.isUpperCase(c[0]))
      {
         c[k-1] = Character.toUpperCase(c[k-1]);
         c[0] = Character.toLowerCase(c[0]);
      }

      for ( int l = 0; l &lt; k; l++ )
      {
         sb.append( c[k-l-1] );
      }
      token[j] = sb.toString().trim();
      sb.setLength(0);
   }
   output = output.concat(token[j]).concat(" ");
}

System.out.println(output);

}

}
  

nanti keluarannya “Azag! Azag! Anitselap akedrem”


IT Job Fair 2009

Now, my friend and i are in JIEXPO Hall C. we are joining IT Job Fair 2009 in JIEXPO Kemayoran..
it’s a big hall, but why it’s so empty,not many people here, but the facilities are great. I am writing this from free laptop n free internet that is one of the fascilities in this Job Fair..
as for the job that open to apply, i think they are quite good and the companies are good too..

wonder if i will get a job from this job fair..
let’s see a cople of weeks later ^^