• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4251 shaares
 
Filters
6 results tagged debugger

GitHub - spiside/pdb-tutorial: A simple tutorial about effectively using pdb

QRCode

A simple tutorial about effectively using pdb. Contribute to spiside/pdb-tutorial development by creating an account on GitHub.

https://github.com/spiside/pdb-tutorial
June 17, 2025 at 1:24:17 PM EDT *
python programming debugger
FILLER

Ricardo Signes (‎rjbs‎) - ‎1.21 Gigawatts‎

QRCode

You should write your own debugger!

~25:00

https://speakerdeck.com/rjbs/1-dot-21-gigawatts?slide=174

https://www.youtube.com/watch?v=IG425RMEkRo
March 12, 2022 at 8:49:22 PM EST *
perl debugger
FILLER

Ricardo Signes - The Perl 5 Debugger: Wuh?

QRCode

95% of all debugging is print statements, but once or twice a year, a problem shows up that is best attached with perl5db.pl, the venerable core Perl 5 debugger. Like a light saber, it dates back to a forgotten time and its operations are poorly understood. Unlike a light saber, it is not elegant, and nobody aspires to use it. Also, it can cut limbs right off. Still, it’s a very useful multi-purpose tool, and if you learn how to use it, it can save a lot of time and clear up a lot of mysteries.

This talk will cover what the debugger is, how to use it at a basic and intermediate level, how to customize it, and at least one or two stories about how it is very, very awful.

https://www.youtube.com/watch?v=LtAGbUYTnR0
February 25, 2022 at 2:22:41 PM EST *
perl debugger
FILLER

Debugging with Perl

QRCode

Eugen Konkov — 45 minutes 🐪

Interactive debugging.

This talk about how to catch and report perl application exceptions.

An example based on Mojolicious web server will be given.
I will show how to reproduce exceptions and debug them.
The example will describe how to access and view data at any stack frame.

Also I will show how to implement new debugger commands and how to debug them (yeah, you understand right: how to debug perl debugger while debugging)

This talk will about my second proprietary debugger. It is full rewrite of first version: https://github.com/KES777/Devel-DebugHooks

https://perlcon.eu/talk/34
May 21, 2021 at 2:57:13 PM EDT *
perl mojolicious debugger
FILLER

Easy Data::Printer in the perl debugger | Chisel [blogs.perl.org]

QRCode

If you want to try it add the following to $HOME/.perldb:

$DB::alias{dp} = 's/dp/DB::dp/';
sub DB::dp {
    eval {
        require Data::Printer;
        Data::Printer->import(colored=>1,use_prototypes=>0);
    };
    if ($@=~/Can't locate/) {
        print 'Data::Printer is not installed';
        return;
    };
    print Data::Printer::p(@_);
}
http://blogs.perl.org/users/chisel/2012/03/easy-dataprinter-in-the-perl-debugger.html
March 17, 2021 at 10:40:10 AM EDT *
perl debugger
FILLER

App::Stacktrace - Stack trace - metacpan.org

QRCode

perl-stacktrace prints Perl stack traces of Perl threads for a given Perl process. For each Perl frame, the full file name and line number are printed.

https://metacpan.org/pod/App::Stacktrace
July 8, 2019 at 11:15:01 AM EDT *
perl debugger linux
FILLER
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community