<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title>Blog</title>
    <link>http://julianomoreira.com/index.php</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>julianodasilva@gmail.com</dc:creator>
    <dc:rights>Copyright 2010</dc:rights>
    <dc:date>2010-04-28T12:59:14+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>Hasta la vista Firebug!</title>
      <link>http://julianomoreira.com/new_site/notebook/hasta-la-vista-firebug/</link>
      <guid>http://julianomoreira.com/new_site/notebook/hasta-la-vista-firebug/#When:12:59:14Z</guid>
      <description>The latest set of improved and new features to the Web Inspector are really great. I mean great to a point where I might use Web Inspector as my main web development tool. Those of us who breath web development know how much a tool such as Firebug and now Web Inspector can help. Here it is a quick highlight of the updates:

Improved CSS inspection



You can jump to where a particular rule in CSS is defined, view it and edit styles. You can also view user agents style which lets you view the &#8220;secret&#8221; styles behind Webkit and its forms styles. There&#8217;s also a search bar that lets you search HTML elements in your code. 

Edit DOM and Nodes trees.



Finally, you&#8217;ll be able to edit the HTML of a DOM through an &#8220;edit as HTML&#8221; mode (right click the code you want to edit) in the context menu. 

Timeline Mode

Wonder what makes your website slower? Timeline will check what the browser does and possible what&#8217;s bogging down your site until the page is rendered. 

Performance tips from the Audit panel

Once you click &#8220;run&#8221;, Audit&#8217;s panel will run a check on your site to see what can be improved to make your site faster. It&#8217;ll give good tips on performance. 

So far I&#8217;m very excited. I really love the Web Inspector UI and I&#8217;m looking forward to using it. For more detailed information WebKit Blog.

&amp;nbsp;</description>
      <dc:subject></dc:subject>
      <dc:date>2010-04-28T12:59:14+00:00</dc:date>
    </item>

    <item>
      <title>Formatting your CSS properly</title>
      <link>http://julianomoreira.com/new_site/notebook/formatting-your-css-properly/</link>
      <guid>http://julianomoreira.com/new_site/notebook/formatting-your-css-properly/#When:01:46:36Z</guid>
      <description>As web designers, we like certain things done a very particular way. Some developers like camelCasing whereas some developers don&#8217;t, some designers prefer single line whereas some designers prefer multiple line formatting. There&#8217;s no right or wrong and it all depends on your work environment. Most web designers have their own way of writing and they stick to it no matter what. But the more diverse your projects are, the more you need to evaluate how you write your CSS. Since I work directly with developers(.NET, PHP, Python, Java) I took a step further trying to standardize my CSS formatting as much as possible based on a few things I know developers do.

01. Multiple Files

@import url(&amp;quot;reset.css&amp;quot;);
@import url(&amp;quot;master.css&amp;quot;);
@import url(&amp;quot;color.css&amp;quot;);
@import url(&amp;quot;layout.css&amp;quot;);
@import url(&amp;quot;typography.css&amp;quot;);
@import url(&amp;quot;orangish_theme.css&amp;quot;);

I think that single files are most suitable for small projects no more than one page. When working on big projects, dividing your CSS files in multiple different files can help you tremendously specially if you intend to change colors periodically, have more control over typography and layout. For example, I wanted to be able to change color theme on my site as easy as possible so multiple files was the way to go. In this case, I have separated my structure, reset, master, typography and color css files so anytime I need to apply a different color theme all I need to do is add css declaration to my screen style sheet and that&#8217;s it. Very sweet!

02. Commenting

/* !GENERAL STYLES&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*/
a:link, a:visited {
color: rgb(64,65,30);
}
a:hover {
text&#45;decoration: none;
}


I&#8217;ve been commenting my CSS quite a bit as I start to write a lot of ie6 &#8220;workarounds&#8221;, browsers differences etc. Since IE6 plays a very important role in my work, the more I comment, the best it becomes for developers to understand why I did that a certain way. Commenting is a common habit between developers due to complexity of the code. 

03. Indentation

ul#nav {float: right; width: 414px; height: 42px; margin&#45;right: 10px}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ul#nav li {height: 42px; background: url(../images/nav_bg.png) no&#45;repeat 0px 0px; &amp;nbsp;text&#45;indent: &#45;999em; overflow: hidden; float: left;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ul#nav li a {display: block; height: 42px;}


Indentation is a must&#45;do when working with developers. Indenting your CSS is just a good as indenting your Javascript code. I learned that mostly from writing Javascript while reading DOM Scripting on my spare time. There&#8217;s a huge benefit in indenting your CSS. I tend to indent in chunks. That is to say, that children elements and sections are indented.</description>
      <dc:subject>CSS, Web Design</dc:subject>
      <dc:date>2010-04-26T01:46:36+00:00</dc:date>
    </item>

    <item>
      <title>Speaking of modern, Let&#8217;s Modernizr our CSS.</title>
      <link>http://julianomoreira.com/new_site/notebook/speaking-of-modern-lets-modernizr-ou-css/</link>
      <guid>http://julianomoreira.com/new_site/notebook/speaking-of-modern-lets-modernizr-ou-css/#When:00:18:29Z</guid>
      <description>First off, I want to apologize for not being good about writing on my blog. Things have been really crazy in the past few months and time has been really short. However, I plan to be writing more often than ever before. 
I haven&#8217;t been writing often on my own site but I&#8217;ve been very active on Twitter. That&#8217;s how I found Modernizr, through a tweet from our incredible css expert, Andy Clarke. You may ask: &#8220;What the hell Is that?&#8221; Well, Modernizr is a tool that will help get things done in browsers that don&#8217;t support top&#45;notch technology such as CSS3 and HTML5. Yeah! I&#8217;m talking about old browsers like Internet Explorer 5.5/6 and Firefox 1.0/2.0. All you have to do is add the Javascript file in your page and add a class of &#8220;no&#45;js&#8221; to your HTML element. After the file is loaded (executed), you&#8217;ll be able to use the Javascript object and all the CSS classes it&#8217;ll attach to the HTML element. I&#8217;ve been playing around with it today and it seems pretty cool. I&#8217;m sure to put some examples here when I got a solid experience with it.</description>
      <dc:subject>Web Design</dc:subject>
      <dc:date>2009-09-19T00:18:29+00:00</dc:date>
    </item>

    <item>
      <title>Ten things you may not know about me</title>
      <link>http://julianomoreira.com/new_site/notebook/ten-things-you-may-not-know-about-me/</link>
      <guid>http://julianomoreira.com/new_site/notebook/ten-things-you-may-not-know-about-me/#When:05:35:32Z</guid>
      <description>Inspired by one of the famously respected designers, Cameron Moll, in the web community, I decided to talk about ten things you may not know about me.


I like playing soccer (football) but I was really good at Tennis.
I was raised in a Baptist Church.
I played Bass in a band at church.
I was 19 years old when I migrated to U.S to pursue my career in design.
I went to Bridgewater State College to study graphic and web design.
I used to go every week, sometimes three or four times of week, to Lions Tap for burgers. They have the best burger in the planet.
I&#8217;m a frequent customer at Barnes and Noble bookstore. I like to read a lot of magazines and books.
I went through a lot of surgery this year, thoracic spine, left leg and my right foot was amputated in an accident in March of this year due to being destroyed by the car&#8217;s engine.
I want to write a book about design.
I have a beautiful girlfriend who stayed with me for 2 months in the hospital and she&#8217;s the reason why I&#8217;m happy and alive.</description>
      <dc:subject>Personal</dc:subject>
      <dc:date>2009-08-13T05:35:32+00:00</dc:date>
    </item>

    <item>
      <title>Better Grammar, Better Writing, Better Person.</title>
      <link>http://julianomoreira.com/new_site/notebook/better-grammar-better-writing-better-person/</link>
      <guid>http://julianomoreira.com/new_site/notebook/better-grammar-better-writing-better-person/#When:16:35:55Z</guid>
      <description>Believe it or not, I&#8217;m never on cutting edge of anything. I didn&#8217;t get an ipod until the fifth generation and I&#8217;ve never watched &#8220;The Office&#8221;.

So even though it&#8217;s been around for a few years, I feel like I won the lottery when I came across &#8220;Grammar Girl&#8217;s quick and Dirty tips for Better Writing&#8221; website. And I had to share with all of you. 

Some of you know I&#8217;m a foreign, English is my second language so my writing isn&#8217;t great, nearly awful. Grammar Girl is loaded with good resources for people like me who English isn&#8217;t their first language or the writing really sucks (in my case). 

Grammar girl hosts a weekly podcast to address questions of grammar, punctuation, and other hazards of the English language. Anyone following their website or tweets can call in, email or twitter with questions and Grammar Girl will respond fairly quick. Besides all the goodness provided by Grammar Girl, I hope to improve my English as well as my writing skills through this awesome resource given by our respected teacher Aka Migon Fogarty. 

Visit Quick and Dirty Tips to find links to podcasts by Grammar Girl as well as other subject such as law, nutrition etc.</description>
      <dc:subject>English, Personal</dc:subject>
      <dc:date>2009-08-11T16:35:55+00:00</dc:date>
    </item>

    
    </channel>
</rss>