From bradoaks at gmail.com Fri Aug 21 07:49:47 2009 From: bradoaks at gmail.com (Brad Oaks) Date: Fri, 21 Aug 2009 10:49:47 -0400 Subject: [Raleigh-talk] some links from last night's YAPC review Message-ID: <4A8EB40B.9020802@gmail.com> Here is the page on the wiki where presenters who have made their slides available have linked to them: http://yapc10.org/yn2009/wiki?node=PresentationSlides Here is Josh ben Jore's talk Effective Debugging in pdf format. http://diotalevi.isa-geek.net/~josh/Effective%20Debugging.pdf Pages 21, 25, and 27 were the ones we highlighted last night. The Devel::Trace module can also be turned on and off within your code, if you only want to trace what happens within part of your code. http://search.cpan.org/~mjd/Devel-Trace-0.10/Trace.pm Again, Dan's bash shortcut: perl -d:Trace foo.pl > traceoutput.txt 2>&1 can be shortened to perl -d:Trace foo.pl &> traceoutput.txt