Monday, March 27, 2006


vim author goes to google
guess what happens next ?


Friday, March 24, 2006

On the 25th of march, Guerrillas will play Tirgu-Mures for the first time at the Sambata Grea (Heavy Saturday) 2 festival, alongside spAZ, Icory, Ultimul Rand and Claymood. You can read a new, exclusive interview at www.metalhead.ro
viva la revolution camrades
Guerrillas is in town tomorrow
I need to get some new t-shirts with guerillas

Wednesday, March 22, 2006

linux 2.6.16 released

Interesting to firebird project

OCFS2 is included (http://lwn.net/Articles/137278/, http://oss.oracle.com/projects/ocfs2/), a clustering filesystem contributed by Oracle (there's GFS from Red Hat who bought it from Sistina Software, shipped out-of-the-tree for now)

Monday, March 20, 2006

Installing oracle on Ubuntu breezy (AMD64)

Installing oracle on Ubuntu breezy (AMD64)
Because it is an server machine (opteron) i had to install the Ubuntu Server version
and for Oracle i needed ot install desktop packages (needed for oracle java installer ) also Xforwarding must be enabled in sshd_conf

sudo apt-get install ubuntu-desktop
ssh -X 192.168.x.x


Then I followed this installation guide

All was ok until this error showed up in console
All installer requirements met.

Preparing to launch Oracle Universal Installer from /tmp/OraInstall2006-03-21_01-41-37PM. Please wait ...oracle@harvey:~/database$ Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2006-03-21_01-41-37PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory



Solution : i have installed the libXp* from my 32bit dapper box (you can copy from one breezy installed box)
cd /usr/lib
scp libXp* root@192.168.x.x:/usr/lib32/

Then i hit an java bug related to "locale" setting .

current locale is not supported in X11, locale is set to CX locale modifiers are not supported, using defaultException in thread "main" java.lang.InternalError: Current locale is not supported



Did a little of googling and i
found another thread with solution to start 32 bit apps that solved my java "locale" problem

install linux32 package : sudo apt-get install linux32 then as
oracle user (you have to be login as oracle user)

export XLOCALELIBDIR=/usr/lib32/X11/locale
linux32 sh runInstaller







Here is the oracle happy exit

::()::::()::::()::::()::
playing with evil or how to make cygwin a better place
mkdir /mnt
ln -s /cygdrive/c /mnt/c
ln -s /cygdrive/d /mnt/d



::()::::()::::()::

Friday, March 17, 2006

We got some opencms mysql dump (from an windows machine) and all tables
are created with Uppercase Chars but on our db server (debian stable ) mysql creates
al database files (thouse under /var/lib/mysql/exampledb ) with small chars
So i wrote 2 scripts for converting the files

#cd /var/lib/mysql/exampledb

create an script with this content

cat upercase.sh
#!/bin/bash
for i in *.myi *.frm *.myd
do
echo $i
mv $i `echo $i | tr "[a-z]" "[A-Z]"`
done
run it

sh upercase.sh

then create another perl script
#vi rename.pl

with this content
#!/usr/bin/perl
foreach $name ( @ARGV ) {
@splitedname = split(/\./, $name);
#print "@splitedname\n";
$filename = $splitedname[0];
$extension = "frm";
$newname = "$filename.$extension";
# $newname =~ tr/A-Z/a-z/;
print "$name becomes $newname\n";
rename ($name, $newname) if ($newname ne $name );
}
and run it

#perl rename.pl *.FRM


ps: it was wrote in rush so i know it can be done better :)



::()::::()::::()::::()::::()::
sharing desktop with vino in ubuntu

run vino-preferences and allow othe users to connect on your server



Then run on the other computer and with vnc connect to the ubuntu box (let's say if it is called example.com)

#vncviewer example.com




::()::

Thursday, March 16, 2006

fly away bird of flu
killing people too

Thursday, March 09, 2006

work slave work

http://photos1.blogger.com/blogger/5437/1673/1024/gettowork.jpg
guerrillas concert (Targu Mures)

25.03.2006 @ Sala A.S.A. (Targu Mures)-RO
oh no my ubuntu linux is infected


Blog.Worm

Wednesday, March 08, 2006

breezy to dapper upgrade - almost smooth

http://www.ubuntuforums.org/showthread.php?t=141531

Monday, March 06, 2006

Me agrees with this :)

Best. Party. Ever.

Sunday, March 05, 2006

soulfly interview in rockarolla zine

Saturday, March 04, 2006

Jem Session 3rd edition in Viking - Cover Seek And Destroy V1 in format avi

The voice from the background is mine (No not the death voice !, the clear one ), i was in the public but i know the verses :) so i screamed a little

http://www.archive.org/details/Jem_Session_Seek_And_Destroy_-_Version_1_-_Low_Quality_-_23_MB

lord of the rings as directed by kusturika

http://cmatei.homeunix.org/~cmatei/2608_poza_mare.jpg

Thursday, March 02, 2006

soulfly pictures from romanian concert ,
http://www.guerrillas.ro/gallery/index_soulfly.php

if you wonder what is on the t-shirt wonder no more
its ....its ...guerrillas an romanian hard-core band , it is cool that all
soulfy band members had the same type of t-shirt

guerrillas is an good name for band

Friday, February 24, 2006

Hello anyone there ? Mayday mayday

http://jm.slove.org/gc/

Thursday, February 23, 2006

I read the news while we shakeit


I read every day the
shake it :)

http://linuxfilter.com/shakeit.php
That is what why i love lxer/digg.com over slashdot
content is added with increased speeed = more information

Wednesday, February 22, 2006


i'm an uncle :)
php vs asp.net vs java
That is why LAMP is better than java/asp.net. Look at that huge stack, Who will read that !??



..::::..::::..::::..::::..::::..::::..

Friday, February 17, 2006

Yahoo logo parodied over China: what's good for the Goolag...

This parody remix graphic was photoshopped by someone using the handle "Be Fair," commenting on the Goolag post at Cult of the Dead Cow. Image is cropped at left, here's the complete graphic.


http://actionnetwork.org/campaign/Chinainternetcrackdown
Valentine's Day Protests

NoLuv4Google

Thursday, February 16, 2006

Monday i will get my first guitar lessons :)
Firt i will need a new calssic guitar for it

Monday, February 13, 2006


Max Cavalera and Soulfly in Timisoara (Romania)

Building a better (make|ant|maven|...)

I think this could be interesting for any developer

http://www.leosimons.com/2006/a-better-make.html

What is make
http://www.leosimons.com/2006/bettermake/what-is-make.html
What is software management
http://www.leosimons.com/2006/bettermake/software-management.html

I like last phrase from last article :
"Managing software" is not a simple task. No wonder the average programmer or system administrator has a strong caffeine addiction.

Sunday, February 12, 2006

Bad Dog Blues now has a podcast feed. If you do use a Podcast Application just enter this address: http://www.baddogblues.com/bdb-feed.xml

You need a podcast client (ie. Juice / iPodderX [Win, Mac, Lin])

Sound of History #1: Kennedy, Reagan

Welcome to the first episode of Sound of History. On this episode, you'll find John F. Kennedy cracking jokes about Marx in front of a bunch of newspaper publishers, Ronald Reagan talking about the Challenger

http://soundofhistory.complete.org/

ps:
Kennedy's speach reminded me about some of the war of terror speaches
(Yes history repeats itself)

Saturday, February 11, 2006

nmap bush

Note: Host seems down. If it is really up, but blocking our ping probes, try -P0
Nmap finished: 1 IP address (0 hosts up) scanned in 7.026 seconds

U.S. President Bush visited the NSA's
Fort Meade headquarters, and a giant screen in the background displays
the latest versions of some of our favorite open source tools,
including Nmap, Snort, Ethereal, Kismet, and Metasploit.

Picture: http://www.insecure.org/nmap/images/wash-post-nsa.jpg

Friday, February 10, 2006

"can you feel love in the air , and everything is love
and mind/soul is in deep state of love
love make things good and love ...love ..love
Can you see love "

ps:is a joke :)
I was listening to FIKSZ Radio and there was an one publicity break with someone speaking these words
google chat in browser ,
some things are good : if you are travelling around the world
then is good to have gtalk friends around.
I wonder when voice will be enabled :) ?

Nigthwish vs past vocalist

http://www.nothingnice.com/comics/20060118.jpg



.:)(:..:)(:.
java vs rails (php?)
I will create an picture with java+.net vs php
We have the mountains of java+.net books for it (and a few of php)


.::..::..::..::..::.

Thursday, February 09, 2006

"SVN is a complex tool."
compared to cvs it really is.
quote taken from http://sourceforge.net/docs/E09/en/#use
So why my name is lithuanian

(10:08:39)
*********:
labas, kaip sekasi?
(10:08:54) mariuz: whoot
(10:09:16) zuikis007: nesupratau:)
(10:09:36) mariuz: who are you
(10:09:37) mariuz: ?
(10:10:04) zuikis007: you speak only English?
(10:10:17) mariuz: romanian english french
(10:11:10) zuikis007: so why your's name is lithuanian?:)
(10:11:22) mariuz: what name ?
(10:11:33) mariuz: thouse are saints
(10:11:40) zuikis007: Marius
(10:11:47) mariuz: so there are many people with that name :)
(10:12:06) zuikis007: so maybe you ar right:)
(10:12:17) mariuz: be it Catholic or Orthodox

Tuesday, February 07, 2006

Today i found a really good wembail interface and i want to share how easy is to install it compared with other webmail packages.

Monday, February 06, 2006

completley failure with the "Jam Session". Yahh
I will learn from this failure. I was there
only to collect data , to see what we should learn
from others (Me and boti maybe will create an group/band)
I will write here my impressions about Bucharest and
all that Jammin'

Thursday, January 26, 2006

All your http it belongs to US (ms)
please activate your http license in 30 day!

Follow this link to see why (try with firefox)
Error/Bug Spotted it on firebirdnews.org (link was posted with 2 "http" strings instead of one). Yes is an google feature

..::::..::::..::::..::::..

Wednesday, January 25, 2006

Me at Rock Xmass 2005 Tg-Mures

Me at rock Xmass 2005 Tg-Mures
firebird 1.5.3 final release PR

linuxfilter.com [DONE]
linux-watch.com [DONE]
pclinuxonline.com [DONE]
http://freshmeat.net/projects/firebird/ [DONE]
lxer.com [DONE]
chip.ro [DONE]
Please consider making a donation to the Wine Party Fund...........http://winehq.org/site/contributing#wpf

Yah quote of the day ;)

ans seems linux is faster on running windows applications than ...winxp

Tuesday, January 24, 2006

Carlos H. Cantu plays guitar in an heavy metall band
Firebird-ers rocks
http://www.thex.com.br/banda/frame.html

ps: maybe one day we will met up for an show ;)
with powerpoints , screams and solo included heheh

Friday, January 20, 2006

TO KEEP THE FIRE BURNIN' YOU MUST FEED THE FLAME

jam session 3-rd edition (in club viking bucharest)
I will sing (as vocalist)
Metallica - Enter Sandman
Black Sabbath - Paranoid
Nirvana - Smells like teen spirit
Judas Priest - Breaking the law
Mariuz's frappr - my place on the google map
http://www.frappr.com/?a=myfrappr&id=402346

Tuesday, January 17, 2006

What keeps me in Targu-Mures
I love this town because it's really fun to live in with my friends i enjoy going to parties to local clubs , even if is an small town (compared to bucharest) ,people really like to feel the life
experiment with emotions.
It's not the buildings or work place that keeps me here

Update
or the school (they kick-ed me out of university seems that i forgot to pay the checks too fast, i will talk with them tomorrow)
Update: school is OK now , minus the exams that are really near

Friday, January 13, 2006

ubuntu's place in the linux family ;)



~~~~::~~~~::~~~~
yet another ubuntu logo/wallpaper



spoted on FaCe's photo blog
Lake of Beers ...errr Lake of Tears
in romania

There've been rumours about a Romanian gig for quite a while now, and here it is: LoT will play at the Palace Hall in Bucharest on Friday the 10th of March 2006! Details about tickets, preordering etc will come up as the date draws closer. More info on the venue can be found here.

http://www.lakeoftears.net/

Thursday, January 12, 2006

How to keep a blonde busy.
It's Funny :)

Tuesday, January 10, 2006

Intelligent Evolution

I see god as ultimate hacker ,
starts with one version and if ain't good is erased (Sodoma and Gomora , maybe dinosaurus)
Adam and Eva are symbols to human race not real persons , and 7 days are
symbolic too - what is time for an out of time entity ?
Both God and Darwin are right - power through diversity (evolution)
Example:There are some people immune to HIV , Imagine if all we were the
same , one virus could have been killed us all

Friday, January 06, 2006

while searching for dotnet on tehnocrati
I found this nice pictures (on flickr)

ps: is safe for work , what the heck is about dot net isn't it :P
Firebird Roadmap for 2006 Pr

Firebird SQL Roadmap for 2006
Following a recent developer conference in Prague, the Firebird Project published a roadmap for 2006 and beyond. Firebird 2.0 included 82 improvements and bug fixes. Firebird 3.0 will merge Firebird 2.0 with the Vulcan code base, which includes fine-grained multi-threading, enhanced security. Target date for a beta version of Firebird 3.0 is the second quarter of 2006. Firebird 3.0 will likely include new built-in functions and several SQL-99 features, such as global temporary tables, external functions and recursive queries. Other high priority features include asynchronous statement cancellation, monitoring and caching of compiled statements.

linuxquestions.org [DONE]
lwn.net [DONE by someone else thanks ]
dig.com [DONE]
developers.slashdot.com [DONE]

Wednesday, January 04, 2006

Firebird 1.5.3 RC3 PR

digg.com [DONE]
myl.ro [DONE]
una-alta.ro/it [DONE]
linux360.ro [DONE]
lxer.com [DONE]
chip.ro [DONE]
lwn.net [DONE]
theinquirer.net [DONE]
opendb.de [wrong email @ webmaster ]
linuxcompatible.org [DONE]
linuxtoday.com [DONE]
developers.slashdot.com [DONE]
linuxpr.com [DONE]
opensourcexperts.com [DONE]
debcentral.org [DONE]
newsforge.net [DONE]
osnews.net [DONE]
osdir.com [DONE]
linuxgazette.com [DONE]
databasejournal.com [DONE]
guilinux.com [DONE]
pclinuxonline.com [DONE]
linuxelectrons.com [DONE]
guilinux.com [DONE]
tuxmachines.org [DONE]
freshmeat.net/projects/firebird [DONE]
sourcewell.berlios.de [DONE]
warp2search.net [DONE]
softpedia.com [DONe]
icewalkers.com [DONe]
linux-watch.com [DONE]
linuxfilter.com/story/45/ [DONE]
best viewed with firefox
I will write an letter to godmode.ro's webmaster
here is why

Browser Appliance Virtual Machine - pr0nzilla

I have installed the 64bit version of it and works quite well

The Browser Appliance is a free virtual machine that allows users to securely browse the Internet using Mozilla Firefox. Run the Browser Appliance with VMware Player to ...
lhttp://www.vmware.com/vmtn/vm/browserapp.htm

Tuesday, January 03, 2006

Who the fsck is "Cziffra"?
Best quote of the day :)
Performed by Klaus Schulze in an interview
Interview with Tarja Turunen (ex Nightwish)

She was in Romania for X-mas concert , Here is the full interview
(scroll down for full english interview)
..::::..::::..::::..

Wednesday, December 14, 2005

Vulcan philosophy revolves around the concept of logic.

A Vulcan's moral goal is to abandon all emotion and become a purely logical being. This is attained through meditation and discipline.

Friday, December 09, 2005

firebird 2.0 beta 1 PR

lxer.com [DONE]
myl.ro [DONE]
linux360.ro [DONE]
developers.slashdot.com [have to improove my karma -REJECTED]
warp2search.net [DONE]
neowin.net [DONE by alex]
opensourcexperts.com - > PR [DONE]
linuxtoday.com [DONE]
lwn.net [DONE]
opendb.de [DONE]
newsforge.net [DONE automated]
freshmeat.net/projects/firebird [DONE]
osnews.net [DONE]
licklinux.com [DONE -dead site ]
linuxelectrons.com [DONE]
digg.com [DONE - coool site ]
debcentral.org [DONE]
osdir.com [DONE]
icewalker.com [DONE]
linux-watch.com [DONE]
softpedia.com [DONE]
linuxgazette.com [DONE]
pclinuxonline.com [DONE]
linuxpr.com [DONE]
linuxcompatible.org [DONE]
sourcewell.berlios.de [DONE]

Monday, December 05, 2005

Linux XP 2005 - Is Real

Ever since Linux has become a viable option to use on desktop computers, all sorts of attempts have been made to emulate the look and feel of the ubiquitous Windows desktop. One of the more recent efforts in this respect comes from a Russian project called Linux XP.

Linux XP

Look ma' i'm on Mtv.ro
Money for nothing
Chicks for free ...

Tonight, 5th of december, from 11 PM (romanian time) MTV Romania will broadcast inside LENTI CHIRIAC's show "ROCKZONE", some LIVE shots from "MONSTERS OF TRANSYLVANIA ROCKFEST 2005". Don't MISS it, if U can catch it on your satelite! SPECIAL THANX to LENTI & the cameraman - HENN ATTILA

Saturday, December 03, 2005


Linux z XP 2006
On an russian linux site

Friday, December 02, 2005

Monsterz of Transylvania
atika got some pictures from this rock festival
Yah the first one is me :P

Impressions:
Taine sang very well (artis looks a little like Jim Morrison) , I was impressed also by the hungarians (Tuzmadar) , ehh Northen Lights were so-so (I didn't expected much from turkish band) but they have a funny name (for an Euro-Asian country )
What i liked : before they actually started playing the man at keyboard sang intro from "Imperial March" -Star Wars that was really cool
Yah they looked strange for us , yah and the voice ...well artist sang like me when i'm good of nothing :average (and i do know when i stink at singing) . Guitarist looked good ,didn't impressed me .
Iron Mask - had the best guitarist from bands that performed in that night .
Incredible (Yah i liked how fast and good it was ) I liked the solo and some neo-classic style of him, Minus-es the vocalist it looked
bald like me :P and fat (at least i'm slim)
I liked the idea to be on stage with gloves
(Maybe is the kid in me)
The turkish vocalist was near me when guitarist from Iron Mask performed his
solo , Maybe they learn-ed something :)
Let's go to the Lame rock:Phantom-X : If I ever reach on stage i don't wan't to look
like them (blonde hair and silk ...etc) I wan't to be rough plain and simple
Tough i liked the idea of metal claws :P and guitarist's red ligt on the chest
(X-mass tree)
Intro was good , and i liked when guitarist went off stage , Maybe in future i will
buy one with radio transmitter (You are quite free with it).
And the Last band Anvil -They were impressive and did an great show - I liked the
vocalist (He was really funny and that matters in an show) Bass guitar player was very good (he made a little show) He looks like me when i cut my hair (zero).
Vocalist is a little crazy but is good and when he went with his guitar in the
back of stage and performed "Jimi-Hendrix" effect that kicked a-s-s , What was missing was to burn his guitar :)
Over all: even if they were 2-300 ppl , artist did their job very well and at
least it was like an private party for us :P
My revelation :Taine and I think Gothic + hungarians were very very good
and yes the guitarist from Iron Mask (10+)
Northen lights gave me an CD (Girl that filmed them) and i think we should applaude
them - Yah they do have a lot to learn - But in an age when every one listen
to crapp music (turkish + romanian mahnele) they try to wake up us and they did it for us
Thank You All
ps:Maybe they should move the rock festival in summer and with
more sponsors (free entry) and more media noise (not only MTV.ro)

Friday, November 18, 2005

Gingle Bells, Gingle Bells Drink a beer while it (me) don't smells
Drink it fast becouse maybe santa is comming on tomorrow
BEGIN beavis mode:
Tha ..Thahah Tthchahah Thnahah
Dgiiinngle Bheeelzz ...
END beavis and buthead mod

ps: Yah an song written with waaaaaaaayy to much beer in the brain :P

Monday, November 14, 2005

microsoft is dead
Cringely said so
"Microsoft's core businesses are slowing down. Google could become a major threat to Microsoft. What harm could Google cause Microsoft? Microsoft's greatest business vulnerability is Office. If a competitive product (or service) hit the market it could further dilute Microsoft's earnings since they'd have to lower Office prices to compete. Another great threat is Google could become an organizing influence in the Open Source world. They could guide the Open Source community and it could become a greater threat to Microsoft."
Read more on it's blog
http://www.pbs.org/cringely/pulpit/pulpit20051110.html

technorati tags: ,

Tuesday, November 08, 2005

transfagarasan 2005, more pictures soon , Meanwhile you can
see some google pictures of the zone

Monday, November 07, 2005


I found that shorewall has traffic shaping and Load balancing 2 isp
Simple load-balancing across multiple interfaces (if you happen to have 2 isp's)

http://www.enterprisenetworkingplanet.com/netos/article.php/10951_3512836_1
http://lartc.org/lartc.html

Saturday, November 05, 2005

Install Gentoo/Ubuntu/Fedora Linux on VMWare

I should try to install ubuntu-32bit in VMWare

http://fucoder.com/2005/10/install-gentoo-linux-vmware-windows-xp/

..::::..::::..

Wednesday, November 02, 2005

got new fender strings
original 150's
and cotton strap (from them )

Monday, October 31, 2005


ubuntu daper drake is using new wall paper ;)


next number in time magazine, "founde-r" of the year :P


my cat does heavy metal :P
Take back that web dear foxie lady:)
Thumbs of the week , Very nice thumbs with loonix distro's and apps

Screen shots on osdir

Saturday, October 29, 2005

reading guitar tabs

They have some good tabs there (metallica, black sabbath)
guide from mxtabs

Friday, October 28, 2005

One day one colleague told me about mixing
"get on top" and "fade to black" from metallica (seems that both had same rhythm)
Don't know who sang "get on top" , Just google it :)
I think is Red Hot Chili Peppers but not so sure about it.
Sound of both melodies was good (run them in the same time)

Thursday, October 27, 2005

VMX,or cell coprocessor for AMD cpus ?
It could be something like that (make sense from one point of view)

Source arstechica

"Ultimately, a new set of ISA extensions with a flashy name and a special logo program are going to be just one marketing weapon among many in the next phase of the war with Intel. AMD has established itself as the current CPU vendor of choice for tech savvy gamers, and a set of 3D-oriented ISA extensions that have some level of game studio support will help them reinforce that image in the face of Conroe."

..::....::....::....::....::..

Tuesday, October 25, 2005

The day Itanic sank

"Intel has ripped open another huge hole on the troubled ship Itanic, saying that the dual-core Montecito chip won't arrive until mid-2006 and will come in much slower than expected."
http://www.channelregister.co.uk/2005/10/24/intel_montecito_delay/

.::..::..::.

My guitar is here and I started playing with various programs (effects processors)
under linux, First successful one is fx_processor , Another one , creox crashed with strange erorr :"Error"
and that's it .

Friday, October 21, 2005


My guitar will be here by Monday (iris lux solo)
http://www.hora.ro/popup/irislux.htm

it's ony ~160$ quite cheap (fender clone)





_____ __
/__ / / /_ __ __
/ /_/ /_ \ / _/_
/ __ / \ \/ / / \
/ / / /\__/ / /\ \__\ \_
S.C./_/ /_/\____/_/ \____\__\ S.A.
str. Salcamilor nr.3 4225 Reghin ROMANIA
Ph: +40-65-512411,512412,512413, 512414
Fax:40-65-511427 www.hora.ro

Thursday, October 20, 2005

UbuntuBugHuntingDay

"Breezy is now out and everybody has celebrated its release. You have, haven't you? Before we all start our now journey to an unknown destination, we need to clean up a bit all the dust everywhere. And the place with the most dust is probably our bug tracking systems. So we shall have a Bug Day.

The Hug Day. This is a very special Bug Day: on Hug Day, when someone closes a bug, then someone else should hug him/her. Why? This is a very special way for us to tell everyone that we love contributions! And triaging bugs is a really big contribution."

I like it :Hug Day

Wednesday, October 19, 2005

we-are-lost.com recommends firefox

Recommended browser: Mozilla Firefox

And they have 2 mp3 files for free

ps:it's another way to make people hear you (put mp3/ogg files for free on the interweb)

Tuesday, October 18, 2005

55 Ubuntu cd's on the way

Date Requested: 2005-10-18
Status: Approved
PC CDs: 40
64-bit PC CDs: 10
Mac CDs: 5
You can order for free from shipit
"How many is a brazillion?"

Donald Rumsfeld is giving the president his daily briefing. He
concludes by saying: "Yesterday, 3 Brazilian soldiers were killed."
"OH NO!" the President exclaims. "That's terrible!" His staff sits
stunned at this display of emotion, nervously watching as the
President sits, head in hands. Finally, the President looks up and
asks, "How many is a brazillion?"

Friday, October 14, 2005

Get the facrts ! now
(:Greetings, you essence-suckers:)

"I am, who would have guessed, rather new to the bloodsuck industry.I managed to get a (sorta) running configuration up and running, it's beeing used to backup 4 clients over the network to a 24/7 online backup-to-file server."


Quote of the day on the bacula mailing list

Thursday, October 13, 2005

stripe for speed (swap)

The kernel itself can stripe swapping on several devices, if you just give them the same priority in the /etc/fstab file.


http://www.tldp.org/HOWTO/Software-RAID-HOWTO-2.html#ss2.2

Tuesday, October 11, 2005

"Gmail is temporarily unavailable. Cross your fingers and try again in a few minutes. We're sorry for the inconvenience."
W00t , mayday mayday mayday gmail is down

could not grab your mouse. A
malicious client may be eavesdropping on
your session (Interesting message while updating
my ubuntu - Is true machine was under heavy load:60G rsync-ing)

Monday, October 10, 2005

"my mom is nice and cool"
Translate into spanish then back to english with google language tools
media magic sound card - isp16 linux

Seems that i have to boot in "freeDOS" , init card and then soft reset my k6-2 (firewolf1) to boot in linux


Now that is fun

Sunday, October 09, 2005

"Unfortunately, the Operating System you are currently using is unsupported."

Negative Quote of the day it seems : Sorry folks that i use linux, is my fault ,
i'm to be ashamed

http://video.vividas.com/CDN1/3929_Serenity/web/index.html



i love fiat !
don't know why ;)


Atika took some great pictures with cars at bucharest auto show
http://atika0001.95mb.com/2005_10_08_SIAB/target32.html

Friday, October 07, 2005

I met the Masters of Pupets

today we finished an site for puppets theatre , it was quite


interesting the presentation for them (typo3 solution). Lamp


was used all the way for building it.

Thursday, October 06, 2005

Saaaaanta's forever gone

No money in the sack


Santa ain't here no more


I just lay here and suck


With my eyes glued to the door.


Written by alex


Desolate , and fever chills


Going dark over the hills


[evil grins]There is no Santa for me kids [/evil grins]

Star Wreck: In the Pirkinning - free download

I loved the trailer (spotted on some debian/gnome blog )


It can be downloaded in divx format for free


http://www.starwreck.com/

Sunday, October 02, 2005

no-name rock band

Seems that I'm part of an rock band now , We have to buy some drums , Today i did rehearsal on "Paranoid" - Black Sabbath.


Amazing how much fun it's to sing/scream ;)