SlideShare une entreprise Scribd logo
1  sur  94
Télécharger pour lire hors ligne
Intermediate Perl Testing
(or, Let’s Not Make A Mess Of Things, Shall We?)




                 Josh Heumann
Have you seen these tests?
is_deeply(
    get_recipes(),
    [qw/ lemon_curd pancakes enchiladas /],
    ‘all of the recipes are there’
);

SKIP: {
    skip ‘No ingredients’, 2, if @ingredients < 1;
    is( $number, 23, ‘and the number is 23’ );
};


dies_ok(
    sub { eat_cake },
    qr/Cake isn’t chocolate/,
    ‘only eat chocolate cake’
);
What this talk will do
What this talk won’t do
Why
Have
Altercations
That
Encourage
Violent
Excitable
Rants?
Why
Have
Altercations
That
Encourage
Violent
Excitable
Rants?
Make them easy to run
Run early, run often
Blackbox testing
Blackbox testing
Blackbox testing
Glassbox testing
Whatever.
Testing scripts

#!/usr/bin/perl

use strict;
use warnings;

get_jiggy();

sub get_jiggy {
    # details, details
}
Testing scripts
__FILE__
Testing scripts
__FILE__


                 .pl
              gy
            g
          ji
       t_
     ge
 in/
b
Testing scripts
$0
Testing scripts
$0
AKA $PROGRAM_NAME
Testing scripts
$0
AKA $PROGRAM_NAME


                         pl
                      y.
                    g
              jig
            _
          et
        /g
     in
  b
Testing scripts
$0
AKA $PROGRAM_NAME


                        psl.t
                      .
                     ys
                   ge
               jggin
                i
             ig
            j_
          et
        t_
      es g
   /bin/
    t
 t
Testing scripts
     $0                    __FILE__


                      !=
                      <>
                   s.tne                       .pl
                 es ≠
               in                           gy
            igg                           g
                                        ji
          j                          t_
       t_                          ge
    es
  t                            in/
t/                         b
Testing scripts
    $0                 __FILE__
                  eq
                  ==


                 .pl
              gy                           .pl
            g
          ji                            gy
       t_                             g
                                    ji
     ge                          t_
 in/                           ge
b                          in/
                       b
Testing scripts
#!/usr/bin/perl

use strict;
use warnings;

get_jiggy() if $0 eq __FILE__;


sub get_jiggy {
    # details, details
}
Testing scripts
#!/usr/bin/perl

use strict;
use warnings;
use Test::More tests => 42;

require_ok( ‘bin/get_jiggy.pl’ );

can_ok( ‘main’, ‘get_jiggy’, ‘jigginess achieved’ );

# test the details
Code coverage
Code coverage

cover -test
Code coverage

cover -test

./Build testcover
Code coverage

cover -test

./Build testcover

HARNESS_PERL_SWITCHES=-MDevel::Cover make test
Demonstration time!
Version control
Version control
Version control
Testing and version control




        ?
Testing and version control
Testing and version control
Testing and version control
Testing and version control
Testing and version control
Testing and version control
Testing and version control
Testing and version control
Testing and version control
Testing and version control
Testing and version control
Version control
Reusing test code
Reusing test code

for(qw/ is_hilarious is_annoying is_bewildering /) {
    can_ok( Child, $_ );
    is( Child->$_, 1, “...and the child $_” );
}
Reusing test code
sub _test_accessor {
    my ( $method ) = @_;

    my $getter = quot;get_$methodquot;;
    my $setter = quot;set_$methodquot;;

    can_ok( 'Cat', $getter );
    can_ok( 'Cat', $setter );

    is( Cat->new->$getter, undef, quot;...and $method is
undef to start withquot; );
    ....
}

_test_accessor( ‘sleep’ );
Reusing test code
sub _test_accessor {
    my ( $method ) = @_;

    my $getter = quot;get_$methodquot;;
    my $setter = quot;set_$methodquot;;

    can_ok( 'Cat', $getter );
    can_ok( 'Cat', $setter );

    is( Cat->new->$getter, undef, quot;...and $method is
undef to start withquot; );
    ....
}

_test_accessor( $_ ) for(qw/ sleep eat purr /);
Whatever.
Custom test libraries
Custom test libraries
$ prove t
t/00_basics....ok
All tests successful.
Files=1, Tests=377, 1 wallclock secs ( 0.17 cusr +
0.02 csys = 0.19 CPU)
Custom test libraries
package Test::Clowns;
use Test::Builder;
use Perl6::Junction qw/ any /;

my $Test = Test::Builder->new;

sub test_clowns {
    my($clown, $name) = @_;
    $clown->hop_out_of_a_very_small_car();

    $Test->ok( $clown->can_juggle, $name );
    $Test->ok( $clown->has_pies,   $name );
    if( any($clown->faces) eq ‘scary’ ) {
        $Test->fail( “clowns shouldn’t be scary” );
    }
    $Test->ok( $clown->is_scary, $name );
}
Custom test libraries
use TAP::Harness;
my $harness = TAP::Harness->new(
    verbose => 1,
    lib     => [ 'lib', 'blib/lib' ],
);
$harness->runtests(@tests);




                        +
Fixtures
our %clients = (
    1001 => {
        client_id         =>   1001,
        dob               =>   '1926-05-25',
        fname             =>   'Miles',
        lname             =>   'Davis',
        sex               =>   'Male',
        race              =>   'Black',
        marital_status    =>   'Divorced',
        substance_abuse   =>   'Yes',
        alcohol_abuse     =>   'Yes',
        gambling_abuse    =>   'Unknown',
        religion          =>   'Muslim',
    },
1002 => {
        client_id         =>   1002,
        dob               =>   '1922-04-21',
        fname             =>   'Charles',
        lname             =>   'Mingus',
        sex               =>   'Male',
        race              =>   'Other',
        marital_status    =>   'Married',
        substance_abuse   =>   'No',
        alcohol_abuse     =>   'Yes',
        gambling_abuse    =>   'Unknown',
        religion          =>   'Buddhist',
    },
    # etc,
    # etc,
    # etc.
);
for my $client_id (keys %clients) {
    Test::Client->new(
        id => $clients{ $client_id }
    )->save;
}
for my $client_id (keys %clients) {
    Test::Client->new(
        id => $clients{ $client_id }
    )->save;
}

Test::Client->new(1001)->save;
sub create_test_client {




    Test::Client->new( %args )->save;
}

create_test_client(
    id => 2,
    dob => undef,
);
sub create_test_client {

    $args{ dob } ||= ‘1970-01-01’;


    Test::Client->new( %args )->save;
}

create_test_client(
    id => 2,
    dob => undef,
);
sub create_test_client {

    $args{ dob } ||= ‘1970-01-01’;
    $args{ shrink } ||= create_test_shrink;

    Test::Client->new( %args )->save;
}

create_test_client(
    id => 2,
    dob => undef,
);
Mocking
Mocking
Mocking
Test::MockObject
Mocking
Test::MockObject

Test::MockClass
Mocking
Test::MockObject

Test::MockClass

Sub::Override
Mocking
Test::MockDBI

Test::Mock::LWP

Test::Mock::HTTP::Request
Test::Mock::HTTP::Response
Selenium
How to
win friends
and
convince
others to
test
Speeding up tests
Where to start?
Review
Review
Make your tests easy to run
Review
Make your tests easy to run

Run them often
Review
Make your tests easy to run

Run them often

Test your modules
Review
Make your tests easy to run

Run them often

Test your modules

Test your scripts
Review
Make your tests easy to run

Run them often

Test your modules

Test your scripts

Improve your code coverage with Devel::Cover
Review
Make your tests easy to run

Run them often

Test your modules

Test your scripts

Improve your code coverage with Devel::Cover

Use version control, and check in often
Review
Make your tests easy to run

Run them often

Test your modules

Test your scripts

Improve your code coverage with Devel::Cover

Use version control, and check in often

Reuse your test code
Review
Review
Make a test library
Review
Make a test library

Use fixtures
Review
Make a test library

Use fixtures

Mock when necessary
Review
Make a test library

Use fixtures

Mock when necessary

Test quietly if you don’t have support
Review
Make a test library

Use fixtures

Mock when necessary

Test quietly if you don’t have support

Start with the most-changed part of the code
Questions?
Thanks!


    • Michael Schwern
    • Kirrily Robert
    • OSDC
    • realestate.com.au
    • you
Josh Heumann
josh@joshheumann.com

Contenu connexe

Dernier

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 

Dernier (20)

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 

En vedette

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

En vedette (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Intermediate Perl Testing (or, Let's Not Make A Mess Of Things, Shall We?)