Wednesday, November 16, 2011

During my hiatus...

WOW! It's been almost 1 year since my last post..
Sorry for being MIA for a long time..
During my hiatus, i've been doing well. Uhh, well not really well actually.
There's so much problem, much pain that makes me cry all whole day and even ever made me wanna give up on everything.
It's not me that being a pessimist that time, since i'm such an optimist person that always give myself reasons to think positively on everything, on every chance, and on every occasion.
I've tried so hard to fit in, i was so scared to be lost. :(
I've lost my hope. :'(
But, then i know that...
"Whatever happen in life, it is in GOD's own plan and it will always be good in the end".
And so, i'm really tired of people telling me what to do and trying to live up to everyone's expectations. Cause this is my life not somebody else.

Many things happens on my life..
Oh yaa, i already be a fresh-graduate since a few months (august) ago. But, the graduate ceremony will be held on this saturday, 19th November 2011.
For this 'maybe once in a lifetime' moment, i've prepared much.
I'll wear kebaya since it's a must for college women that will be officially graduated on graduate ceremony in Indonesia.
So, just wait for the photos in a few days later yaa...
hehehe. ;D

Anyway, nowadays i've been thinking about changing my blog layout but, when i found a themes that i like much it didn't fit well.
So, i decided to change it back to the previous layout i use..
And then when i have a free time i'll change the blog layout again to the one i want it to be.

Monday, January 24, 2011

preparing for java programming lab test .

here i am, steal some minutes after learns the java programming subject..
fiuhh, my head's heavy and dizzy but lazy in the same time when i try to remember all the things about java's coding.. fiuhh~ :')
actually i'm not really good at coding, i'm just good at design-ing with html.
and not really good to handle or make a really great programs through with java, vb.net, php or such as like them.. mine was so so... (@@')a
it's hendy's job! my job's only about design-ing, analyst and business!! hahaha. :DD

heyy yaa, i dunno whether you've know what major that i takes or not.
fyi, currently i'm taking Information System at Binus University, Jakarta, Indonesia. :)
anyway, if you don't mind i'm gonna spoil your monitor with these all java's codings, all was typed by myself through eclipse sdk 3.3.1 that's installed into my lappie... hehehe. :DD
*beware, maybe these all will make your head heavy as much as mine or maybe heavier than mine.. opps, sorry... (^^ ,)v

Menu.java
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.PrintWriter;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;

import com.sun.org.apache.xerces.internal.impl.dtd.models.CMBinOp;


public class Menu extends JFrame implements ActionListener{
JButton btn1 = new JButton("Ok");
JButton btn2 = new JButton("Cancel");
JLabel lbl1 = new JLabel("Login Form");
JLabel lbl2 = new JLabel("Username");
JLabel lbl3 = new JLabel("Password");
JTextField txt1 = new JTextField();
JPasswordField pass1 = new JPasswordField();
//JList list1 = new JList();
JPanel pan1 = new JPanel(new FlowLayout());
JPanel pan2 = new JPanel(new GridLayout(3,2));
//JPanel pan3 = new JPanel(new BorderLayout());
JPanel pan3 = new JPanel(new FlowLayout());
public Menu() //constructor, semua program dijalankan disini..
{
setTitle("Menu");
add(pan1,"North");
add(pan2,"Center");
add(pan3,"South");
pan1.add(lbl1);
pan2.add(lbl2);
pan2.add(txt1);
pan2.add(lbl3);
pan2.add(pass1);
//pan2.add(list1);
pan3.add(btn1);
pan3.add(btn2);
setSize(500,500);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
//pack();
btn1.addActionListener(this);
btn2.addActionListener(this);
}
public static void main(String[] args) {
new Menu();

}

//FileWriter...
private void InputData()
{
String BabyMilo;
BabyMilo = txt1.getText() + ";" + pass1.getText();
try{
PrintWriter Mickey = new PrintWriter(new FileWriter("Data.txt",true));
Mickey.println(BabyMilo);
Mickey.close();
}catch (Exception e) {
e.printStackTrace();
}
}
//FileReader...
private void ReadData(){
int p = 0;
String Doraemon[];
try{
BufferedReader Minnie = new BufferedReader(new FileReader("Data.txt"));
Doraemon = Minnie.readLine().split(";");
for(int i=0;i
Doraemon = Minnie.readLine().split(";");
}
txt1.setText(Doraemon[0]);
pass1.setText(Doraemon[1]);
Minnie.close();
}catch (Exception e) {
e.printStackTrace();
}
}
public void actionPerformed(ActionEvent arg0) {
Object a = arg0.getSource();
if(a == btn1)
{
if(txt1.getText().equals("") && pass1.getText().equals("") )
{
JOptionPane.showMessageDialog(this, "You must filled in the blank!");
}
else if(txt1.getText().equals(txt1.getText()) && pass1.getText().equals(pass1.getText()))
{
InputData();
//ReadData();
JOptionPane.showMessageDialog(this, "Login Succeed!");
txt1.setText("");
pass1.setText("");
new Layout();
}
}
else if(a == btn2)
{
JOptionPane.showMessageDialog(this, "Login Canceled!");
dispose();
}
}

}

Layout.java
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;


public class Layout extends JFrame implements ActionListener{

JButton btn1 = new JButton("Ok");
JButton btn2 = new JButton("Cancel");
JLabel lbl1 = new JLabel("Layout");
JLabel lbl2 = new JLabel("Username");
JLabel lbl3 = new JLabel("Password");
JTextField txt1 = new JTextField();
JPasswordField pass1 = new JPasswordField();
//JList list1 = new JList();
JPanel pan1 = new JPanel(new FlowLayout());
JPanel pan2 = new JPanel(new GridLayout(3,2));
//JPanel pan3 = new JPanel(new BorderLayout());
JPanel pan3 = new JPanel(new FlowLayout());
public Layout()
{
setTitle("Layout");
add(pan1,"North");
add(pan2,"Center");
add(pan3,"South");
pan1.add(lbl1);
pan2.add(lbl2);
pan2.add(txt1);
pan2.add(lbl3);
pan2.add(pass1);
//pan2.add(list1);
pan3.add(btn1);
pan3.add(btn2);
setSize(500,500);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
btn1.addActionListener(this);
btn2.addActionListener(this);
}
public void actionPerformed(ActionEvent arg0) {
Object b = arg0.getSource();
if(b == btn1)
{
if(txt1.getText().equals("") && pass1.getText().equals("") )
{
JOptionPane.showMessageDialog(this, "You must filled in the blank!");
}
else if(txt1.getText().equals(txt1.getText()) && pass1.getText().equals(pass1.getText()))
{
JOptionPane.showMessageDialog(this, "Congratulations...!! :D");
}
}
else if(b == btn2)
{
JOptionPane.showMessageDialog(this, "You've been out!");
dispose();
}
}

}

have you see? don't blame me about the 'robotics language' above..
i thought bill gates, really got a problem with his head since he was a kid till now.. XP
anyway, those only for making a very really simple programs with 2 windows that runs..
what i made, it's only for login with some duties and after its succeed, you can continue to the next 'layout' window..

ohh yaa, here are 'how this codings look' after you typed what i was did above..
i'd printscreen it all for you..
this maybe a chance for you to have a lil' knowledgement from me.. ;)

- pics of how the program's run -

and then, now i think that's enough for this time.
or some of you will mad at me because of these contaminator thing..
about me? am gonna learn about java's coding again(?) tomorrow morning...
wish me luck guys~
thanks for coming to my blog anyway... ;D

Labels: , , , ,

Saturday, January 22, 2011

hectic assignments days and Anniversary ♥ day...

hello, sorry been so long didn't update my blog..
it's not because i've been slacking too much, it's because the ASSIGNMENTS that would kill me immediately. i thought it will ended soon but, it's getting more and more... *speechless* :'(
and seriously i think my lecturer's have no heart, maybe they think that we are a robot so we can handle their assignments as much as they want us to do.
i've got three big projects (Programming "Java" 2, Entrepreneurship and Project Management), since all of them were a Final Assignments on this semester, it needs a lot of hard works..
and there are lots of another assignments, each from all 6 subjects that i got this semester.
ohh, i'm gonna be crazy soon... or my head gonna explode asap..... X(

ohh yaa, lemme say "HAPPY BELATED NEW YEAR" to all of you...
All the best wishes to all of us, hope that we will be better and may GOD always be with us forever and ever..
sorry for being so late but, better late than never.....

in fact, after a short chrismast and new year's holiday i really have no time to being lazy and go crazy to have fun since it's like my life was for doing the assignments war or i'll die. as a result of it, i only have little times (less than 5 hours) to sleep at everyday-night, morning actually. it ends by the pandas eyes of mine getting darker. huff. :((

and finally now, i have these minute to update my blog and say "Hi"! to all of you..
the projects and assignments was over, the last was over today and at monday i'll have the first test, it's Programming Java 2 Lab's test.
Hope i'll pass the test well with a very good score. *pray pray* amien. ;D

hmm, anyway besides of all the go to hell assignments i have a good news too, especially a good event that happens on me at this busy-crazy month.
on January 14, 2011 was a 3rd Anniversary of me and him..
surely time flies so fast, since it's already been 3 years and more we've been together..
first as a friend on the first half of year and after that as a couple-mate till these seconds.
lots of feeling that we have shared. happiness, sadness, loneliness, togetherness, bleakness, gratefulness, blessings and everything.....
and i hope everything in our relationship's always gonna be alright and be blessed by GOD.

♥ 14.01.2008 - 14.01.2011 ♥
"the most favourite photo of us"
this pic taken over a year ago, on 21 December, 2009.

lemme tell you about our anniversary day that day..
we thought that everything's gonna be alright and went well that day, until someone sms-ed hendy and told that they'd to met up that day at 1 pm since it's the customer who might bought the ipod touch 4th gen 32Gb (we have an online shop that sells various goods for sale, such as gadget and fashion items). he thoughts it might be okay to met up, but because of the crazy traffic jam they finally met up at 3 pm. after that he turns to his home directly to pick his car (the car's at the repair shop before) and then went to my place to picked me up. but, blame to all of the crazy lame traffic jam, he arrived in front of my place at 8.20 pm. so, speechless because what we already known that the dinner's time was almost over.

uhmm, guess what? we arrived at Grand Indonesia at 9.35 pm. yeahh, dinner's time was already over. and the bad news was Takemori, the restaurant which we already picked since a few weeks ago already 'last ordered', means closed. hell no! X((
then we went around the 3rd and 5th floor where's the foods store area in. and finally we found Marche (usually closed at 11.30 pm), actually we ever picked this restaurant as the restaurant that we gonna spent our anniversary's dinner at.
but since i'm in mood of having asian food nowadays, so we decided to go to a chinese, japanese or korean restaurant.
at least, finally here we are.. Thanks GOD! ;D
let the pictures tell you...
*beware there are gonna lots of photos ahead.. :P

3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts
3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts
- had a late dinner at Marche, Grand Indonesia -

3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts
- Ice Swiss Chocolate Gourmet (Shendy) and Ice Chococino (Hendy) -

3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts
- Cream of Mushroom Soup with Sliced Bread (appetizer) and Dark Chocolate Mousse with Chocochip (dessert glass) -

3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts
- Main Course: Chicken Skewer with Baked Potato (Hendy) and Black Angus Tenderloin Steak with Potato Gratin, Salmon (Shendy) -

3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts 3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts
- after from had dinner, go to the carpark and blown the candle on the anniv cake -

3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts 3rd anniversary,love,couple,mate,dinner,marche,blog,swiss food,grand indonesia,cakes,gifts
- swapped the anniv gifts (santa cruz men fader, crocs and sweet serendipity, charles & keith) and show off the greetings cards -

about Marche, i kinda satisfied with this swiss food resto. it has an unique concept yet comfy.
they served us very kind and friendly. but, a bit pricey too.
since the total amount of our dinner was $49.85 (in rupiahs Rp 498.500,-)
yahh, of course he's the one who payed. but, still... pity him~ (^^ ")a
what i love the most is the cream of mushroom soup with sliced bread.
the taste of the soup was so RICH and about the butter that brought with sliced bread was TOP!
overall, i gave them 4 (****) star rates. ;P


by the way, since i'm chinese i do celebrating Chinese New Year.
CNY this year is on February 3, 2011.
unfortunately, since from January 25 to February 11 are my final test' period then i only got a holiday on 3rd February and on sunday.
So, it upsets me a lot! Yeahh, how can it be to have final tests on CNY's moment..? X(
Chinese people usually do dinner at CNY's night with all of the family's member.
and the s*cks thing's i have a test on February 2 that will finish at 5 pm.
because of that i'll running to my house by a cab after that test. huff. :(
hopes everything's gonna be alright, there's no more crazy traffic jam especially at CNY's night.. *wishing*

well, that's it for now. will update my blog soon, very soon.
surely after the final test' ended on February 11, 2011. ciao~ (^^)/

Labels: , , , , , , , ,

Wednesday, December 22, 2010

irregular holiday & Mother's day…

heyy, what's up!?
at first, i would say Happy Mother's day for All Moms in the world...!!
Especially for the best Mom of mine. Thank you for everything Mom..
Sorry for all my bad. I ♥ you, Mom! :*

and then..
i've been quite busy with some college's project in this semester eventhough there were some slacking time too for me..
as the tittle said, along the college life i had some irregular holiday too at this month..
why? because, i had many spare times to met my besties and went to my home as well..

here, am gonna post some random photos..

* Tuesday, Dec 7 2010 *
- besties time -
..at Pondok Indah Mall..

- me with ria -

- me with nysa -

- our beverages -

- candid me when try to divide the fusilli carbonara into three parts, for each of us -

- our food order from combo pack, Pizza Hut -

- our besties 'heart' bracelet, bought from Perlinis Silver -

- our choco chip Blizzard, Dairy queen -

- ria & annisa, my besties since junior high school -

- hope our best-friendship never ever changed -

♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥


* Tuesday, Dec 21 2010 *
- last hang out with hendra & famzjink, before 2010 ends -
..at Senayan City Mall & Sarinah..

- after from Pancious, Sency, when waited and queued for the taxi at the lobby -

- icha & hendra, both were so ashame to took a pic because of at icha's face there was many acnes and not fully recovered yet. while hendra's face was discharged from smallpox. so there're so many spots at their faces-

- with Nat2, Hendra, Icha and Obi at Starbucks, Sarinah -

- at lift, went to Inul Vista, Sarinah -

♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥


and here i am, after doing make up experiment.
Cat-eyes look with using fake eyelashes.
it's the first time i wore fake eyelashes by myself.
and i thought that's not bad, right? hehehe. :">

- more close up to my cat-eyes look -

yes, i do some edited to those pics. but, it's only for making you sure to see the actual colours of my eyes-look. since the real photos was bit blur and dark than it seems to be.

actually there're still many photos that i wanna share to you all, but all the photos are on hendy's camdig. and i forgot to save it all to my lappie, so i think i'll post it all later.

anyway, heyy what is your plan at christmas eve and new year's eve?
what about me?
christmas eve, am gonna spend my time at the church with my family.
and new year's eve, am gonna throw a bbq party with hendy and his relatives.
however, i think that's enough for now! i hope all of us gonna have a happy-positive ending at 2010 and happy-positive start at 2011..
at last but not least, i'll be back soon... i promise!
May GOD always bless all of us... amen.
xoxo.

Monday, December 6, 2010

yeahh, i ♥ december!

yeahh, it's december already...
and i'm so sure that some of you and many people really love this month..
it's always the best time of the year, then there's a lot of holiday here... wohoo~ *happy dancing*
i wish i can go to some place in the christmas and new year's holiday with my friends..
how about bali? it's gonna be so great i think... hohohohoho. :DD

hmm, actually on dec 5 i went to some place with some people, they are hendy and my cousins (ko' yose, ko' tony and via) for dinner.
since one of my cousin pick us late so, i forgot and didn't manage to take photos.
a bit regret but, i think there will be another time to take photos with them. hehe. :D

and yeah, this time i gonna post some hang out photos with friends, actually it's to accompany my friend who will celebrate her birthday, nat2, in the next day of that day...
her birthday was on dec 3 and our hang out date was on 2 dec, 2010..
it's at Central Park, new mall in Jakarta which is for me the design's concept almost look alike vivo city in singapore..
here it is, let the photos show to you... ;)

- park view at Central Park -


- at J.Co enjoyed the J.Cool, our 2nd stop -


- at Starbucks, Central Park -


- at Domino Pizza, having our late dinner -

call us 'famzjink'. dunno when but Nat2, one of us who was call us like this, but actually we have spent a lot of time together since first semester.
the two girls are my friends at house-room-rental.
funny fact's : my room's number is 5, Icha's room is 7 and Nat2's room is 9.. rare! :P
ehh, yepp! i'll introduce them to all of you.....
the girl who wears the blue tee shirt is Nat2, that's the way we call her.
the girl who wears the flowers-sabrina-shirt is Icha, we were friends since we met at high school and dunno how her room now is in front of my room.
and the only one boy there, which the two others were busy so can't came in and dunno why too, wore a shirt which is look a like as mine is Obi, his nickname. hahaha. :DD
anyway, we were had so fun that day. went to few places such a rich person (LOL), even actually we didn't really spent much money that day.

*note:
i'm at saving mode on!
so, i hope and i have to assure myself that there's no a way either a small reason to spent much money at.. :)

oh yaa, did i mention that am so crave for the holiday at this month!? \(^^)/
well, hope all of us gonna have a wonderful and blissful holiday friends... xoxo. ;)