Sponsored Content
The Lounge What is on Your Mind? Post a Cool Music Video (Part IV) Post 302256167 by DukeNuke2 on Saturday 8th of November 2008 10:28:47 AM
Old 11-08-2008
Steve Lukather "Ever Changing Times"

 

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

Cool YouTube Video: Here Comes Another Bubble - The Richter Scales!

You will like this :) fi4fzvQ6I-o (2 Replies)
Discussion started by: Neo
2 Replies

2. What is on Your Mind?

Post a Cool Music Video (Part I)

See How to use YouTube tags for instructions on how to post a video from YouTube. While My Guitar Gently Weeps by George Harrison and Friends 0ITrQXES8kU (16 Replies)
Discussion started by: Perderabo
16 Replies

3. What is on Your Mind?

Post a Cool Music Video (Part II)

This thread is a continuation of Post a Cool Music Video (Part I). See How to use YouTube tags for instructions on how to post a video from YouTube. And I will start things off with.... Throwing Fire At The Sun by Heather Nova QXq44BPL-wo (11 Replies)
Discussion started by: Perderabo
11 Replies

4. What is on Your Mind?

Post a Cool Music Video (Part III)

This thread is a continuation of Post a Cool Music Video (Part I). See How to use YouTube tags for instructions on how to post a video from YouTube. And I will start things off with.... Operator by Jim Croce A2iS8XctJKo (9 Replies)
Discussion started by: Perderabo
9 Replies

5. What is on Your Mind?

Cool video

Grand Central Big Freeze jwMj3PJDxuo It looks as tho it's movie scene from M. Night Shyamalan :b: (0 Replies)
Discussion started by: sparcguy
0 Replies

6. What is on Your Mind?

Post a Cool Music Video (Part V)

This thread is a continuation of Post a Cool Music Video (Part I). See How to use YouTube tags for instructions on how to post a video from YouTube. And I will start things off with.... Octavarium by Dream Theater xK3qylwd-M0 (9 Replies)
Discussion started by: Perderabo
9 Replies

7. What is on Your Mind?

Post a Cool Music Video (Part VII)

We post videos by linking them in from youtube. Videos from other sites are not absolutely forbidden, but we know that youtube won't tolerate videos that we won't tolerate. We have instructions on how to post youtube videos: How to use youtube tags. Please follow the format in those instructions to... (11 Replies)
Discussion started by: zxmaus
11 Replies

8. UNIX for Dummies Questions & Answers

Creating Music Video

i'm flex developer and i'm not familiar with this world. i need to make out of mp3, bitmaps , flv, text a music clip. can i do it with shell? can i use some video editing program on the server ? thanks in advance. (0 Replies)
Discussion started by: sigalmaria
0 Replies

9. What is on Your Mind?

Post a Cool Music Video (Part VI)

A few years ago we had a series of threads where we posted music videos. Let's try another one and see what happens. :) We post videos by linking them in from youtube. Videos from other sites are not absolutely forbidden, but we know that youtube won't tolerate videos that we won't... (18 Replies)
Discussion started by: Perderabo
18 Replies

10. What is on Your Mind?

Post a Cool Music Video (Part VIII)

We've all heard this, right? 9bZkp7q19f0 Post some cool music...! You may want to review the earlier threads:Part I Part II Part III Part IV Part V Part VI Part VII (3 Replies)
Discussion started by: Scott
3 Replies
NYTPROFHTML(1p) 					User Contributed Perl Documentation					   NYTPROFHTML(1p)

NAME
nytprofhtml - Generate reports from Devel::NYTProf data SYNOPSIS
Typical usage: $ perl -d:NYTProf some_perl_app.pl $ nytprofhtml --open Options synopsis: $ nytprofhtml [-h] [-d] [-o <output directory>] [-f <input file>] [--open] DESCRIPTION
Devel::NYTProf is a powerful feature-rich perl source code profiler. See Devel::NYTProf for details. "nytprofhtml" generates a set of html reports from the data collected by Devel::NYTProf. The reports include dynamic runtime analysis wherein each line and each file is analyzed based on the performance of the other lines and files. As a result, you can quickly find the slowest module and the slowest line in a module. Slowness is measured in three ways: total calls, total time and average time per call. Coloring is based on absolute deviations from the median. See <http://en.wikipedia.org/wiki/Median_absolute_deviation> for more details. That might sound complicated, but in reality you can just run the command and enjoy your report! COMMAND-LINE OPTIONS -f, --file <filename> Specifies the location of the file generated by Devel::NYTProf. Default: ./nytprof.out -o, --out <dir> The directory in which to place the generated report files. Default: ./nytprof/ -d, --delete Purge any existing contents of the report output directory. -l, --lib <dir> Add a path to the beginning of @INC to help nytprofhtml find the source files used by the code. Should not be needed in practice. --open Make your web browser visit the report after it has been generated. -h, --help Print the help message SAMPLE OUTPUT
You can see a complete report for a large application (over 200 files and 2000 subroutines) at https://www.me.com/ix/tim.bunce/Public/perl/nytprof/nytprof-perlcritic-demo/index.html <https://www.me.com/ix/tim.bunce/Public/perl/nytprof/nytprof-perlcritic-demo/index.html> The report was generated by profiling perlcritic 1.106 checking it's own source code using perl 5.12.1. DIAGNOSTICS
"Unable to open '... (autosplit into ...)'" The profiled application executed code in a module that used AutoLoader to load the code from a separate .al file. NYTProf automatically recognises this situation and tries to determine the 'parent' module file so it can associate the profile data with it. In order to do that the parent module file must already be 'known' to NYTProf, typically by already having some code profiled. You're only likely to see this warning if you're using the "start" option to start profiling after compile-time. The effect is that times spent in autoloaded subs won't be associated with the parent module file and you won't get annotated reports for them. You can avoid this by using the default "start=begin" option, or by ensuring you execute some non-autoloaded code in the parent module, while the profiler is running, before an autoloaded sub is called. HISTORY
A bit of history and a shameless plug... NYTProf stands for 'New York Times Profiler'. Indeed, this module was initially developed from Devel::FastProf by The New York Times Co. to help our developers quickly identify bottlenecks in large Perl applications. The NY Times loves Perl and we hope the community will benefit from our work as much as we have from theirs. Please visit <http://open.nytimes.com>, our open source blog to see what we are up to, <http://code.nytimes.com> to see some of our open projects and then check out <http://nytimes.com> for the latest news! Background Subroutine-level profilers: Devel::DProf | 1995-10-31 | ILYAZ Devel::AutoProfiler | 2002-04-07 | GSLONDON Devel::Profiler | 2002-05-20 | SAMTREGAR Devel::Profile | 2003-04-13 | JAW Devel::DProfLB | 2006-05-11 | JAW Devel::WxProf | 2008-04-14 | MKUTTER Statement-level profilers: Devel::SmallProf | 1997-07-30 | ASHTED Devel::FastProf | 2005-09-20 | SALVA Devel::NYTProf | 2008-03-04 | AKAPLAN Devel::Profit | 2008-05-19 | LBROCARD Devel::NYTProf is a (now distant) fork of Devel::FastProf, which was itself an evolution of Devel::SmallProf. Adam Kaplan took Devel::FastProf and added html report generation (based on Devel::Cover) and a test suite - a tricky thing to do for a profiler. Meanwhile Tim Bunce had been extending Devel::FastProf to add novel per-sub and per-block timing, plus subroutine caller tracking. When Devel::NYTProf was released Tim switched to working on Devel::NYTProf because the html report would be a good way to show the extra profile data, and the test suite made development much easier and safer. Then he went a little crazy and added a slew of new features, in addition to per-sub and per-block timing and subroutine caller tracking. These included the 'opcode interception' method of profiling, ultra-fast and robust inclusive subroutine timing, doubling performance, plus major changes to html reporting to display all the extra profile call and timing data in richly annotated and cross-linked reports. Steve Peters came on board along the way with patches for portability and to keep NYTProf working with the latest development perl versions. Adam's work is sponsored by The New York Times Co. <http://open.nytimes.com>. Tim's work was partly sponsored by Shopzilla. <http://www.shopzilla.com>. SEE ALSO
Mailing list and discussion at http://groups.google.com/group/develnytprof-dev <http://groups.google.com/group/develnytprof-dev> Public SVN Repository and hacking instructions at http://code.google.com/p/perl-devel-nytprof/ <http://code.google.com/p/perl-devel- nytprof/> Devel::NYTProf, Devel::NYTProf::Reader, nytprofcsv AUTHOR
Adam Kaplan, "<akaplan at nytimes.com>". Tim Bunce, <http://www.tim.bunce.name> and <http://blog.timbunce.org>. Steve Peters, "<steve at fisharerojo.org>". COPYRIGHT AND LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2011-11-15 NYTPROFHTML(1p)
All times are GMT -4. The time now is 06:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy