<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>soledad penadés &#187; nightmares</title>
	<atom:link href="http://soledadpenades.com/tag/nightmares/feed/" rel="self" type="application/rss+xml" />
	<link>http://soledadpenades.com</link>
	<description>repeat 4[fd 100 rt 90]</description>
	<lastBuildDate>Sun, 29 Jan 2012 23:03:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Coding nightmares</title>
		<link>http://soledadpenades.com/2009/06/15/coding-nightmares/</link>
		<comments>http://soledadpenades.com/2009/06/15/coding-nightmares/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 20:09:54 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Common life]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[nightmares]]></category>

		<guid isPermaLink="false">http://soledadpenades.com/?p=1040</guid>
		<description><![CDATA[Upon reading the title, I think I&#8217;m right in assuming you probably thought I was going to write about a set of bad practices, or a series of horrible things one could find when refactoring code written by someone else. None of that, this time I&#8217;m referring to real, literally speaking, nightmares. I think it [...]]]></description>
			<content:encoded><![CDATA[<p>Upon reading the title, I think I&#8217;m right in assuming you probably thought I was going to write about a set of <q>bad practices</q>, or a series of horrible things one could find when refactoring code written by someone else. None of that, this time I&#8217;m referring to real, literally speaking, nightmares.</p>
<p>I think it happened for the first time almost 10 years ago. I had to implement a little shell in C for a university assignment and brave me hadn&#8217;t a better idea than printing parts of the code from <a href="http://www.gnu.org/software/bash/bash.html">bash</a> and examining it to get an idea of how the real stuff worked. It was all fine and dandy when reading the code at a train (apart from the odd looks that I got from people sitting near me, of course), but it proved to be a very bad idea to keep reading right before going to sleep. That night was the prelude of a long series of bad nights. I spent the whole night dreaming about pointers, structures, functions, loops, assignments, switch statements, case&#8217;s, mallocs&#8230; you get the point. When I woke up, my brain was totally wasted. It was just like if I hadn&#8217;t slept at all.</p>
<p>I thought that had only been a single event and wouldn&#8217;t happen again, but boy, wasn&#8217;t I wrong! It didn&#8217;t happen again, though, until I began to work in web development, and the main cause this time was the Horror. Of course, I&#8217;m referring to Internet <del datetime="2009-06-15T19:38:28+00:00">Explorer</del> Exploder. I have lost count of the number of nights I spent suffering horrible nightmares where things work properly in Firefox and Opera and blah but aren&#8217;t properly aligned in IE, or do not show where they should&#8230; Anyone who has had to develop for IE will for sure know what I mean.</p>
<p>The easiest way of avoiding these nightmares (for me) is to consciously focus on something completely unrelated before going to sleep. For example, to read something non-technical, like a fiction book where the action preferably happens in a time and place where the most advanced piece of technology is a ball pen.</p>
<p>But over time, there are days where I can&#8217;t but get super excited about something code wise, and continue coding right until my eyelids feel so heavy I can hardly keep my eyes open. Those are the nights I go to sleep scared in advance, because I know my brain is totally obsessed with the piece of code I&#8217;m working with, and as Bette Davis <a href="http://www.imdb.com/title/tt0042192/quotes#qt0481833">would say</a>, <q>&#8230; it&#8217;s going to be a bumpy night!</q> :D</p>
<p>And you? Do you have <em>real</em> coding nightmares? And if you have, how do you avoid them?</p>
]]></content:encoded>
			<wfw:commentRss>http://soledadpenades.com/2009/06/15/coding-nightmares/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>to prototype or not to prototype, that is the question</title>
		<link>http://soledadpenades.com/2004/02/27/to-prototype-or-not-to-prototype-that-is-the-question/</link>
		<comments>http://soledadpenades.com/2004/02/27/to-prototype-or-not-to-prototype-that-is-the-question/#comments</comments>
		<pubDate>Fri, 27 Feb 2004 19:23:37 +0000</pubDate>
		<dc:creator>sole</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[feature creep]]></category>
		<category><![CDATA[nightmares]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[It looked as a simple task: make a simple html prototype for a potential client. It then ended up like a horrible nightmare of html delicatessen: ooooh we must convert this png into gif because it would be smaller&#8230; why don&#8217;t we make the border of the tables fancier? &#8230; oh let&#8217;s put px instead [...]]]></description>
			<content:encoded><![CDATA[<p>It looked as a simple task: make a simple html prototype for a potential client. It then ended up like a horrible nightmare of html delicatessen: <em>ooooh we must convert this png into gif because it would be smaller&#8230; why don&#8217;t we make the border of the tables fancier? &#8230; oh let&#8217;s put px instead of % &#8230; no&#8230; better put % instead of px, and no pt &#8230; and by the way let the tables use the 100% of screen width </em> (even if I repeated once and once that reading small 10 px text along a 21&#8221; screen is like a harakiri).</p>
<p>Finally it ended like it started, gracefully, as a simple prototype. Remember: don&#8217;t even let the prototypes get into final applications (specially when the deadline is very very close); don&#8217;t go into unnecessary details and focus only in the really important things&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://soledadpenades.com/2004/02/27/to-prototype-or-not-to-prototype-that-is-the-question/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

