This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Max:Said No One Ever lukas$ date && python ___SNOE.py | |
Thu Dec 25 13:50:35 CET 2014 | |
--- | |
@ezafar3 Tweeted: "Awesome weather today #SaidNoOneEver" | |
- http://twitter.com/ezafar3/status/548089419648208896 | |
@BrittanyRiitano Said: "Melbourne definitely delivered the awesome weather today for chrissy!" | |
- http://twitter.com/BrittanyRiitano/status/548012278457446400 | |
--- | |
@ezafar3 Tweeted: "Awesome weather today #SaidNoOneEver" | |
- http://twitter.com/ezafar3/status/548089419648208896 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
die "Malfunction. Need input." unless $ARGV[0]; | |
open(W, "/usr/share/dict/words"); | |
my @w; | |
while (my $line = <W>) { | |
chomp($line); | |
push(@w, lc($line)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
perl -ne 'if((join "",sort split(//,lc))=~/^\s*e?l?n?o?p?q?$/&$_=~/^\w{4}$/){print $_};' /usr/share/dict/words |
NewerOlder