<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Firebug Tutorial - Logging, Profiling and CommandLine (Part I)</title>
	<atom:link href="http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i</link>
	<description>Sharing our knowledge</description>
	<pubDate>Fri, 08 Aug 2008 01:18:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: siddhartha</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-75062</link>
		<dc:creator>siddhartha</dc:creator>
		<pubDate>Wed, 25 Jun 2008 08:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-75062</guid>
		<description>It will help you to improve JavaScript coding.

Thanks
Sid</description>
		<content:encoded><![CDATA[<p>It will help you to improve JavaScript coding.</p>
<p>Thanks<br />
Sid</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web开发工具大集合——每个浏览器都有份的！ &#124; 网生代</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-62483</link>
		<dc:creator>Web开发工具大集合——每个浏览器都有份的！ &#124; 网生代</dc:creator>
		<pubDate>Mon, 12 May 2008 16:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-62483</guid>
		<description>[...] 萤火虫 是Firefox上数一数二的好扩展，可作为web developer toolbar的补充工具。你可以用Firebug在线检查、监控、编辑网页上的HTML、CSS、JavaScript代码。他还提供一个脚本控制台，让JS编辑编的更简单。控制台对象包含了一大堆选项，允许你输出代码到控制台然后进行调试。Michael Sync提供一个更高级的操作指南，它可以知道你详尽地设置Firebug的选项。另外，Firebug上有一个带宽监视器，能让你清楚地看到某些代码占了多少带宽。 Firebug 下载地址：http://www.getfirebug.com/ [...]</description>
		<content:encoded><![CDATA[<p>[...] 萤火虫 是Firefox上数一数二的好扩展，可作为web developer toolbar的补充工具。你可以用Firebug在线检查、监控、编辑网页上的HTML、CSS、JavaScript代码。他还提供一个脚本控制台，让JS编辑编的更简单。控制台对象包含了一大堆选项，允许你输出代码到控制台然后进行调试。Michael Sync提供一个更高级的操作指南，它可以知道你详尽地设置Firebug的选项。另外，Firebug上有一个带宽监视器，能让你清楚地看到某些代码占了多少带宽。 Firebug 下载地址：http://www.getfirebug.com/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Designer</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-46771</link>
		<dc:creator>Designer</dc:creator>
		<pubDate>Thu, 20 Mar 2008 21:37:57 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-46771</guid>
		<description>Very nice tutorial. Thanks for sharing this!</description>
		<content:encoded><![CDATA[<p>Very nice tutorial. Thanks for sharing this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sync &#187; Liz called me an SOB</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-32177</link>
		<dc:creator>Michael Sync &#187; Liz called me an SOB</dc:creator>
		<pubDate>Sun, 20 Jan 2008 06:03:33 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-32177</guid>
		<description>[...] Firebug Tutorial - Logging, Profiling and CommandLine (Part I)  [...]</description>
		<content:encoded><![CDATA[<p>[...] Firebug Tutorial - Logging, Profiling and CommandLine (Part I)  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sync</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-25977</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Wed, 02 Jan 2008 01:40:39 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-25977</guid>
		<description>Yeah. there is no console in IE. So if you are writing the code, you should write like that 

&lt;code&gt;
 &lt;b&gt;if(window.console){ &lt;/b&gt;
    console.log("test");
 } 
&lt;/code&gt;

otherwise, you will get the error.</description>
		<content:encoded><![CDATA[<p>Yeah. there is no console in IE. So if you are writing the code, you should write like that </p>
<p><code><br />
 <b>if(window.console){ </b><br />
    console.log(&#8221;test&#8221;);<br />
 }<br />
</code></p>
<p>otherwise, you will get the error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jo</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-25898</link>
		<dc:creator>jo</dc:creator>
		<pubDate>Tue, 01 Jan 2008 21:06:52 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-25898</guid>
		<description>Mike, thanks so much for the illuminating tutorial. Very very useful.
I have a question though. At work I also have to test the pages on IE.  How does the console command behave in IE since it does not have Firebug?</description>
		<content:encoded><![CDATA[<p>Mike, thanks so much for the illuminating tutorial. Very very useful.<br />
I have a question though. At work I also have to test the pages on IE.  How does the console command behave in IE since it does not have Firebug?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-20134</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 17 Dec 2007 05:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-20134</guid>
		<description>(retry) I see this in my console:

My height is &#60;strong&#62;1.8542... etc.</description>
		<content:encoded><![CDATA[<p>(retry) I see this in my console:</p>
<p>My height is &lt;strong&gt;1.8542&#8230; etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-20132</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 17 Dec 2007 05:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-20132</guid>
		<description>Thanks for this. It's very useful. I don't see HTML elements take effect in my console output. I see the tags instead:

My height is &lt;strong&gt;1.8542&lt;/strong&gt; m.

I tried to ensure something in my Firefox profile wasn't causing this, but even using a fresh user profile creates the same result. Tags in the console are certainly not essential. I wonder if their support was dropped or if I had perhaps overlooked something. The official Firebug site makes no mention of HTML tags in console output.

Thanks once more. Onto part two!</description>
		<content:encoded><![CDATA[<p>Thanks for this. It&#8217;s very useful. I don&#8217;t see HTML elements take effect in my console output. I see the tags instead:</p>
<p>My height is <strong>1.8542</strong> m.</p>
<p>I tried to ensure something in my Firefox profile wasn&#8217;t causing this, but even using a fresh user profile creates the same result. Tags in the console are certainly not essential. I wonder if their support was dropped or if I had perhaps overlooked something. The official Firebug site makes no mention of HTML tags in console output.</p>
<p>Thanks once more. Onto part two!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blog-thing : How to Profile Greasemonkey Scripts with Firebug</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-13850</link>
		<dc:creator>blog-thing : How to Profile Greasemonkey Scripts with Firebug</dc:creator>
		<pubDate>Sat, 24 Nov 2007 19:18:35 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-13850</guid>
		<description>[...] Sync has a tutorial on using Firebug that describes the console.time() and console.profile() functions. The official website has a nice list of Firebug keyboard shortcuts [...]</description>
		<content:encoded><![CDATA[<p>[...] Sync has a tutorial on using Firebug that describes the console.time() and console.profile() functions. The official website has a nice list of Firebug keyboard shortcuts [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 行搏客 &#187; 2007年9月最佳</title>
		<link>http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-11726</link>
		<dc:creator>行搏客 &#187; 2007年9月最佳</dc:creator>
		<pubDate>Fri, 16 Nov 2007 16:54:21 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/09/firebug-tutorial-logging-profiling-and-commandline-part-i#comment-11726</guid>
		<description>[...] Firebug Tutorial - Logging, Profiling and CommandLine Firebug is probably the first choice when it comes to debugging JavaScript-based applications. This article gives a deep insight into the features of Firebug and shows how one can use the Console in web projects. [...]</description>
		<content:encoded><![CDATA[<p>[...] Firebug Tutorial - Logging, Profiling and CommandLine Firebug is probably the first choice when it comes to debugging JavaScript-based applications. This article gives a deep insight into the features of Firebug and shows how one can use the Console in web projects. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
