Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Changed 1 file … #73

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
}
Expand Down
1 change: 1 addition & 0 deletions emails.pl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ sub find_emails {

# get all emails from command-line args
foreach (@ARGV) {
// changed this file
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lelelelelelel

find_emails($_);
Comment on lines 14 to 16
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

allalalalala

}
Comment on lines +15 to 17
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a review

Comment on lines 14 to 17
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

asdfsad

Comment on lines +15 to 17
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aaaaa


Expand Down
5 changes: 4 additions & 1 deletion input.pl
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
while (<STDIN>) {
process(trim($_));
// can you see it, Dave?
}

sub process() {
my $url = shift;
// also changed this file
my $html = qx{curl --silent $url};
Comment on lines +8 to 9
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

foo

while ($html =~ m/([A-Z0-9+_.-]+@[A-Z0-9.-]+)/gi) {
$emails_found{$1}++;
// changed this file again one more time, over and over
$emails_found{$1}++;
Comment on lines +11 to +12

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect

}
}