<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: gaudily colorized gdb backtraces! woo!</title>
	<atom:link href="http://www.visophyte.org/blog/2009/03/04/gaudily-colorized-gdb-backtraces-woo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.visophyte.org/blog/2009/03/04/gaudily-colorized-gdb-backtraces-woo/</link>
	<description>Andrew Sutherland writes things but (almost) always includes pictures to look at.</description>
	<lastBuildDate>Tue, 07 Feb 2012 09:12:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: visophyte: data made shiny :: gaudily syntax-highlighted code listings in (archer) gdb</title>
		<link>http://www.visophyte.org/blog/2009/03/04/gaudily-colorized-gdb-backtraces-woo/comment-page-1/#comment-2037</link>
		<dc:creator>visophyte: data made shiny :: gaudily syntax-highlighted code listings in (archer) gdb</dc:creator>
		<pubDate>Sat, 25 Apr 2009 06:36:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.visophyte.org/blog/?p=187#comment-2037</guid>
		<description>[...] syntax-highlighted code listing in gdb joins the gaudy gdb plugin family!  (Other members include gaudily colorized backtraces, which you can also see in the bottom of the screenshot.)  This, of course, requires gdb with [...]</description>
		<content:encoded><![CDATA[<p>[...] syntax-highlighted code listing in gdb joins the gaudy gdb plugin family!  (Other members include gaudily colorized backtraces, which you can also see in the bottom of the screenshot.)  This, of course, requires gdb with [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Sutherland</title>
		<link>http://www.visophyte.org/blog/2009/03/04/gaudily-colorized-gdb-backtraces-woo/comment-page-1/#comment-800</link>
		<dc:creator>Andrew Sutherland</dc:creator>
		<pubDate>Thu, 26 Mar 2009 22:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.visophyte.org/blog/?p=187#comment-800</guid>
		<description>Thanks, Thiago.

I definitely believe this could be implemented differently... it would be horrible if colorized versions of commands always ended up being hacked up variants of the base command with colorization added in.

Of course, my differently would probably be a wildly over-engineered approach where everything is emitted to a stream as a type, which by default just does a simple str().  The colorizing output would look at the types as they went by and wrap the str() in the color assigned to the item.  This would allow for UI&#039;s where the semantic information is not lost on display, allowing useful right-click info, etc.

The problem with that approach, in my mind, is that it seems contrary to the existing pretty-printer mechanism.  I&#039;d expect Tom Tromey&#039;s solution is probably far more pragmatic and likely to be adopted :)</description>
		<content:encoded><![CDATA[<p>Thanks, Thiago.</p>
<p>I definitely believe this could be implemented differently&#8230; it would be horrible if colorized versions of commands always ended up being hacked up variants of the base command with colorization added in.</p>
<p>Of course, my differently would probably be a wildly over-engineered approach where everything is emitted to a stream as a type, which by default just does a simple str().  The colorizing output would look at the types as they went by and wrap the str() in the color assigned to the item.  This would allow for UI&#8217;s where the semantic information is not lost on display, allowing useful right-click info, etc.</p>
<p>The problem with that approach, in my mind, is that it seems contrary to the existing pretty-printer mechanism.  I&#8217;d expect Tom Tromey&#8217;s solution is probably far more pragmatic and likely to be adopted <img src='http://www.visophyte.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thiago Jung Bauerman</title>
		<link>http://www.visophyte.org/blog/2009/03/04/gaudily-colorized-gdb-backtraces-woo/comment-page-1/#comment-799</link>
		<dc:creator>Thiago Jung Bauerman</dc:creator>
		<pubDate>Thu, 26 Mar 2009 20:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.visophyte.org/blog/?p=187#comment-799</guid>
		<description>This is an awesome feature! I&#039;d like to encourage you to post your script to the Archer mailing list, or even GDB mailing list itself (even though I&#039;m sure your patch uses bits from the Python support which are not integrated upstream yet). It&#039;d be really nice to be able to ship a coloured backtrace in GDB and Archer!

PS1: We are still sorting out how to actually ship Python code in an official GDB release, so that may not happen before 7.0 goes out.

PS2: I don&#039;t think we&#039;ll be able to merge upstream everything you need to implement a backtrace command in Python, so it&#039;s not likely your script would work/ship with GDB 7.0, but most certainly would with GDB 7.1. But who knows, perhaps we can merge all the dependencies in time for 7.0... I&#039;ll certainly try to do that.

PS3: Tom Tromey also saw this, and he suggested that a coloured backtrace could be implemented a little bit differently, so you may expect some rework before your code would enter the Archer branch and GDB upstream...</description>
		<content:encoded><![CDATA[<p>This is an awesome feature! I&#8217;d like to encourage you to post your script to the Archer mailing list, or even GDB mailing list itself (even though I&#8217;m sure your patch uses bits from the Python support which are not integrated upstream yet). It&#8217;d be really nice to be able to ship a coloured backtrace in GDB and Archer!</p>
<p>PS1: We are still sorting out how to actually ship Python code in an official GDB release, so that may not happen before 7.0 goes out.</p>
<p>PS2: I don&#8217;t think we&#8217;ll be able to merge upstream everything you need to implement a backtrace command in Python, so it&#8217;s not likely your script would work/ship with GDB 7.0, but most certainly would with GDB 7.1. But who knows, perhaps we can merge all the dependencies in time for 7.0&#8230; I&#8217;ll certainly try to do that.</p>
<p>PS3: Tom Tromey also saw this, and he suggested that a coloured backtrace could be implemented a little bit differently, so you may expect some rework before your code would enter the Archer branch and GDB upstream&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maxauthority</title>
		<link>http://www.visophyte.org/blog/2009/03/04/gaudily-colorized-gdb-backtraces-woo/comment-page-1/#comment-608</link>
		<dc:creator>maxauthority</dc:creator>
		<pubDate>Thu, 05 Mar 2009 16:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.visophyte.org/blog/?p=187#comment-608</guid>
		<description>PS: If somebody would just do the same to &quot;apt&quot; - i find it impossible to use apt as quickly as gentoo&#039;s good old emerge, as it lacks colors.</description>
		<content:encoded><![CDATA[<p>PS: If somebody would just do the same to &#8220;apt&#8221; &#8211; i find it impossible to use apt as quickly as gentoo&#8217;s good old emerge, as it lacks colors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maxauthority</title>
		<link>http://www.visophyte.org/blog/2009/03/04/gaudily-colorized-gdb-backtraces-woo/comment-page-1/#comment-607</link>
		<dc:creator>maxauthority</dc:creator>
		<pubDate>Thu, 05 Mar 2009 16:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.visophyte.org/blog/?p=187#comment-607</guid>
		<description>WoW!

That is so awesome, i have dreamed of such a thing for months :)
The problem is, that I don&#039;t use gdb so often to be sure, if i&#039;ll take the work needed to set that up, but it&#039;s really great! I wished gdb supported an --color option, as it&#039;s really impossible to grep monochrome text quickly :(</description>
		<content:encoded><![CDATA[<p>WoW!</p>
<p>That is so awesome, i have dreamed of such a thing for months <img src='http://www.visophyte.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
The problem is, that I don&#8217;t use gdb so often to be sure, if i&#8217;ll take the work needed to set that up, but it&#8217;s really great! I wished gdb supported an &#8211;color option, as it&#8217;s really impossible to grep monochrome text quickly <img src='http://www.visophyte.org/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

