From e69722d7980dc6bcff0cbc00f306cc9206f84e8b Mon Sep 17 00:00:00 2001 From: Marcelo Bukowski de Farias Date: Thu, 10 Feb 2022 13:00:05 -0500 Subject: [PATCH 1/5] Changed 2 files --- emails.pl | 1 + input.pl | 1 + 2 files changed, 2 insertions(+) diff --git a/emails.pl b/emails.pl index d987c3c..2b37cb1 100755 --- a/emails.pl +++ b/emails.pl @@ -12,6 +12,7 @@ sub find_emails { # get all emails from command-line args foreach (@ARGV) { + // changed this file find_emails($_); } diff --git a/input.pl b/input.pl index 8ff6589..5216f26 100644 --- a/input.pl +++ b/input.pl @@ -4,6 +4,7 @@ sub process() { my $url = shift; + // also changed this file my $html = qx{curl --silent $url}; while ($html =~ m/([A-Z0-9+_.-]+@[A-Z0-9.-]+)/gi) { $emails_found{$1}++; From 2c8390f56727391990fed9294b776dc8f885a611 Mon Sep 17 00:00:00 2001 From: Marcelo Bukowski de Farias Date: Thu, 10 Feb 2022 13:00:32 -0500 Subject: [PATCH 2/5] Changed 1 file --- input.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/input.pl b/input.pl index 5216f26..6b16ea8 100644 --- a/input.pl +++ b/input.pl @@ -7,6 +7,7 @@ () // also changed this file my $html = qx{curl --silent $url}; while ($html =~ m/([A-Z0-9+_.-]+@[A-Z0-9.-]+)/gi) { - $emails_found{$1}++; + // changed this file again + $emails_found{$1}++; } } From e626ca9c3f858d3e3784b3f8b72f1f352cbb3172 Mon Sep 17 00:00:00 2001 From: Marcelo Bukowski de Farias Date: Fri, 17 Jun 2022 15:31:53 -0400 Subject: [PATCH 3/5] Changed again --- input.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/input.pl b/input.pl index 6b16ea8..ff00b62 100644 --- a/input.pl +++ b/input.pl @@ -1,5 +1,6 @@ while () { process(trim($_)); + // can you see it, Dave? } sub process() { @@ -7,7 +8,7 @@ () // also changed this file my $html = qx{curl --silent $url}; while ($html =~ m/([A-Z0-9+_.-]+@[A-Z0-9.-]+)/gi) { - // changed this file again + // changed this file again one more time $emails_found{$1}++; } } From c460cf303743e33df534b442ff94740f14bb95f6 Mon Sep 17 00:00:00 2001 From: Marcelo Bukowski de Farias Date: Fri, 17 Jun 2022 15:34:29 -0400 Subject: [PATCH 4/5] Over and over --- input.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.pl b/input.pl index ff00b62..b2f7dab 100644 --- a/input.pl +++ b/input.pl @@ -8,7 +8,7 @@ () // also changed this file my $html = qx{curl --silent $url}; while ($html =~ m/([A-Z0-9+_.-]+@[A-Z0-9.-]+)/gi) { - // changed this file again one more time + // changed this file again one more time, over and over $emails_found{$1}++; } } From 035499893b33f9292bb95c1d69d07696c6984fe0 Mon Sep 17 00:00:00 2001 From: David Hersh Date: Fri, 17 Jun 2022 15:39:25 -0400 Subject: [PATCH 5/5] Dave doing the things --- editor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/editor.js b/editor.js index 3134df7..e94f26e 100644 --- a/editor.js +++ b/editor.js @@ -10,6 +10,7 @@ this.focusInput(); let filePath = editor.getPath(); const directory = atom.project.getDirectories().find(directory => directory.contains(filePath)); if (directory) { + // Dave saying something somewhere atom.project.repositoryForDirectory(directory).then(projectRepo => { if (projectRepo) { }