Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
liblingua-en-fathom-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
demo.pl
1.43
KB
-rw-r--r--
demo_recurse.pl
372
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : demo.pl
#! /usr/bin/perl # Demo script for Lingua::EN::Fathom.pm use lib "../lib"; use Lingua::EN::Fathom; my $sample1 = q{ In general, construction of pictograms follows the general procedure used in constructing bar charts. But two special rules should be followed! First, all of the picture units used must be of equal size. The comparisons must be made wholly on the basis of the number of illustrations used and never by varying the areas of the individual pictures used. The reason for this rule is obvious. The human eye is grossly inadequate in comparing areas of geometric designs. Second, the pictures or symbols used must appropriately depict the quantity to be illustrated. A comparison of the navies of the world, for example, might make use of miniature ship drawings. Cotton production might be shown by bales of cotton. Obviously, the drawings used must be immediately interpreted by the reader. End. }; my $sample2 = q{ The second paragraph to analyse. }; my $sample3 = q{ Mr. Brown goes to town. }; #------------------------------------------------------------------------------- my $text = Lingua::EN::Fathom->new(); # $text->analyse_block($sample1,1); # $text->analyse_block($sample2,1); $text->analyse_block($sample3,1); print($text->report,"\n"); %uniq_words = $text->unique_words; foreach $word ( sort keys %uniq_words ) { # print occurences of each unique word, followed by the word itself print("$uniq_words{$word}\t:$word\n"); }
Close