Friday, March 16, 2012
Thursday, March 15, 2012
How to Invite Students to Research
I wish I could come there, one of the reasons is about the fee.., Bali is far from Bandung, if there is an institution that cover the fee and accommodation perhaps we should be there. the cost for flight is rather expensive unless we get sponshorships.
So, how to invite students to research? these question firstly should be answer bu the Lecturer who teach the students. the first answer is the Lecturer should give them example that they always conduct the research at least twice in year for National and one paper for international, by giving them example, of course the students will believe that the research is much more interesting :).
Posted by Ade Rahmat. I at 12:01 PM
Labels: Lecturer Corner, Research, Universtity Students
Tuesday, March 06, 2012
Hakekat kebahagiaan
Belum tentu apa yang terlihat oleh kita, adalah yang sebenarnya. Belum tentu yang terlihat menderita kehidupannya menderita. Dan sebaliknya belum tentu yang terlihat sangat senang belum tentu bahagia.
Bahagia itu adalah kalimat yang paling abstark dan relatif.
Makna bahagia dalam Islam adalah:
1. Jiwa yang tentram karena telah tercapainya suatu harapan
Inti dari bahagia itu adalah jiwanya tenang, meskipun harapan terpenuhi akan tetapi jika jiwanya tidak tenang maka ia tidak bahagia dan sebaliknya jika harapan tidak terpenuhi tetapi jiwa tenang maka ia bahagia.
Posted by Ade Rahmat. I at 3:37 PM
Labels: MPI, Percikan Iman
Monday, March 05, 2012
What is software enginering
Posted by Ade Rahmat. I at 3:10 PM
Labels: Software Engineering
Tuesday, November 08, 2011
Algoritma & Struktur Data
Posted by Ade Rahmat. I at 5:16 PM
Labels: Kuliah Mandiri, UNIKOM
Tuesday, October 18, 2011
Case Study -- Independent Task
Posted by Ade Rahmat. I at 11:25 AM
Labels: Independent Task, UNIKOM
Monday, October 10, 2011
International Seminar on Scientific Issues and Trend 2011
Posted by Ade Rahmat. I at 7:59 AM
Labels: Abstract, International Seminar, My Research
Sunday, October 09, 2011
Selection-01 in Java
package IF_1Java;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class IF_1 {
public static void main(String[] args) {
System.out.println("Masukan bilangan Anda : ");
BufferedReader bfr = new BufferedReader
(new InputStreamReader(System.in));
String angkaInput = null;
try {
angkaInput = bfr.readLine();
} catch (IOException e) {
e.printStackTrace();
}
int Data = Integer.valueOf(angkaInput).intValue();
if (Data > 0)
System.out.print
("Bilangan Positif");
else if (Data < 0)
System.out.print("Bilangan Negatif");
else
System.out.print ("Anda memasukan bilangan Nol");
}
}
Posted by Ade Rahmat. I at 9:19 PM
Labels: All Universities Students, Java, OOP Programming, Selection
Wednesday, October 05, 2011
Case Study: Data Structure
Posted by Ade Rahmat. I at 9:14 AM
Labels: Individual Task, UNIKOM

