blob: a02ea29fe9ddabd810e548b1838e2f977def381d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
sub interesting {
$_ = shift;
return
/>Today is .+\'s birthday\.</
|| / like[ds]? your post in </
|| /like[ds] your new subscription\. </
|| / likes? that you're interested in </
|| /> likes? your comment: /
|| /&birthdays=.*birthdays?\.<\/a>/;
}
sub boring {
return
/ likes? your post in </
|| / likes? that you're interested in </
}
|