Category Archive
The following is a list of all entries from the Komputer category.
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
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 < 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 < 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”
Membaca isi Gmail di Outlook 2007
Bagi pengguna Gmail, kita dapat membaca isi email kita melalui Microsoft Outlook 2007 tanpa perlu membuka account Gmail kita. Keuntungan yang didapat adalah kita dapat membaca isi email kita kapan saja dan di mana saja tanpa perlu online (setelah email di download terlebih dahulu oleh Outlook), sehingga untuk orang-orang yang banyak mengikuti milis dan setiap harinya bisa menerima puluhan email akan sangat terbantu untuk tetap update dengan berita terbaru dari setiap milis, karena jika hanya membaca saat kita oline biasanya tidak semua email yang datang dapat terbaca (pengalaman pribadi -red). Untuk melakukannya kita perlu menyeting account Gmail kita dan Outlook kita terlebih dahulu.
Pertama-tama kita harus memastikan bahwa POP (Post Office Protocol) account Gmail kita dalam keadaan enable. Caranya adalah buka account Gmail, lalu masuk ke mail settings dan pilih tab Forwarding and POP. Pilih salah satu opsi untuk meng-enable POP.
Sekarang buka Outlook 2007 lalu masuk ke Tools\Account Settings
Pada jendela Account Settings pilih Email tab dan klik New…
Masukkan informasi mengenai account Gmail anda, lalu beri tanda centang pada Manually configure server settings or additional server types
Isikan textfield seperti gambar di bawah ini
Setelah semua terisi klik tombol “More Settings…” lalu centang “My outgoing server (SMTP) requires authentication” yang terdapat pada tab Outgoing Server.
Lalu masuk ke Advance Tab dan centang “This server requires an encrypted connection”, lalu rubah beberapa nilai menjadi :
· Incoming Server : 995
· Outgoing Server (SMTP) : 587
· Ubah tipe encrypted connection menjadi Auto
Tutup dialog window dan jalankan sisa wizard. Setalah wizard selesai dijalankan masuklah ke folder inbox dan klik Send/Receive, maka selesailah, dan anda sudah dapat menggunakan Outlook 2007 untuk mendownload email Gmail anda dan membacanya lewat Outlook.
Menterjemahkan dari sini
Selamat Mencoba!






