sobota, avgust 27, 2005

And the day begin

Hi, there was some time when I write on this block. Now I can watch sat tv from my living room in daily room. The quality is superb. Today is raining. What a crappy day. Sister Spela writes back to me and we write back to her in Madagaskar. She looks like to be allright there. She missed ice- cream. This is all for now ..

nedelja, avgust 14, 2005

Visit Brano

Yesterday father and I have visit, mountaining Kamnisko sedlo and Brano. Today I visit with bicycle Mali Lipoglav , mum and father have cycled to Francel. The wheather its sunny. Today I write mail to my sister in Madagaskar. She is ok. There is autumn but sun is still strong at day.
The time is one o' clock forward.

četrtek, avgust 11, 2005

Today is raining

Today is raining all morning. I hope the sun will wake up. Yesterday I get two mails from Spela. Now she is working at the local clinic. Humar was save from Nanga Parbat with helicopter. They live their base already.

torek, avgust 09, 2005

Spelin Madagaskar lists

I create Spelin Madagaskar lists for her messages.

http://groups.yahoo.com/group/madagaskar/

Receive Spelin bicycle from service

Yesterday I get father's bike back and today I get Spelin bicycle from service. Spelin service cost only 700sit and it looks like gear it will be ok. The weather sunny and cloudy at the same time. Yesterday father and I did ride pedal for hour and twenty minutes. Maybe today mum goes with us too. Here in Slovenia big story is Tomaž Humar, he is cath in the rock. If they can they help him with the helicopter we hold fingers for him. I get second mail from sister is preatty big.

nedelja, avgust 07, 2005

Sunday 7 August 2005

Today mum, father and me visit grave of old parents. Then we go to Janez and Ida and later to BTC City. All night and noon was raining. Now is sunny. Mum is diligent she is cooking deliciuos food.

sobota, avgust 06, 2005

We hear from sister's expedition

We hear from sister's expedition that she and her friends all allright and they are at Madagaskar. So the work begin. Here in Slovenia father is in mountains. With his friend Francel. Clock is 13:42 and he is still out there. Anyway I was at Prezganje, Javor and Veliki Lipoglav. See three churches.
We really pleased that your are all right. See you. :)

petek, avgust 05, 2005

Sunny day

Today it was sunny. With bicycle I went to Mali Lipoglav. Mother and father say where are you Spela. I think you have many work to arrive at the right place. Tommorow Silvo will go to Bivak 4 in Julijske Alpe hitchiking. Dani visit grandma. She is allright. Here at 20h the sun goes down. The temperatures were about 24 degrees.

četrtek, avgust 04, 2005

Bad weather

Yesterday and today is just raining. Good thing is will water plants. The temperatures are lower too. This is good thing. My mother and father miss you Spela. They say they wish you very best.

sreda, avgust 03, 2005

Day D for my sister

Today 3 Wednesday August 2005 my sister goes by auto and with three friends and one of his fathers to Dunaj. And from there with airplane she will fly. Her trip begin. Have some good magic and good medicine on your way.

torek, avgust 02, 2005

Get back my bicycle

Today I get back my bicycle with new breaks and last wheel is centre now tip top.
My sister was driving all day my grandmother and she have to deal with her. Grandmother can
be very difficult some time, and today was that day. Poor my sister, but she survive.

ponedeljek, avgust 01, 2005

HTMLEditor in Java

today I was programming in java HTMLEditor in still in progress

here is my snippets from my project

// shrani dokument kot
public void shraniDokumentKot()
{
try {
File trenutnaDat = new File(".");
JFileChooser izberem = new JFileChooser(trenutnaDat);
izberem.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
izberem.setFileFilter(new TextFilter());
int dovolim = izberem.showSaveDialog(jframe);
if (dovolim == JFileChooser.APPROVE_OPTION) {
File novaDat = izberem.getSelectedFile();
if (novaDat.exists()) {
String sporocilo = novaDat.getAbsolutePath() + " ze obstaja \n "
+ "Ali ga hoces nadomestit.";
if (JOptionPane.showConfirmDialog(jframe, sporocilo) == JOptionPane.YES_OPTION) {
trenutnaDat = novaDat;
jframe.setTitle(trenutnaDat.getName());
FileWriter fw = new FileWriter(trenutnaDat);
try {

fw.write(editor.getText(0,document.getLength()));

} catch (BadLocationException ble)
{
ble.printStackTrace();
}

fw.close();
if (debug)
System.out.println("Shranim " + trenutnaDat.getAbsolutePath());
}
} else {
trenutnaDat = new File(novaDat.getAbsolutePath());
jframe.setTitle(trenutnaDat.getName());
FileWriter fw = new FileWriter(trenutnaDat);

try {

fw.write(editor.getText(0,document.getLength()));

} catch (BadLocationException ble)
{
ble.printStackTrace();
}

fw.close();
if (debug)
System.out.println("Shranim " + trenutnaDat.getAbsolutePath());
}
}
} catch (FileNotFoundException fnfe) {
System.err.println("FileNotFoundException " + fnfe.getMessage());
} catch (IOException ioe) {
System.err.println("IOException " + ioe.getMessage());
}

}