<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
	<title>Remus</title>
	<link>http://remus.pereni.org</link>
	<description>Personal noise  about life, relations, human nature, IT, technologies, clients, value and business.</description>
	<pubDate>Fri, 18 May 2007 23:04:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1.2</generator>
	<language>en</language>

		<item>
		<title>IE7 Bug, dynamically loaded css files including @import fails to load imports</title>
		<link>http://remus.pereni.org/archives/2007/05/19/ie7-bug-dynamically-loaded-css-files-including-import-fails-to-load-imports/</link>
		<comments>http://remus.pereni.org/archives/2007/05/19/ie7-bug-dynamically-loaded-css-files-including-import-fails-to-load-imports/#comments</comments>
		<pubDate>Fri, 18 May 2007 23:04:43 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Uncategorized</category>
	<category>Web</category>
		<guid>http://remus.pereni.org/archives/2007/05/19/ie7-bug-dynamically-loaded-css-files-including-import-fails-to-load-imports/</guid>
		<description><![CDATA[Consider the following scenario: - html page: 
  - head
      &#60;link type="text/css" rel="stylesheet" media="all" href="css/red.css" id="cssLink"/&#62;
  - script
      function changeRed() {		
		var cssFile = document.getElementById('cssLink');
		if( cssFile ) {
			cssFile.href = 'css/red.css';	
		}
      }

      function changeBlue() {		
		var [...]]]></description>
			<content:encoded><![CDATA[<p>Consider the following scenario: </p><pre class="code">- html page: 
  - head
      &lt;link type="text/css" rel="stylesheet" media="all" href="css/red.css" id="cssLink"/&gt;
  - script
      function changeRed() {		
		var cssFile = document.getElementById('cssLink');
		if( cssFile ) {
			cssFile.href = 'css/red.css';	
		}
      }

      function changeBlue() {		
		var cssFile = document.getElementById('cssLink');
		if( cssFile ) {
			cssFile.href = 'css/blue.css';	
		}
      }
  - body
  	&lt;div id="testZone"&gt;
	&lt;div id="red"&gt;
		&lt;h1&gt;This should be red&lt;/h1&gt;
 		&lt;p&gt;"Cogito ergo sum"&lt;/p&gt;		
 	&lt;/div&gt;	
 	&lt;div id="blue"&gt;
		&lt;h1&gt;This should be blue&lt;/h1&gt;
 		&lt;p&gt;"Cogito ergo sum"&lt;/p&gt;		
 	&lt;/div&gt;
	&lt;/div&gt;

</pre>
<p>And the following css files:</p>
<p><b>- red.css</b></pr> 
<hr />
<pre class="code">@import url(redminor.css);
div#testZone {
	background-color:white;
	margin: 20px;
	border:3px solid red;
	padding:20px;	
}
</pre>
<p><b>- redminor.css</b></pr> 
<hr />
<pre class="code">div#red { display:block;}
#red h1 { color:red; }
#red p { color: red;}

div#blue { display: none;}
</pre>
<p><b>- blue.css</b></pr> 
<hr />
<pre class="code">@import url(blueminor.css);
div#testZone {
	background-color:white;
	margin: 20px;
	border:3px solid blue;
	padding:20px;	
}
</pre>
<p><b>- blueminor.css</b></pr> 
<hr />
<pre class="code">div#blue { display:block;}
#blue h1 { color:blue; }
#blue p { color: blue;}

div#red { display: none;}
</pre>
<p>At page load the red css is applied by default, which works as expected in all browsers.</p>
<p>When the changeRed() or changeBlue() functions are invoked, the behavior is the expected one in: IE6, FF 1.5-20, Opera 9, but in IE7 only the blue.css or red.css rules get’s applied the ones from the imported css files (blueminor.css or redminor.css) are ignored.</p>
<p>The import works since at page load IE7 applies correctly the rules defined in the imported styles.</p>
<p>Also as a workaround, if I dynamically remove the cssLink element from the DOM, and then I re-create it works correctly in all browsers including IE7.</p>
<p>So if you do this instead things will work as supposed:</p><pre class="code">function replaceRed() {		
	var cssFile = document.getElementById('cssLink');
	var par = cssFile.parentNode;
	par.removeChild(cssFile);
	cssFile = document.createElement('LINK');
	cssFile.type = 'text/css';
	cssFile.id = 'cssLink';
	cssFile.media = 'all';
	cssFile.rel = 'stylesheet';
	cssFile.href = 'css/red.css';
	par.appendChild(cssFile);
}

function replaceBlue() {		
	var cssFile = document.getElementById('cssLink');
	var par = cssFile.parentNode;
	par.removeChild(cssFile);
	cssFile = document.createElement('LINK');
	cssFile.type = 'text/css';
	cssFile.id = 'cssLink';
	cssFile.media = 'all';
	cssFile.rel = 'stylesheet';
	cssFile.href = 'css/blue.css';
	par.appendChild(cssFile);
}	
</pre>
<p>Download the test case: <a href="http://remus.pereni.org/fisiere/div/iebug/iebug.zip">http://remus.pereni.org/fisiere/div/iebug/iebug.zip</a></p>
<p>View the test case: <a href="http://remus.pereni.org/fisiere/div/iebug/index.html">http://remus.pereni.org/fisiere/div/iebug/</a></p>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2007/05/19/ie7-bug-dynamically-loaded-css-files-including-import-fails-to-load-imports/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>At tree months</title>
		<link>http://remus.pereni.org/archives/2006/04/18/at-tree-months/</link>
		<comments>http://remus.pereni.org/archives/2006/04/18/at-tree-months/#comments</comments>
		<pubDate>Tue, 18 Apr 2006 21:04:26 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Sasha</category>
		<guid>http://remus.pereni.org/archives/2006/04/18/at-tree-months/</guid>
		<description><![CDATA[Well what can I say time just flies.
We finally got his
Romanian birth certificate so we could finally baptize him and since the wheatear
is starting to be nice we also started going out on daily basis.
Still lucky as he is a wonderful
child sleeps during the
night, cries only with a reason, healthy, but definitely things got
more
interactive and [...]]]></description>
			<content:encoded><![CDATA[<p>Well what can I say time just flies.
We finally got his
Romanian birth certificate so we could finally <a
 href="http://www.flickr.com/photos/remus/tags/baptism/"
 target="_blank">baptize him</a> and since the wheatear
is starting to be nice we also started <a
 href="http://www.flickr.com/photos/remus/129002207/"
 target="_blank">going out</a> on daily basis.</p>
<p>Still lucky as he is a wonderful
child sleeps during the
night, cries only with a reason, healthy, but definitely things got
more
interactive and nosy. But you can judge that for yourself, true when I
made the
movie he was both sleepy and hungry so you can see an angry Sasha.</p>
<p style="text-align:center;">
<script type="text/javascript" src="http://www.videoegg.com/Player.js" ></script><script type="text/javascript">EmbedPlayer2('FFFFFF', 'WO/S7/1145392040rZFtErCXmpG1IB86YkFi');</script>
</p>
<ul>
  <li><a href="http://www.flickr.com/photos/remus/tags/2months/">pictures
from the second month</a></li>
  <li><a href="http://www.flickr.com/photos/remus/">latest
pictures</a></li>
</ul>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2006/04/18/at-tree-months/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>At two months</title>
		<link>http://remus.pereni.org/archives/2006/03/17/at-two-months/</link>
		<comments>http://remus.pereni.org/archives/2006/03/17/at-two-months/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 00:29:48 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Noise</category>
	<category>Life</category>
	<category>Sasha</category>
		<guid>http://remus.pereni.org/archives/2006/03/17/at-two-months/</guid>
		<description><![CDATA[
There are already two months since
Sasha was born, I still
find it pretty amazing, I still re-live Lili being pregnant in her last
month
with all the difficulty of the situation, the trips to the hospital,
the day of
birth with all it&#8217;s emotions. It is just unbelievable that
thing that used to
signal us it&#8217;s presence from Lily tummy now it [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.flickr.com/photos/remus/112424222/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/43/112424222_1edca27430_t.jpg"
 alt="Lili &amp; Sasha" align="left" height="100"
 width="75" vspace="3" hspace="3"></a>
<p>There are already two months since
Sasha was born, I still
find it pretty amazing, I still re-live Lili being pregnant in her last
month
with all the difficulty of the situation, the trips to the hospital,
the day of
birth with all it&rsquo;s emotions. It is just unbelievable that
thing that used to
signal us it&rsquo;s presence from Lily tummy now it is a real
person, next to me. </p>
<p> We
waited around 5 years till we decided to have a child, we
did right, but somehow we look at him every day and ask ourselves the
same questions,
how could we stay so long without having a child. We are qualified as a
bit
anti-social, as we don&rsquo;t really like to go out, and we
weren&rsquo;t really attached
to babies, but somehow the feelings related to Sasha where right there
from the
first moment we saw him.</p>
<a href="http://www.flickr.com/photos/remus/110477636/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/43/110477636_228dbfff82_t.jpg"
 alt="PICT0950f" align="right" height="75"
 width="100" vspace="3" hspace="3"></a>
<p> He
is a wonderful child, healthy and happy, which makes us extraordinarily
happy parents. I&rsquo;m not saying that we don&rsquo;t have
our moments, Sasha has, as almost
every newborn, gases, colic&rsquo;s, and some seborrheic
dermatitis, but still he
almost never cries without a reason. It&rsquo;s a bit of a puzzle
from time to time
to find out exactly what is bothering him, but once found he is a quiet
and
smiling child.</p>
<a href="http://www.flickr.com/photos/remus/110477606/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/56/110477606_356cbd11f8_t.jpg"
 alt="PICT0930ff" align="left" height="100"
 width="75" vspace="3" hspace="3"></a>
<p> We
had some troubles at the beginning, Lili had one breast
injured which made us worry that he might not be getting enough milk.
Things
where made worst by the first visit of our pediatrician who said after
consulting Lili that she definitely doesn&rsquo;t have enough milk
so we should start
giving him supplement. For sure every person you meet it expert in
newborn
raising so we where assured by everybody that once the baby starts
bottle
feeding he will quit breastfeeding. Well it didn&rsquo;t happen.
Till the breast
healed, from time to time we needed to bottle feed him, but that
definitely
didn&rsquo;t make him refuse the next breast feed. So in our case,
that proved to be
a myth. He grew constantly both in weight as in length, as a matter of
fact,
event that we feed him whenever he needed it, he was constantly spot on
the growth
charts.</p>
<a href="http://www.flickr.com/photos/remus/108330610/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/38/108330610_806a264a88_t.jpg"
 alt="Sasha David" align="right" height="75"
 width="100" vspace="3" hspace="3"></a>
<p> I
don&rsquo;t know, it feels so easy, with all the little
problems, at the beginning we even worried that it is too easy; we even
managed
to get enough sleep. Hopefully things will stay like this. Somewhere at
the beginning
of April he will be baptized, and after that given that the wheatear
will be
better we could start taking him outside, to fresh air (as fresh as you
can get
in a city).</p>
<a href="http://www.flickr.com/photos/remus/107683807/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/41/107683807_3f729fa829_t.jpg"
 alt="Sasha David" align="left" height="75"
 width="100" vspace="3" hspace="3"></a>
<p> I&rsquo;m
sure having most of our friends with newborns also
helped. We learned not to panic, and we learn how to use the internet.
Every
time we had trouble, we found our answers on the net, and happily all
the
answers where reassuring. <span style="">&nbsp;</span>That&rsquo;s
how we
learned that he has seborrheic dermatitis, confirmed be our doctor,
that
cortisone based treatments are used, which worked, but only for a short
time,
that you are not supposed to use it for really long time. Happily a
non-cortisone based cream helped, also having him bath in real Camilla
tea and
not with the Camilla extract did magic. From time to time it reappears
in a
very mild form, but it is nothing to be concerned about as it is barely
visible
and usually disappears after the next Camilla tea bath. Oh and he loves
water.
In the last two month he never, and I mean, never ever cried during a
bath.</p>
<ul>
  <li><a href="http://www.flickr.com/photos/remus/tags/1month/">pictures
from the first month</a></li>
  <li><a href="http://www.flickr.com/photos/remus/">latest
pictures</a></li>
  <li><a href="http://www.youtube.com/videos/premus">movies</a>
  </li>
</ul><p class="tags">Tags: <a href="http://technorati.com/tag/baby" title="See the Technorati tag page for 'baby'." rel="tag">baby</a></p>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2006/03/17/at-two-months/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Home at last!</title>
		<link>http://remus.pereni.org/archives/2006/01/26/home-at-last/</link>
		<comments>http://remus.pereni.org/archives/2006/01/26/home-at-last/#comments</comments>
		<pubDate>Thu, 26 Jan 2006 21:32:04 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Noise</category>
	<category>Life</category>
	<category>Sasha</category>
		<guid>http://remus.pereni.org/archives/2006/01/26/home-at-last/</guid>
		<description><![CDATA[
Yesterday I went to Fehergyarmat to bring Lili and little
Sasha home.
The big event should have happen last Friday but by the time
we&#8217;ve got there Lili had fewer and the doctors decided not to
let her (and the baby home) until causes are investigated and Lili is
fully recovered.

By the time we&#8217;ve got back home her fever was [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.flickr.com/photos/remus/91083903/"
 title="Finally, home!"><img
 src="http://static.flickr.com/12/91083903_995c554647_t.jpg"
 alt="Finally, home!" align="left" height="75"
 hspace="4" vspace="4" width="100"/></a>
<p>Yesterday I went to Fehergyarmat to bring Lili and little
Sasha home.
The big event should have happen last Friday but by the time
we&rsquo;ve got there Lili had fewer and the doctors decided not to
let her (and the baby home) until causes are investigated and Lili is
fully recovered.</p>
<a href="http://www.flickr.com/photos/remus/91083922/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/18/91083922_ebd2e5941e_t.jpg"
 alt="Finally, home!" align="right" height="75"
 hspace="4" vspace="4" width="100"/></a>
<p>By the time we&rsquo;ve got back home her fever was gone
so that
was a little bit relieving, the next morning the blood test results
where ready and it turned out that the same bacteria which Sasha had
Lili has it too. Probably because she has an immune system unlike the
little baby (which seems to relay on the mother&rsquo;s milk for
that) reacted a bit late to it. So the doctors considered another five
days in hospital with antibiotics and after that another blood test and
if everything is all right she will be released home.</p>
<a href="http://www.flickr.com/photos/remus/91083934/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/17/91083934_03f8267afd_t.jpg"
 alt="Finally, home!" align="left" height="100"
 hspace="4" vspace="4" width="75"/></a>
<p>In a way this was good, first of all because it seems that the
bacteria
was from the hospital and not from Lili, therefore reducing the risk of
complications created by an in-uterus infection, second of all because
they seemed to know what they are talking about (that bacteria was not
new to them) a quick diagnostic and treatment available, I would not
want to imagine what would have happen if we would have made it home,
and Lili developed the fever here with all the incompetent doctors from
this city. And last, the next morning, the baby was moved from the
intensive care unit to her room and stayed there till we came back
home, this was welcomed as it gave her a little bit of time to get used
to the baby and to it&rsquo;s habits and handling issues. </p>
<a href="http://www.flickr.com/photos/remus/91083959/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/22/91083959_0070ec2010_t.jpg"
 alt="Finally, home!" align="right" height="100"
 hspace="4" vspace="4" width="75"/></a>
<p>Yesterday another blood test was done, everything came up good
so they
where released home. The trip back was fine, while outside was very
cold the road was good and in around 45 minutes we where in the worm
and safety of our home. I&rsquo;m am after the first 24 hours with
him and he is an angel I just can not find another word to best
describe it, he eats, sleeps, dreams and once in a while cries and he
does all that pretty much like a clockwork, very few and little
exceptions. While he woke us up tree times last night he was even
better behaved than during the day time, hope that will not change.</p>
<a href="http://www.flickr.com/photos/remus/91083971/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/30/91083971_376ada72e1_t.jpg"
 alt="Finally, home!" align="left" height="100"
 hspace="4" vspace="4" width="75"/></a>
<p>We often found ourselves with Lili watching him sleep for
hours still
not believing that we have a child that is so beautiful that we are so
lucky that we went in Hungary two and came home three and that will
stay like that for many, many years.</p>
<p>
During the last 13 days, maybe for the first time in my life I was and
felt disconnected from everything except those two magic human beings
from my life. No news feeds, no programming no Java, C#, Progress and
patterns or computers crossed my mind for any fraction of a second.
It&rsquo;s time to slowly focus back on my work at least part time
:) and a new life routine to slowly take its shape. </p><p class="tags">Tags: <a href="http://technorati.com/tag/life" title="See the Technorati tag page for 'life'." rel="tag">life</a>, <a href="http://technorati.com/tag/birth" title="See the Technorati tag page for 'birth'." rel="tag">birth</a></p>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2006/01/26/home-at-last/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>I have a son!</title>
		<link>http://remus.pereni.org/archives/2006/01/15/i-have-a-son/</link>
		<comments>http://remus.pereni.org/archives/2006/01/15/i-have-a-son/#comments</comments>
		<pubDate>Sun, 15 Jan 2006 10:17:03 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Noise</category>
	<category>Life</category>
	<category>Sasha</category>
		<guid>http://remus.pereni.org/archives/2006/01/15/i-have-a-son/</guid>
		<description><![CDATA[
Yesterday (14 Ian 2006) at 16:15 (Romanian time, 15:15
Hungarian time)
Pereni Sasha David was born with 3,700 Kg and 58 cm.

It all started at 5:00 AM as we headed to the hospital to do
the
standards checkups just like we did one and two days before, as the
estimated date (13 Ian 2006) got close and passed by we [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.flickr.com/photos/remus/86465755/"
 title="Pereni Sasha David"><img
 src="http://static.flickr.com/40/86465755_f50ce2c9d8_t.jpg"
 alt="My name is Sasha David and I'm 1 hour old" align="left"
 height="100" hspace="3" vspace="3" width="75"/></a>
<p>Yesterday (14 Ian 2006) at 16:15 (Romanian time, 15:15
Hungarian time)
Pereni Sasha David was born with 3,700 Kg and 58 cm.<br />
</p>
<p>It all started at 5:00 AM as we headed to the hospital to do
the
standards checkups just like we did one and two days before, as the
estimated date (13 Ian 2006) got close and passed by we where asked to
come daily. Lili felt well as a matter of fact she felt that definitely
nothing unusual is happening so probably we&rsquo;ll be back home
son.
</p>
<p>Once there we did the <a
 href="http://www.ahealthyme.com/topic/nonstress"
 title="Nonstress Testing">NST</a>
test, the doctor considered that the
movements where not enough so asked for a <a
 href="http://www.ahealthyme.com/topic/contractstress"
 title="Contraction Stress Test">CST</a>
test, we
weren&rsquo;t scared we&rsquo;ve been there once as Sasha is
really moody and not very active in the morning.
</p>
<a href="http://www.flickr.com/photos/remus/86465659/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/36/86465659_0fb10d3bca_s.jpg"
 alt="Waiting at the CST test" align="right" height="75"
 hspace="3" vspace="3" width="75"/></a>
<p>So Lili was taken into the delivery room and given a very
small dose of
oxytocin to stimulate a couple of contractions while the contractions
and child hart rate where monitored, we where waiting outside. </p>
<p>After two hours, aldo the heart rate was ok and there were
some
movements the doctors where not completely satisfied with how the child
responds to the contractions and considering that we where a bit over
the estimated date decided not to risk and induce the labor.</p>
<a href="http://www.flickr.com/photos/remus/86465696/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/41/86465696_bd863c090b_s.jpg"
 alt="Do I look like I&rsquo;m ready to assist?" align="left"
 height="75" hspace="3" vspace="3" width="75"/></a>
<p>At that point Lili was given a full dose of oxytocin (to
stimulate
contractions and dilatation) and prepared by the nurses to deliver
while I have been asked to change into sterile clothes and join Lili.</p>
<a href="http://www.flickr.com/photos/remus/86465672/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/36/86465672_188b72a5c2_s.jpg"
 alt="We are not going home today?" align="right"
 height="75" hspace="3" vspace="3" width="75"/></a>
<p>We staid alone in the delivery room smiling at each other not
believing
that it finally happens and waiting for the contractions to appear.
They did not so the doctor decided to use Prostaglandins gel and also
do an ultrasound investigation. Surprise, in the last two weeks the
baby turned over so now he was head up instead of head down as he
should have been an as he was at the previous ultrasound investigation,
this was possible mainly because Lili had a little bit more amniotic
fluid so the baby had the possibility to move more easily.</p>
<a href="http://www.flickr.com/photos/remus/86465713/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/36/86465713_ac5d2ce315_s.jpg"
 alt="Now I&rsquo;m having contractions." align="left"
 height="75" hspace="3" vspace="3" width="75"/></a>
<p>Aldo breech babies can be delivered normally it is more risky
so the
doctor decided to use cesarean delivery. For some reason she had to be
a little bit dilatated so we where left alone again for another two
hours so the gel could do his magic. And it did, Lili was soon having
contractions. Around 15:30 the anesthetist came and explained the
procedure and the nurses started preparing Lili for the intervention.
At 16:00 I was asked to wait outside but still in the delivery zone in
the sterile clothes so I could see the baby as soon as possible while
Lili was taken into the operating room. At around 16:17 I was called by
a nurse, the baby was out and crying in front of me.</p>
<a href="http://www.flickr.com/photos/remus/86465738/"
 title="Photo Sharing"><img
 src="http://static.flickr.com/9/86465738_ca35fda5fe_t.jpg"
 alt="My name is Sasha David and I'm 2 minutes old" align="right"
 height="75" hspace="3" vspace="3" width="100"/></a>
<p>At that point I could change back in my regular clothes and
could wait
outside of the delivery zone to Lili. At 17:00 the doctor came
congratulated me and said that everything is perfect the intervention
went smooth and both the baby and Lili was fine and she would come out
soon. At 17:00 she was carried to the intensive care unit, still under
epidural anesthetic she smiled and was happy. A couple of minutes later
I was called to visit her.</p>
<p>After staying a little bit with Lili the nurse called me to
show the
baby, I tried recording it on my camera you can see it here but
definitely not the camera was on my mind as you will see it from the
recording, then went back to Lili. She will have to stay in the
intensive care unit for 24 hours and if everything is fine today she
will be transferred to a regular room and the baby will stay with her.</p>
<p>Because there was a caesarian delivery she will have to stay
in
hospital for 7 days instead of 5 so if everything is OK next Saturday
we are all home.</p>
<p>I will go visit her daily while taking pictures and movies, if
you are
interested you can check my <a
 href="http://www.flickr.com/photos/remus/tags/birth/">Flickr
photos</a> and <a href="http://www.youtube.com/videos/premus">YouTube
for videos</a> and
updates.</p><p class="tags">Tags: <a href="http://technorati.com/tag/son" title="See the Technorati tag page for 'son'." rel="tag">son</a>, <a href="http://technorati.com/tag/child" title="See the Technorati tag page for 'child'." rel="tag">child</a>, <a href="http://technorati.com/tag/life" title="See the Technorati tag page for 'life'." rel="tag">life</a></p>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2006/01/15/i-have-a-son/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Passion, technology makers and technology users.</title>
		<link>http://remus.pereni.org/archives/2005/12/20/passion-technology-makers-and-technology-users/</link>
		<comments>http://remus.pereni.org/archives/2005/12/20/passion-technology-makers-and-technology-users/#comments</comments>
		<pubDate>Mon, 19 Dec 2005 23:12:15 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Software Development</category>
		<guid>http://remus.pereni.org/archives/2005/12/20/passion-technology-makers-and-technology-users/</guid>
		<description><![CDATA[Just read Kathy Sierra excellent post about how memory and memorable works when I stumbled upon the next paragraph:
"Remember--your users don't have to be passionate about your product in order to be passionate users. Sometimes--often--users are passionate about what they do with your product. And it's that thing they do where you can help them [...]]]></description>
			<content:encoded><![CDATA[<p>Just read Kathy Sierra <a href="http://headrush.typepad.com/creating_passionate_users/2005/12/_but_is_it_memo.html" title="... but is it memorable?">excellent post about how memory and memorable works</a> when I stumbled upon the next paragraph:</p>
<blockquote cite="http://headrush.typepad.com/creating_passionate_users/2005/12/_but_is_it_memo.html" title="... but is it memorable?">"Remember--your users don't have to be passionate about your product in order to be passionate users. Sometimes--often--users are passionate about what they do with your product. And it's that thing they do where you can help them kick ass. Users who "kick ass" are those who get good enough to reach a state of "optimal experience" doing whatever it is you're helping them do (through your product, service, support, learning, whatever)"</blockquote>
<p>Now that was a very hard to learn lesson, as a tech guy I'm passionate about technologies and too often, at the beginnings, I tried to make the clients see the beauty of the technology behind a product or a solution. The only trouble is that, we live in a complex world and making them see something that takes months, maybe years of study and even more years of experiences is near mission impossible. It still makes a difference as if you really care about those things you can not really hide your passion, and passion, usually creates a kind of trust.</p> 
<p>I think I learned my lesson but still, sometimes, not showing or talking about the beauties of a solution or technology leaves me frustrated. The truth is that not the technology matters but what we can do with it.</p><p class="tags">Tags: <a href="http://technorati.com/tag/software" title="See the Technorati tag page for 'software'." rel="tag">software</a>, <a href="http://technorati.com/tag/technology" title="See the Technorati tag page for 'technology'." rel="tag">technology</a></p>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2005/12/20/passion-technology-makers-and-technology-users/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Dell UltraSharp 2005FPW</title>
		<link>http://remus.pereni.org/archives/2005/12/18/dell-ultrasharp-2005fpw/</link>
		<comments>http://remus.pereni.org/archives/2005/12/18/dell-ultrasharp-2005fpw/#comments</comments>
		<pubDate>Sun, 18 Dec 2005 20:29:56 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Gadgets</category>
		<guid>http://remus.pereni.org/archives/2005/12/18/dell-ultrasharp-2005fpw/</guid>
		<description><![CDATA[<a href="http://www.flickr.com/photos/remus/74751074/" title="Dell UltraSharp 2005FPW"><img src="http://static.flickr.com/38/74751074_c70dabe45a_t.jpg" width="100" height="75" alt="My new display, Dell UltraSharp 2005FP"  align="left" hspace="3" vspace="3"/></a>What can I say, it is just as wide as I thought it would be but the height is a bit disappointing, but that is really my fault, never bothered to actually check that. Anyway it is super OK, the main point, which is to have a bigger resolution than my laptop display (1400x1050), is fullfiled (having 1680x1050), the ergonomics are great so are the colors, and absolutely no flaw (no dead or bad pixels)...]]></description>
			<content:encoded><![CDATA[	<p><a href="http://www.flickr.com/photos/remus/74751074/" title="Dell UltraSharp 2005FPW"><img src="http://static.flickr.com/38/74751074_c70dabe45a_t.jpg" width="100" height="75" alt="My new display, Dell UltraSharp 2005FP"  align="left" hspace="3" vspace="3"/></a>What can I say, it is just as wide as I thought it would be but the height is a bit disappointing, but that is really my fault, never bothered to actually check that. Anyway it is super OK, the main point, which is to have a bigger resolution than my laptop display (1400x1050), is fullfiled (having 1680x1050), the ergonomics are great so are the colors, and absolutely no flaw (no dead or bad pixels).</p>
	<p>The whole idea is that my laptop is kind-of old, it was about time to change it to a new model but then I left the company so the whole point of having a laptop made no sense anymore as I don't have to work every day both at the office and at home. In the end I decided that I will have a regular, home made PC and use my old laptop for couch reading, writing and traveling.</p>
	<p>The first thing needed was a display, after so many years on LCD there was no way I would switch back to CRT, but there is a problem, the screen resolution for a 19' LCD is 1280x1024 or that is less than the one I've been using on my laptop for so many years. For site reading or document writing that resolution would be plenty but development on this resolution it is most definitely not a pleasuring experience. The higher resolution LCD displays start at 20' and has a hefty price. Luckily there here are 3 models available here, those have a 1680x1050 resolution and are less expensive.</p>
	<p>Initially I found the <a href="http://www.benq.com/products/product.cfm?product=608" target="new">FP202W model from Benq</a> with a reasonably <a href="http://www.trustedreviews.com/article.aspx?art=2036">good review</a> and then the model <a href="http://www.consumer.philips.com/consumer/catalog/catalog.jsp?fhquery=fh_secondid%3D200w6cs_00_gb_consumer%26fh_location%3D%2F%2Fconsumer%2Fen_GB%2Fcategories%3Ccatalog_gb_consumer%2Fcategories%3Cmonitors_pc_peripherals_gr_gb_consumer%2Fcategories%3Clcd_monitors_ca_gb_consumer%26&#038;productId=200W6CS_00_GB_CONSUMER" target="new">200W6CS from Philips</a> which I heard share the same screen and technologies as my <a href="http://accessories.dell.com/sna/ProductDetail.aspx?TabPage=overview&#038;sku=320-4111&#038;c=ca&#038;l=en&#038;cs=CABSDT1&#038;page=external" target="new">2005FPW Dell</a> reviewed <a href="http://www.justechn.com/reviews/articles/2005/08/16/dell_2005fpw.php" target="new">here</a> and <a href="http://www.anandtech.com/displays/showdoc.aspx?i=2400" target="new">here</a>. The only trouble was that I couldn't find the Dell available on the Romanian e-commerce sites, till I found <a href="http://www.pcmadd.com/monitor.htm" target="new">Madd Electronics</a>. Being less expensive than the Benq and Philips and having a very positive review I opted for the Dell.</p>
	<p>Even if a bit disappointing (the height) I'm not sure I would have pay the difference for a full blown, standard (1600x1200) low end 20' display.</p>
	<p>I was unable at the beginning to convince my official Dell Nvidia Geforce2 Go drivers to display the not so standard resolution, the issue is that Dell doesn't have for a long time made an update to them, and the official Nvidia drivers refuse to install on the Dell laptop. But uninstalling the Dell drivers and letting the official Microsoft drivers for the card did the trick. Under Suse 10 it was easy, just choose LCD 1680x1050 and you are settled.</p>
	<p>After two days of using it, I can say that I definitely like it, hopefully will have a successful long term relation.<br />
<p class="tags">Tags: <a href="http://technorati.com/tag/dysplay" title="See the Technorati tag page for 'dysplay'." rel="tag">dysplay</a>, <a href="http://technorati.com/tag/gadget" title="See the Technorati tag page for 'gadget'." rel="tag">gadget</a>, <a href="http://technorati.com/tag/dell" title="See the Technorati tag page for 'dell'." rel="tag">dell</a></p>
]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2005/12/18/dell-ultrasharp-2005fpw/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Java on Rails or Java on Sails?</title>
		<link>http://remus.pereni.org/archives/2005/12/02/java-on-rails-or-java-on-sails/</link>
		<comments>http://remus.pereni.org/archives/2005/12/02/java-on-rails-or-java-on-sails/#comments</comments>
		<pubDate>Fri, 02 Dec 2005 08:07:14 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Java</category>
	<category>Web</category>
		<guid>http://remus.pereni.org/archives/2005/12/02/java-on-rails-or-java-on-sails/</guid>
		<description><![CDATA[Unless you where living under a rock, you have heard about Ruby on Rails, its basically a full web stack for writing real-word applications with joy and less code, how they put it, and most definitely the application that made Ruby a star.The basic idea was to use OO, and the cool new technologies work [...]]]></description>
			<content:encoded><![CDATA[<p>Unless you where living under a rock, you have <a href="http://www.google.com/search?q=ruby+on+rails">heard</a> about <a href="http://www.rubyonrails.org/">Ruby on Rails</a>, its basically a full web stack for writing real-word applications with joy and less code, how they put it, and most definitely the application that made <a href="http://www.ruby-lang.org/">Ruby</a> a <a href="http://www.google.com/search?q=ruby">star</a>.The basic idea was to use OO, and the cool new technologies work for you, in a transparent manner, hiding the complexity in convention over configuration, a very simple idea that makes a lot of sense.</p>
<p>Since that idea works quite well, powerful technology combined with simplicity its always a winner receipt, the <a href="http://www.python.org">Python</a> guys did their version of Python on Rails, <a href="http://www.turbogears.org/">Turbo Gears</a>. Even if it makes sense, despite the 45 Java based Web related frameworks, today I noticed that we have our own version, <a href="http://blog.opensails.org/?p=17">first release milestone</a>, of <a href="http://www.opensails.org/">Java on Rails, called Sails</a>. It comes well equipped, with a <a href="http://blog.opensails.org/">Blog</a>, a <a href="http://trac.opensails.org/">Community</a> and <a href="http://trac.opensails.org/sails/wiki/Shipyard">Eclipse</a> plugins.</p>
<p>I like the idea a lot, so its there on the list of things to investigate, right near <a href="http://struts.apache.org/shale/">Shale</a>, and <a href="http://www.jboss.com/products/seam">Seam</a>. I think we are developing our own version of Kmania (from KDE) but it starts with S (Struts, Shale, Seam, Sails), hm.</p><p class="tags">Tags: <a href="http://technorati.com/tag/java" title="See the Technorati tag page for 'java'." rel="tag">java</a>, <a href="http://technorati.com/tag/rails" title="See the Technorati tag page for 'rails'." rel="tag">rails</a>, <a href="http://technorati.com/tag/frameworks" title="See the Technorati tag page for 'frameworks'." rel="tag">frameworks</a>, <a href="http://technorati.com/tag/web" title="See the Technorati tag page for 'web'." rel="tag">web</a></p>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2005/12/02/java-on-rails-or-java-on-sails/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Free and Open Source Software for Windows</title>
		<link>http://remus.pereni.org/archives/2005/12/02/free-and-open-source-software-for-windows/</link>
		<comments>http://remus.pereni.org/archives/2005/12/02/free-and-open-source-software-for-windows/#comments</comments>
		<pubDate>Thu, 01 Dec 2005 22:39:27 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Noise</category>
	<category>Windows</category>
		<guid>http://remus.pereni.org/archives/2005/12/02/free-and-open-source-software-for-windows/</guid>
		<description><![CDATA[ There are times when my work requires Windows, and now I&#8217;m kind&#8217; of OK with this, with time I got less and less religious about operating systems, maybe because OS-X is out of my reach and because the multitude of Open Source and Free packages available for Windows are more every day letting me [...]]]></description>
			<content:encoded><![CDATA[<p> There are times when my work requires Windows, and now I&rsquo;m kind&rsquo; of OK with this, with time I got less and less religious about operating systems, maybe because OS-X is out of my reach and because the multitude of Open Source and Free packages available for Windows are more every day letting me use, pretty much, the same packages both under Linux as under Windows.<br /> </p> <p> So last weekend when I had to reinstall an aged Windows (20 minutes for a shut down among many other little or hugely annoying things)&nbsp; I decided to make a list of the software I use and cherish, for the next time, because all of us know, there will be one ?<br /> </p> <p>Some of the packages are not pure FLOSS just free as it costs no money, but still I think they are worth including them.</p> <br /> <span style="font-weight: bold;">Office</span><br /> <ul>   <li><a href="http://www.openoffice.org">OpenOffice</a> &ndash; I don&rsquo;t think there is anything to comment here, except maybe that I like it a lot more MS Office, I just find it more intuitive and clean, not to mention about actually owning your documents or many other great features not available in MS Office</li>   <li><a  href="http://sector7g.wurzel6.de/pdfcreator/index_en.htm">PDF Creator</a> &ndash; this is a nifty program that let&rsquo;s you print any document (not made in OpenOffice where this feature is included) or web page or email as a PDF document.</li>   <li><a href="http://www.nvu.com/">NVU</a> &ndash; a little HTML editor derived from the old Mozilla Composer for the moments I have to edit clean little HTML documents</li>   <li><a href="http://freemind.sourceforge.net/">FreeMind</a> &ndash; a Java program to edit mind maps for un-tackling complicated issues<br />   </li> </ul> <span style="font-weight: bold;">Internet</span><br /> <ul>   <li><a  href="http://www.mozilla.org/products/firefox/central.html">Mozilla Firefox</a> &ndash; tabs, security, standard compliance makes that my favorite browser</li>   <li><a href="http://www.mozilla.org/products/thunderbird/">Mozilla Thunderbird</a> &ndash; I have the nasty habit of carrying all my mails since I had a mail account, and somehow among being secure, having a great spam killer it is the only one that can handle with easy my 20.000+ mails, that&rsquo;s when I&rsquo;m not under Linux where I prefer KMail</li>   <li><a href="http://www.freedownloadmanager.org/">Free Download Manager</a> &ndash; when torrents are not available, resuming is important or I just want to limit the download speed</li>   <li><a href="http://azureus.sourceforge.net/">Azureus     </a>&ndash; bit torrent client</li>   <li><a href="http://www.putty.nl/">Putty</a> &ndash; hey, Unix is kind of hard to get out of your system, so is SSH</li>   <li>SSH Sentinel &ndash; VPN</li>   <li><a href="http://winscp.net/eng/index.php">WinSCP</a> &ndash; file transfers based on SSH, SFTP or SCP</li>   <li><a href="http://wbloggar.com/">W.bloggar</a> &ndash; hey I have a blog don&rsquo;t I</li>   <li><a href="http://filezilla.sourceforge.net/">FileZilla</a> &ndash;when I don&rsquo;t feel like winscp-ing</li>   <li><a href="http://www.konfabulator.com/">Konfabulator</a> &ndash; when I have processor cycles and memory to kill, but It looks soo good</li>   <li><a href="http://www.tightvnc.com/">TightVNC</a> &ndash; when a command line it&rsquo;s just not enough</li>   <li><a href="http://gaim.sourceforge.net/">GAIM</a> &ndash; all do I prefer Yahoo Messenger, when I have to be on-line on multiple accounts nothing beats this<br />   </li> </ul> <span style="font-weight: bold;">Multimedia / Design</span><br /> <ul>   <li><a href="http://www.inkscape.org/">Inkscape</a> &ndash; excellent vectorial drawing program, I don&rsquo;t know what is more appealing the fact that it&rsquo;s good or that it has SVG as it&rsquo;s default format</li>   <li><a href="http://www.gimp.org/">GIMP</a> &ndash; no commentaries here, it&rsquo;s a classic</li>   <li><a href="http://www.gnome.org/projects/dia/">DIA</a>&nbsp; - for diagrams</li>   <li><a href="http://audacity.sourceforge.net/">Audacity</a> &ndash; when I have to record conversations and then make them MP3 or OGG&rsquo;s</li>   <li><a href="http://www.videolan.org/vlc/">VLC Media Player</a> &ndash; for those little movies I keep getting from friends in my emails&nbsp;</li>   <li><a href="http://www.mioplanet.com/products/pixelruler/">PixelRuller</a> &ndash; when pixels can not be trusted and have to be measured</li>   <li><a href="http://www.blacksunsoftware.com/">Magnifier</a> &ndash; especially when doing graphics and design it&rsquo;s good to check tings at pixel level</li>   <li><a href="http://www.blacksunsoftware.com/">ColorMania</a> &ndash; I have a bad memory with color hexa or rgb strings so It&rsquo;s handy to just have it at hands<br />   </li> </ul> <span style="font-weight: bold;">Development</span><br /> <ul>   <li><a href="http://www.vim.org/">GVIM</a> &ndash; well, old habits die hard, it edits anything more quickly</li>   <li><a href="http://www.xemacs.org">XEmacs</a> &ndash; I am an Eclipse convert but still I pay my respects to the ex-one</li>   <li><a href="http://www.eclipse.org">Eclipse</a> &ndash; well, the only one which was able to make me quit Emacs</li>   <li><a href="http://www.apachefriends.org/en/xampp.html">XAMMP</a> &ndash; IIS is good, but nothing beats Apache, PHP, mod_jk, Tomcat, &hellip; and after a couple of battles to manually install all of this, I found XAMMP which did all this in 10 minutes, excellent</li>   <li><a  href="http://www.mysql.com/products/database/mysql/community_edition.html">MySQL</a>,     <a href="http://www.mysql.com/products/tools/administrator/">MySQL Administrator</a>, <a  href="http://www.mysql.com/products/tools/query-browser/">MySQL Query Browser</a>, MySQLCC (I still don&rsquo;t like the query browser) &ndash; because everybody uses a data base and this one is the quickest to work with</li>   <li><a href="http://www.postgresql.org">Postgresql</a> &ndash; when MySQL is not good enough</li>   <li><a href="http://www.wincvs.org/">WinCVS</a> &ndash; when Eclipse is not appropriated</li>   <li><a  href="http://www.activestate.com/Products/ActivePython/">Active State Active Python</a> &ndash; just because I&rsquo;m under Windows doesn&rsquo;t mean that I can&rsquo;t do it</li>   <li><a href="http://rubyinstaller.rubyforge.org/wiki/wiki.pl">Ruby</a> &ndash; I still&nbsp; hope that one day I will learn it</li>   <li><a href="http://www.xmlcooktop.com/">Cooktop</a> &ndash; excellent for XML transformations</li>   <li><a href="http://tidy.sourceforge.net/">Tidy</a> &ndash; all kind HTML,XML of conversions and validations&nbsp;</li>   <li><a href="http://www.cygwin.com/">Gygwin</a> &ndash; Windows just isn&rsquo;t enough, beside that I have a hard time convincing my fingers to write dir instead of ls, or I&rsquo;m just too lazy to do a Explorer search when I have find and fgrep, did I mentioned gcc, make?<br />   </li> </ul> <span style="font-weight: bold;">Utilities</span><br /> <ul>   <li><a href="http://windirstat.sourceforge.net/">WinDirStat</a> &ndash; in time your free space on your drives tend to disappear, it&rsquo;s just a handy tool to actually visualize the content of your drive</li>   <li><a href="http://www.7-zip.org/">7Zip</a> &ndash; archive manager, it knows all what matters, gzip, bzip, zip, and many more</li>   <li><a href="http://www.freelaunchbar.com/">Free Launch Bar</a> &ndash; I hate the start menu, it&rsquo;s just too slow</li>   <li><a href="http://www.hdtune.com/">HD Tune</a> &ndash; I&rsquo;d lost a couple of hard drives in my life so checking the temperature and the SMART status it makes a lot of sense to me</li>   <li><a href="http://www.flos-freeware.ch/notepad2.html">Notepad2</a> &ndash; because notepad it is just plain stupid</li>   <li><a href="http://virtuawin.sourceforge.net/">VirtualWin</a> &ndash; after you spend so much time under Linux, one desktop won&rsquo;t really fit you any more.&nbsp;</li>   <li><a href="http://www.freecommander.com/">Free Comander</a> &ndash; I&rsquo;m not a big fan of such tools, I&rsquo;m still the command line guy, but sometime it comes
handy </li>
</ul>
<p>I&rsquo;m sure there are a couple more I forgot about, but I think the most important ones are above.</p><p class="tags">Tags: <a href="http://technorati.com/tag/windows" title="See the Technorati tag page for 'windows'." rel="tag">windows</a>, <a href="http://technorati.com/tag/floss" title="See the Technorati tag page for 'floss'." rel="tag">floss</a></p>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2005/12/02/free-and-open-source-software-for-windows/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Tomorrow, a new chapter.</title>
		<link>http://remus.pereni.org/archives/2005/11/22/tomorrow-a-new-chapter/</link>
		<comments>http://remus.pereni.org/archives/2005/11/22/tomorrow-a-new-chapter/#comments</comments>
		<pubDate>Tue, 22 Nov 2005 21:48:49 +0000</pubDate>
		<dc:creator>remus</dc:creator>
		
	<category>Noise</category>
	<category>Life</category>
		<guid>http://remus.pereni.org/archives/2005/11/22/tomorrow-a-new-chapter/</guid>
		<description><![CDATA[Today was my last work day at noLimits, while packing I could not stop thinking about the sadness I felt, even do I did the right thing. But I guess I can not feel in any other way, I put my best into the company and I&#8217;m extremely proud of the infrastructure, technologies, methodologies and [...]]]></description>
			<content:encoded><![CDATA[<p>Today was my last work day at <a href="http://www.nolimits.ro">noLimits</a>, while packing I could not stop thinking about the sadness I felt, even do I did the right thing. But I guess I can not feel in any other way, I put my best into the company and I&rsquo;m extremely proud of the infrastructure, technologies, methodologies and people I have influenced as I am with the products we imagined, implemented and delivered, it would be hard to forget all those sleepless nights, thought milestones, challenging requirements, exhausting brainstorming sessions and exalting team moments when everything &bdquo;just&rdquo; works as beautifully as we imagined.</p>
<p>But life goes on, and I&rsquo;m looking forward to start working again with the <a href="http://www.nethrom.ro">company</a> which helped me become what I am, hopefully my knowledge, attitude and experience will help both <a href="http://www.nethrom.ro">Nethrom</a> the company as it&rsquo;s clients.</p><p class="tags">Tags: <a href="http://technorati.com/tag/life" title="See the Technorati tag page for 'life'." rel="tag">life</a></p>]]></content:encoded>
			<wfw:commentRSS>http://remus.pereni.org/archives/2005/11/22/tomorrow-a-new-chapter/feed/</wfw:commentRSS>
	</item>
	</channel>
</rss>
