2004-08-24 20:57

August 24th, 2004 by Vasil Kolev

I’m not sick. I’m not sick. I might be feeling bad, to be feeling dizzy, to be drinking the Fervex and the vitamins, etc, but I’m not sick, damn it :)

Today I finished the stupid bureaucratic stuff about the personal doctor, one piece of crap less… The walk was nice, made me feel a little more alive. On the way back I fixed a small problem with the internet connection at the project, and with the behavior of drbd, so now everything should work normally, we’re just waiting for some styff to arrive.

Tomorrow I’ll be going to the faculty, to get registered for some september exams (and maybe start studying for them :) ). I’ll also be doing some tests for some things, but more about that – tomorrow :)

2004-08-24 20:52

August 24th, 2004 by Vasil Kolev

Не съм болен. Не съм болен. Може да ми е зле, да ми се вие свят, да си пия фервекса и витамините т.н., обаче не съм болен, майната му :)

Днес си оправих нещата с личния лекар, една дивотия по-малко. Разходката ми се отрази добре, почувствах се малко по-жив. На връщане оправих един дребен проблем с връзката в проекта и с поведението на drbd, така че всичко си работи нормално, сега само се чака да пристигнат разни работи.

Утре ще ходя до факултета да се запиша за малко изпити за септември (и може и да почна да уча за тях :) ). Ще се правят и тестове на няколко неща, но за тях ще пиша утре :)

2004-08-23 21:43

August 23rd, 2004 by Vasil Kolev

Again a day that I slept through. I’m thinking cured from tomorrow on, I’m sick of it.

2004-08-23 21:42

August 23rd, 2004 by Vasil Kolev

Поредния напълно проспан ден. Смятам от утре да се броя излекуван, и да не ми пука, писна ми.

2004-08-23 12:49

August 23rd, 2004 by Vasil Kolev

I’ve forgotten to blog last night…

Not that there was something interesting to write about – I slept through the whole day, with short breaks for the next fervex, and in the evening me and Velin watched “Aliens” (Alien 2). I read some more from Quicksilver, now I’m somewhere around the 500th page.

Bine, are you getting my emails? There seems to be some problem in the way…

2004-08-23 12:47

August 23rd, 2004 by Vasil Kolev

Пак съм пропуснал да блогна снощи …

Не че имаше нещо интересно – проспах целия ден, с кратки прекъсвания за да изпия поредния фервекс, и вечерта да изгледаме с Велин “Пришълеца 2”. Почетох още малко от Quicksilver, сега съм на около 500та страница.

2004-08-22 03:08

August 22nd, 2004 by Vasil Kolev

The walk at 2:00 to “Divaka” for a paunch soup with crisp bread, and some “Fervex” should solve the problem with the nausea and the getting to sleep…

2004-08-22 03:06

August 22nd, 2004 by Vasil Kolev

Разходката в 2:00 до “Дивака” за една шкембе чорба с препечени филийки, и известно количество “Фервекс” би трябвало да решат проблема с гаденето и трудното заспиване…

2004-08-21 19:59

August 21st, 2004 by Vasil Kolev

Second day in a row I’m trying to finish watching Battle Royale, and just can’t. I’m either getting old, or this is the most traumatizing movie I’ve seen in the last few years (or, maybe I’ll act in a different way, and this pisses me off even more).

I hate the heat, today it reached 35C…

2004-08-21 19:57

August 21st, 2004 by Vasil Kolev

Втори ден подред се опитвам да изгледам Battle Royale, и не успявам. Или остарявам, или това е най-психиращия филм, който съм гледал в последно време (или просто аз бих действал по съвсем друг начин, и това още повече ме дразни).

Мразя жегата, днес стигна 35 градуса…

2004-08-21 01:10

August 21st, 2004 by Vasil Kolev

It was a lot of walking, but in the end I got the documents for a personal doctor, at Monday I’mm bring them where I should (If haven’t died by then). Looks like I’m getting better, I wrote a small shell script today, something like a rudimentary apache log analyzer, with a specific task – to say how much traffic did some directories generate. There are a few problems that need fixing (to clean up the referrers, before the main grep), but I’ll do that after understanding something in regex…. Here’s the script:

#!/bin/sh
(
for i in Anime/* upload/*/* Manga/* AMV/*  ;  do 
        nm=`echo $i|sed 's/ /%20/g; s/\[/%5b/g;s/\]/%5d/g'` ;
        mb=`( \
	echo -n '(';grep -iw "$nm" /var/log/apache/chise.ludost.net.log /var/log/apache/chise.ludost.net.log.1 |\ 
	grep GET |sed 's/"GET .* HTTP\/1.[01]" /asd/g'|grep -v asd304 |awk '{print $7}' |tr '\n' '+'| \ 
	sed 's/\+$//g'; echo ')/(1024*1024)' \
	) |bc 2>/dev/null`

        if [ -z "$mb" ]; then mb=0; fi
        echo -e "$mb\t$i" 
done
)| sort -rn

The result can be seen here.

I still haven’t halved Quicksilver, Bobson, could you bring me the book on the next IBB (I promise I’ll return it), because it’s not easy to read on these pages (I’ve reached around page 300)?

2004-08-21 01:02

August 21st, 2004 by Vasil Kolev

Бая ходене беше, но в крайна сметка си взех документите за личен лекар, в понеделник ще ги занеса където трябва (ако дотогава не съм умрял). Е, в крайна сметка взех да се оправям, днес написах един интересен скрипт, нещо като анализ на логове на apache, но с много специфична цел – да каже колко трафик са генерирали определени директории. Има няколко проблема, които трябва да оправя (да чистя referer-ите, преди да правя grep-а), но това ще стане, като си изясня нещо в regex… Ето и script-а:

#!/bin/sh
(
for i in Anime/* upload/*/* Manga/* AMV/*  ;  do 
        nm=`echo $i|sed 's/ /%20/g; s/\[/%5b/g;s/\]/%5d/g'` ;
        mb=`( \
	echo -n '(';grep -iw "$nm" /var/log/apache/chise.ludost.net.log /var/log/apache/chise.ludost.net.log.1 |\ 
	grep GET |sed 's/"GET .* HTTP\/1.[01]" /asd/g'|grep -v asd304 |awk '{print $7}' |tr '\n' '+'| \ 
	sed 's/\+$//g'; echo ')/(1024*1024)' \
	) |bc 2>/dev/null`

        if [ -z "$mb" ]; then mb=0; fi
        echo -e "$mb\t$i" 
done
)| sort -rn

Резултатът от това може да се види тук.

Още не съм преполовил Quicksilver, Бобсън, ще ми донесеш ли книгата на следващото IBB (обещавам да я върна), че на тези листи се чете трудно (стигнал съм до около страница 300)?

fi

August 20th, 2004 by Vasil Kolev

I’m an unbelievable talent… Last night I was washing my tea jug, and I was holding it a bit too hard, it broke, and I got cut… Really weird, I didn’t feel like pressing it too hard …

Yesterday I slept through the whole day – got up at 12, got to bed in 15, and got up again around 19.

I found something interesting – cheops-ng, interesting tool to scan networks and check what services are there.

At least I got an explanation how to fix the things with my personal doctor, today I’ll be going around. I hate bureaucracy.

2004-08-20 13:09

August 20th, 2004 by Vasil Kolev

Невероятен талант съм… Снощи реших да си мия каничката за чай, стиснах я малко по-силно, тя се строши и се порязах… Много странно, не я бях стиснал толкова здраво …

Вчера пак проспах целия ден – станах към 12, легнах си пак в 15, и спах до около 19.

Открих нещо интересно – cheops-ng, интересен инструмент да сканира мрежата и да проверява какви услуги къде работят.

Най-накрая ми изясниха как мога да си оправя нещата с личния лекар, днес май ще обикалям напред-назад. Мразя бюрокрацията.

2004-08-19 13:08

August 19th, 2004 by Vasil Kolev

It’s becoming a habit to blog in the morning, this can’t be good…

Yesterday was dizzy again, my head was partially unable to think (I still haven’t cured), so I cleaned at home, and tried writing one of the lectures, but it didn’t work. This last week was really , I haven’t accomplished anything serious (and I’m so offline, that I’ll have to double-check that in the blog, to be sure).

In the evening there was IBB again, this time in “Krivoto”, at the corner of “Dondukov” and “Budapeshta” – a really great place, with a nice cooking, but I didn’t feel well, and went home early. There I made myself about a liter of camomile tea, and watched parts of movies, while drinking it (I didn’t like any of those, and I’ve already finished Futurama). Then I slept for some hours, Velin came home, and we sat to watch Futurama from the beginning.

I just hope that today I’ll be able to work out some things and go to a doctor, to see what’s my problem…

2004-08-19 13:01

August 19th, 2004 by Vasil Kolev

Става ми навик да блогвам сутринта, не е добре така…

Вчера ми беше отнесен ден, главата ми никаква я нямаше (още не съм се излекувал), за това изчистих вкъщи, и се опитах да пиша една лекция, но нищо не се получи. Въобще последната една седмица ми беше адски непродуктивна, нищо сериозно май не съм свършил (и съм толкова отнесен, че ще трябва да проверя в блога, за да съм сигурен).

Вечерта имаше пак ИББ, този път в “Кривото” на ъгъла на “Дондуков” и “Будапеща” – много приятно място, много хубаво готвят, но на мен не ми беше добре, и си тръгнах рано. Вкъщи си направих около литър чай от лайка, пиех си го, и гледах парчета от филми (нито един от тези, които свалях, не ми хареса, а Futurama вече я изгледах). После поспах час-два, след което Велин се прибра, и седнахме да гледаме Futurama отначало…

Е, поне днес се надявам да си уредя нещата и да ида на лекар, да видя какво все пак ми има.

2004-08-18 13:57

August 18th, 2004 by Vasil Kolev

There wasn’t anything really interesting yesterday, except the hangover, and the pictures from Debian’s Birthday. Again there is a picture showing the way of celebrating, with beer and cake

2004-08-18 13:56

August 18th, 2004 by Vasil Kolev

Вчера нямаше нещо особено интересно, освен махмурлука цял ден, и снимките от Debian birthday. Пак има една снимка, показваща начина на празнуване, с бира и торта

2004-08-17 04:11

August 17th, 2004 by Vasil Kolev

A day for Debian’s birthday.

The day began with fixing some problems with the project (some minor stuff left, a rudimentary cluster manager), after which me and Valyak went to Heloween. All kinds of people came, we discussed a lot of different topics (I spoke a lot about social problems), and some minutes before being kicked out me, Bobson and Valyak went on foot to Lozentz. We were able to get there, despite the darkness in the park.

Right now I’m in bed with the notebook, drinking heated brandy with camomile, a lot of honey, and a good quantity of Bobson’s hot peppers. This should solve my throat problem (if it isn’t ok by tomorrow, I’ll go buy granoforine). It probably isn’t a good idea after all the beer at Haloween, but I can cure the headache with some aspirin and a paunch soup, and I’m fighting the throat for third day. If I die sorry, I’m too lazy to write a will :)
В момента аз си лежа в леглото с notebook-а, и пия греяна ракия с лайка, много мед, и бая от лютата

The people from the project agreed to allow me to write a lecture on High-availability using F(L)OSS, I’ll start writing it (soon, I hope… I’m writing this, so I won’t forget :) )

(I should work on blogging drunk).

2004-08-17 04:02

August 17th, 2004 by Vasil Kolev

Ден за рождения ден на Debian.

Деня започна с оправянето на няколко проблема по проекта (остана само да се напише нещо като примитивен cluster manager), след което с Валяка отидохме в Heloween. Събрахме се всякакви хора, обсъждахме всякакви проблеми (аз отделих бая време на социалните), след което малко преди да ни изгонят аз, Бобсън и Валяка пеша се запътихме към Лозенец. Стигнахме, въпреки че в гората беше бая тъмно.

В момента аз си лежа в леглото с notebook-а, и пия греяна ракия с лайка, много мед, и бая от лютата чушка на Бибсън, което трябва да реши проблема с гърлото ми (ако до утре не е добре, ще ида да си купя гранофорин). Може би не е добра идея след всичката бира в Heloween, но главоболието го лекуват аспирина и шкембе чорбата, а с гърлото се боря вече трети ден. Ако случайно умра – съжалявам, мързи ме да пиша завещание :)

От проекта се съгласиха да направя лекция за High-availability със свободен софтуер, скоро ще почна да я пиша (надявам се…а това го пиша, за да не забравя :) )

(Трябва да тренирам писане в пияно състояние).