02.26.08

Google Summer Of Code 2008 dimulai

Ditulis dalam Java, komputer, php tagged , , , pada 12:33 am oleh fuad

http://blog.scholarscamp.com/google-summer-of-code-2008-dimulai/

 

Pagi tadi iseng-iseng buka email, ternyata ada pengumuman dari groups Eclipse, kalau Google Summer Of Code 2008 sudah dimulai. Ku cek ternyata betul. Jadi teringat musim panas tahun lalu. Sekadar mo sharing aja mudah-mudahan bermanfaat untuk yang lain.

Sewaktu GSOC 2007 mulai (kebetulan beban kuliah sudah selesai (tinggal revisi), jadi dengan tanpa beban bisa ikut program ini. Berhubung wisuda ku Mei 2007 dan kebutuhan minimal GSOC 2007 harus paling tidak terdaftar sebagai “student” pada Mei 2007 artinya saya masih masuh dalam hitungan (bersyukur juga TA dan revisi tidak berjalan terlalu lancar, ternyata ada hikmahnya Subhanallah:)).

Total ada 8 proyek yang kumasukkan, repot juga bikinnya tapi aku pikir sepadan lah dengan hasil akhirnya nanti. Kapan lagi bisa dapat $4500 (bisa buat startup company), kaos, stiker, buku, sertifikat resmi Google, dan kesempatan jadi developer Open Source.. Dari delapan proposal tidak semua teknologinya sudah kukuasai waktu itu kupikir yang penting idenya dulu masalah lain belakangan. Alhamdulillah proposal ke Joomla diterima, yang bikin terkejut proposal yang masuk, bukan proposal andalan ku apalagi saya sama sekali belum tahu cara buat plugin Eclipse, lebih-lebih Joomla baru sebatas install. Bulan pertama bisa dibilang bulan yang paling berat selain harus belajar Joomla dan Eclipse, juga harus belajar bahasa inggris, maklum bahasa inggris ku pas-pasan, dan belajar subversion dan tracker. Alhamdulillah ALLAH SWT memudahkan proyek berhasil.

Tahun lalu ada 4 orang indonesia yang masuk Google Summer Of Code. dan semuanya berhasil. Saya berharap tahun ini akan semakin banyak yang ikut. Belum tahu/belum belajar bahasa/framework/teknologinya tidak apa-apa yang penting mau belajar, bahasa inggris tidak lancar tidak apa-apa yang penting bisa koding, talk is cheap show me your code, the code is the documentation , code is hacker’s language.

Yang ingin berdiskusi seputar Google Summer Of Code, proposal, ide, atau pertanyaan lain. silahkan berkomentar pada http://scholarscamp.com/out/Google_Code_-_Summer_of_Code___-___Google_Summer_of_Code-1

Want to write open source code?

Want to make money?

Want to do both?

 

In 2007 alone, Google Summer of CodeTM brought together 900 students and nearly 1500 mentors across 90 countries to contribute to over 130 different open source software projects. We’re looking for mentors and students to join us in making 2008 the best Summer of Code yet! We’ll be offering successful student contributors a 4500 USD stipend, enabling them to focus on their coding projects for three months.

 

The Google Summer of Code program is designed to encourage student participation in open source development. Kicking off in 2005, the program has several goals:

 

  • Inspire young developers to begin participating in open source development

  • Provide students in Computer Science and related fields the opportunity to do work related to their academic pursuits during the summer

  • Give students more exposure to real-world software development scenarios (e.g., distributed development, software licensing questions, mailing-list etiquette, etc.)

  • Get more open source code created and released for the benefit of all

  • Help open source projects identify and bring in new developers and committers

 

Google will accept applications from open source projects from 3 – 12 March 2008. Student applications will be accepted from 24 – 31 March.

 

Full details on requirements for participating, including how to apply and more on the all-important t-shirt at

02.24.08

Email Menggunakan PHP (Yahoo Mail by pass)

Ditulis dalam komputer, php tagged , , pada 11:06 am oleh fuad

Fuad Dwi Rizki

Mengirim email menggunakan PHP sebenarnya bukan perkara sulit. Karena Php telah memiliki fungsi built in “mail”. mail($to,$subject,$body);

Untuk beberapa mail server, fungsi mail akan berjalan dengan baik(Gmail salah satunya). Tetapi ada sebagian mail server yang langsung menganggap email yang dikirim oleh “mail” adalah spam seperti Yahoo dan Hotmail. Hal ini disebabkan karena email yang dikirim tidak memiliki signature.

Untuk mengatasinya saya mendapat tips dari teman saya untuk menggunakan phpmailer, dengan memanfaatkan smtp server yang gratis seperti Gmail.
Berikut ini adalah kode yang saya gunakan dengan library dari phpmailer.

include_once(“libs/class.phpmailer.php”);
include_once(“libs/class.smtp.php”);

function mailViaGmail ($gmail_username,$gmail_password,$from,$sender,

$subject,$body,$recipient,recipient_name,$header){

$mail=new PHPMailer();
$mail->IsSMTP();

$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = “ssl”; // sets the prefix to the servier

$mail->Host = “smtp.gmail.com”; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port

$mail->Username = $gmail_username; // GMAIL username
$mail->Password = $gmail_password; // GMAIL password

$mail->From = $from;
$mail->FromName = $sender;

$mail->Subject = $subject;
$mail->Body = “$body”; //HTML
$mail->AddCustomHeader($header);

//$mail->AltBody = “$body”;
//Text Body

//$mail->WordWrap = 50; // set word wrap

$mail->AddAddress(“$recipient”,”$recipient_name”);
$mail->AddReplyTo(“$from”,”$sender”);
$mail->IsHTML(false); // send as HTML

if(!$mail->Send()) {

echo “Mailer Error: ” . $mail->ErrorInfo;

} else {

echo “Message has been sent”;

}
}

02.21.08

Google Experimenting With Digg Style Voting On Search Results

Ditulis dalam komputer pada 4:04 am oleh fuad

If you saw this one coming, give yourself a very large prize. Google is experimenting with Digg style voting features on search results that allow users to vote up or bury search results they see.

read more | digg story