<?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>jappler.com &#187; debugging</title>
	<atom:link href="http://jappler.com/blog/archive/tag/debugging/feed" rel="self" type="application/rss+xml" />
	<link>http://jappler.com</link>
	<description>random and opinionated thoughts by Jennifer Zelazny</description>
	<lastBuildDate>Thu, 09 Sep 2010 14:49:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Debugging IE 6 on a Mac</title>
		<link>http://jappler.com/blog/archive/2008/10/02/debugging-ie-6-on-a-mac</link>
		<comments>http://jappler.com/blog/archive/2008/10/02/debugging-ie-6-on-a-mac#comments</comments>
		<pubDate>Thu, 02 Oct 2008 15:01:02 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.jappler.com/?p=948</guid>
		<description><![CDATA[What is worse than debugging your web application for IE 6? Debugging your web application on IE 6 when you have a Mac and have to launch Windows&#8230;or wait, do you? If you do not want to run Parallels or something similar &#8211; check out ies4osx. It is dependent on Darwine so make sure you [...]]]></description>
			<content:encoded><![CDATA[<p>What is worse than debugging your web application for IE 6?  Debugging your web application on IE 6 when you have a Mac and have to launch Windows&#8230;or wait, do you? If you do not want to run <a href="http://www.parallels.com/">Parallels</a> or something similar &#8211; check out <a href="http://www.kronenberg.org/ies4osx/">ies4osx</a>. It is dependent on <a href="http://www.kronenberg.org/darwine/">Darwine</a> so make sure you have that installed too. Ah&#8230;now I can debug a little more easily.</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2008/10/02/debugging-ie-6-on-a-mac/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using !important With CSS</title>
		<link>http://jappler.com/blog/archive/2008/05/08/using-important-with-css</link>
		<comments>http://jappler.com/blog/archive/2008/05/08/using-important-with-css#comments</comments>
		<pubDate>Thu, 08 May 2008 16:36:23 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[debugging]]></category>

		<guid isPermaLink="false">http://www.jappler.com/?p=855</guid>
		<description><![CDATA[I am not a &#8220;quick fix&#8221; or &#8220;work around&#8221; type of person. When a CSS debugging project comes my way I look first at fixing the problem systemically vs. applying the quick fix. Recently though I was brought into a project with an insane amount of CSS and conflicting styles all over the place. Since [...]]]></description>
			<content:encoded><![CDATA[<p>I am not a &#8220;quick fix&#8221; or &#8220;work around&#8221; type of person.  When a  CSS debugging project comes my way I look first at fixing the problem systemically vs. applying the quick fix.  Recently though I was brought into a project with an insane amount of CSS and conflicting styles all over the place.  Since I did not have ample time to fix the issues systemically (this was a super stat job)  I was forced to use something that would take precedence over the problematic styles already in place to quickly fix the issues.</p>
<p>If you have worked with CSS before I am sure you have seen &#8220;!important&#8221; used but probably were not really sure what it was.  I ended up using a &#8220;fixes.css&#8221; style sheet which was called in after all the other style sheets and then using &#8220;!important&#8221; with the styles I needed to correct (override).  This was very helpful and if you ever run into a similar situation or have a certain style that you cannot seem to figure out why something is not showing up (&#8220;I set this to have a margin-bottom:20px; but there is no margin at all&#8221;) try putting in the !important (margin-bottom:20px !important;) and see if that helps.</p>
<p>More information on !important: <a href="http://www.w3.org/TR/REC-CSS2/cascade.html#cascading-order">http://www.w3.org/TR/REC-CSS2/cascade.html#cascading-order</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2008/05/08/using-important-with-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>check php syntax errors before committing changes.</title>
		<link>http://jappler.com/blog/archive/2008/02/05/check-php-syntax-errors-before-committing-changes</link>
		<comments>http://jappler.com/blog/archive/2008/02/05/check-php-syntax-errors-before-committing-changes#comments</comments>
		<pubDate>Wed, 06 Feb 2008 04:23:13 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2008/02/05/check-php-syntax-errors-before-committing-changes</guid>
		<description><![CDATA[I learned an important and valuable lesson today. Before committing code to a live server, always run: php &#8211; l filename.php to check for syntax errors if you cannot view the file beforehand. Enough said.]]></description>
			<content:encoded><![CDATA[<p>I learned an important and valuable lesson today.  Before committing code to a live server, always run: php &#8211; l filename.php to check for syntax errors if you cannot view the file beforehand.  Enough said.</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2008/02/05/check-php-syntax-errors-before-committing-changes/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jappler.com wordpress update.</title>
		<link>http://jappler.com/blog/archive/2007/09/21/japplercom-wordpress-update</link>
		<comments>http://jappler.com/blog/archive/2007/09/21/japplercom-wordpress-update#comments</comments>
		<pubDate>Fri, 21 Sep 2007 20:58:56 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[jappler.com]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[wordpress updates]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2007/09/21/japplercom-wordpress-update</guid>
		<description><![CDATA[I wrote a detailed process on how I upgraded and cleaned out jappler.com to go from WordPress 2.2 to WordPress 2.3. If anyone is interested in the process, check out my &#8220;Updating from WordPress 2.2 to 2.3&#8221; blog post on my company blog.]]></description>
			<content:encoded><![CDATA[<p>I wrote a detailed process on how I upgraded and cleaned out jappler.com to go from WordPress 2.2 to WordPress 2.3.  If anyone is interested in the process, check out my &#8220;<a href="http://www.sandboxdev.com/wordpress/2007/09/21/updating-from-wordpress-22-to-23.php">Updating from WordPress 2.2 to 2.3</a>&#8221; blog post on <a href="http://www.sandboxdev.com/blog/">my company blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2007/09/21/japplercom-wordpress-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Weekend Full of Learning</title>
		<link>http://jappler.com/blog/archive/2006/10/02/a-weekend-full-of-learning</link>
		<comments>http://jappler.com/blog/archive/2006/10/02/a-weekend-full-of-learning#comments</comments>
		<pubDate>Mon, 02 Oct 2006 11:27:45 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.jappler.com/blog/archive/2006/10/02/a-weekend-full-of-learning.php</guid>
		<description><![CDATA[What a crazy and full weekend! Many thanks to Demitrious for helping me out this weekend with PHP. If you are a beginner, check out Demtrious&#8217;s article: Poor Man&#8217;s Debugger. This article helped me greatly over the past weekend and I feel like I now have a good handle on what to do when things [...]]]></description>
			<content:encoded><![CDATA[<p>What a crazy and full weekend!  Many thanks to <a href="http://blog.apokalyptik.com/">Demitrious</a> for helping me out this weekend with <a href="http://www.php.net">PHP</a>.  If you are a beginner, check out Demtrious&#8217;s article: <a href="http://ww.phpb.com/columns/demitrious/debugger">Poor Man&#8217;s Debugger</a>.  This article helped me greatly over the past weekend and I feel like I now have a good handle on what to do when things go unexpectedly.</p>
<p>I spent Sunday working with javascript for another project and found some of <a href="http://www.webmonkey.com/webmonkey/programming/javascript/">the javascript articles on webmonkey</a> to be a big help.</p>
<p>Go PSU and Bears!</p>
<p>[tags]PHP, debugging, Javascript[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://jappler.com/blog/archive/2006/10/02/a-weekend-full-of-learning/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching using disk
Object Caching 457/504 objects using disk

Served from: jappler.com @ 2010-09-10 14:54:15 -->