view release on metacpan or search on metacpan
scripts/inspect view on Meta::CPAN
use List::Util qw/max/;
use Term::ANSIColor qw/color/;
my $normal = color('reset');
my $red    = color('bold red');
my $grn    = color('bold green');
my $blu    = color('blue');
my $ylw    = color('yellow');
run(@ARGV) unless $^C || caller;
view release on metacpan or search on metacpan
lib/App/InvestSim/GUI.pm view on Meta::CPAN
    $icon->read(catfile($res_dir, 'sources', 'icon_32.png'));
    # We could pass several images of different sizes here.
    $root->g_wm_iconphoto($icon);
  }
  
  # We're copying the font used by the TreeView style and adding an 'bold'
  # option to it, it will be used by the 'total' line.
  my $default_treeview_font = Tkx::ttk__style('lookup', 'TreeView', '-font');
  my $treeview_total_font = Tkx::font('create');
  Tkx::font('configure', $treeview_total_font, Tkx::SplitList(Tkx::font('configure', $default_treeview_font)));
  Tkx::font('configure', $treeview_total_font, -weight => 'bold');
  
  # Build the left bar with various parameters.
  {
    my $frame = $root->new_ttk__frame(-padding => 3);
    $frame->g_grid(-column => 0, -row => 0, -rowspan => 3, -sticky => "we");
view release on metacpan or search on metacpan
lib/App/JESP.pm view on Meta::CPAN
    my $applied_patches = $self->_applied_patches();
    foreach my $plan_patch ( @$plan_patches ){
        if( my $applied_patch = delete $applied_patches->{$plan_patch->id()} ){
            $plan_patch->applied_datetime( $applied_patch->{applied_datetime} );
            $log->info( $self->colorizer->colored('âï¸', "bold green")."  ".sprintf('%-52s', "'".$plan_patch->id()."'" )." Applied on ".$plan_patch->applied_datetime() );
        }else{
            $log->info( $self->colorizer->colored('â ', "bold yellow")."  ".sprintf('%-52s', "'".$plan_patch->id()."'" )." Not applied (yet?)" );
        }
    }
    my $meta_prefix = $self->prefix().'meta';
    my $plan_orphans =  [ grep{ $_ !~ /^$meta_prefix/ }  keys %$applied_patches ];
    if( @$plan_orphans ){
        $log->warn($self->colorizer()->colored('â ï¸', "bold red")."  Got orphan patches (patches in meta table but not in plan): ".join(', ' , map{ "'$_'" } @$plan_orphans ) );
    }
    return {
        plan_patches => $plan_patches,
        plan_orphans => $plan_orphans,
lib/App/JESP.pm view on Meta::CPAN
            $db->commit();
        };
        if( my $err = $@ ){
            $log->error("Got error $err. ROLLING BACK");
            $db->rollback();
            die "ERROR APPLYING PATCH ".$patch->id().": $err. ".$self->colorizer()->colored("ABORTING", "bold red")."\n";
        };
        $log->info($self->colorizer()->colored("Patch '".$patch->id()."' applied successfully", "green"));
        $applied++;
    }
    $log->info($self->colorizer()->colored("DONE Deploying DB Patches", "green"));
view release on metacpan or search on metacpan
lib/App/KGB/Client.pm view on Meta::CPAN
Used for modified paths. Default: teal.
=item deletion
Used for deleted paths. Default: bold red.
=item replacement
Used for replaced paths (a Subversion concept). Default: brown.
=item prop_change
view release on metacpan or search on metacpan
src/css/style.css view on Meta::CPAN
li.new-link::before {
  content: 'New! ';
  color: red;
  font-variant: small-caps;
  font-weight: bold;
}
view release on metacpan or search on metacpan
share/css/qunit-2.4.0.css view on Meta::CPAN
	color: inherit;
	text-decoration: none;
}
#qunit-modulefilter-dropdown .clickable.checked {
	font-weight: bold;
	color: #000;
	background-color: #D2E0E6;
}
#qunit-modulefilter-dropdown .clickable:hover {
view release on metacpan or search on metacpan
share/public_html/index.html view on Meta::CPAN
        font-size: 2em;
        margin-block-start: 0.67em;
        margin-block-end: 0.67em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        font-weight: bold;
    }
    </style>
</head>
view release on metacpan or search on metacpan
lib/App/MaMGal/Formatter.pm view on Meta::CPAN
sub stylesheet
{
	my $t = <<END;
table.index { width: 100% }
.entry_cell { text-align: center }
.slide_desc     { font-weight: bold }
.slide_filename { font-family: monospace }
.filename { font-family: monospace }
.curdir { font-size: xx-large; font-weight: normal }
.date { font-size: small }
.time { font-size: small }
view release on metacpan or search on metacpan
lib/App/MatrixClient/RoomTab.pm view on Meta::CPAN
   my $formatted_body = parse_formatted_message( $content );
   my $msgtype = $content->{msgtype};
   # Convert $body into something Tickit::Widget::Scoller will understand
   my $body = String::Tagged->clone( $formatted_body,
      only_tags => [qw( bold under italic reverse fg bg )],
      convert_tags => {
         bold    => "b",
         under   => "u",
         italic  => "i",
         reverse => "rv",
         fg      => sub { fg => $_[1]->as_xterm->index },
         bg      => sub { bg => $_[1]->as_xterm->index },
view release on metacpan or search on metacpan
lib/App/MechaCPAN.pm view on Meta::CPAN
  $color = eval { Term::ANSIColor::color($color) } // $RESET;
  state @last_key;
  # Undo the last line that is bold
  if ( @last_key && !$VERBOSE && $last_key[0] ne $key )
  {
    _show_line(@last_key);
  }
view release on metacpan or search on metacpan
root/css/error.css view on Meta::CPAN
    font-size: 10px;
}
span.key {
    color: #449;
    font-weight: bold;
    width: 120px;
    display: inline;
}
span.value {
root/css/error.css view on Meta::CPAN
div.title {
    font-family: "lucida console","monaco","andale mono","bitstream vera sans mono","consolas",monospace;
    font-size: 12px;
    background-color: #aaa;
    color: #444;
    font-weight: bold;
    padding: 3px;
    padding-left: 10px;
}
pre.content span.nu {
view release on metacpan or search on metacpan
lib/App/MiseEnPlace.pm view on Meta::CPAN
  if( -e -d $dir ) {
    $msg = colored('exists ','green') if $self->verbose();
  }
  elsif( -e $dir and ! -l $dir ) {
    $msg = colored('ERROR: blocked by non-dirctory','bold white on_red');
  }
  else {
    path( $dir )->mkpath();
    $msg = colored('created','bold black on_green');
  }
  my $home = $self->homedir();
  if ( $msg ) {
    $dir =~ s/^$home/~/;
lib/App/MiseEnPlace.pm view on Meta::CPAN
  my( $src , $target ) = @$linkpair;
  my $msg;
  if ( ! -e $src ) {
    $msg = colored( 'ERROR:  src does not exist' , 'bold white on_red' )
  }
  elsif( -e -l $target ) {
    if ( readlink $target eq $src ) {
      $msg = colored('exists ','green') if $self->verbose;
    }
    else {
      unlink $target;
      symlink $src , $target;
      $msg = colored( 'fixed' , 'bold black on_yellow' ) . '  ';
    }
  }
  elsif ( -e $target ) {
    $msg = colored( 'ERROR:  blocked by existing file' , 'bold white on_red' );
  }
  else {
    symlink $src , $target;
    $msg = colored( 'created' , 'bold black on_green' );
  }
  my $home = $self->homedir();
  if ( $msg ) {
    $src    =~ s/^$home/~/;
view release on metacpan or search on metacpan
lib/App/MojoSlides/files/public/bootstrap.min.css view on Meta::CPAN
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 *//*! normalize.css v2.1.0 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hi...
view release on metacpan or search on metacpan
The standard CSS classes are:
.synComment    { color: #0000FF }
.synConstant   { color: #FF00FF }
.synIdentifier { color: #008B8B }
.synStatement  { color: #A52A2A ; font-weight: bold }
.synPreProc    { color: #A020F0 }
.synType       { color: #2E8B57 ; font-weight: bold }
.synSpecial    { color: #6A5ACD }
.synUnderlined { color: #000000 ; text-decoration: underline }
.synError      { color: #FFFFFF ; background: #FF0000 none }
.synTodo       { color: #0000FF ; background: #FFFF00 none }
view release on metacpan or search on metacpan
lib/ChordPro/Config/Data.pm view on Meta::CPAN
sub config {
    state $pp = JSON::XS->new->utf8
	->boolean_values( $JSON::Boolean::false, $JSON::Boolean::true );
    $pp->decode( <<'EndOfJSON' );
{"a2crd":{"classifier":"pct_chords","infer-titles":true,"tabstop":"8"},"assets":{},"chord-formats":{"common":"%{root|%{}%{qual|%{}}%{ext|%{}}%{bass|/%{}}|%{name}}","nashville":"%{root|%{}%{qual|<sup>%{}</sup>}%{ext|<sup>%{}</sup>}%{bass|/<sub>%{}</su...
EndOfJSON
}
1;
view release on metacpan or search on metacpan
lib/App/Music/PlayTab/Output/PDF.pm view on Meta::CPAN
				    file => 'ArialMT.ttf',
				    size => 12 },
		      chord_n  => { name => 'Helvetica',
				    file => 'ArialMT.ttf',
				    size => 17 },
		      chord_cn => { name => 'Myriad-CnSemibold',
				    file => 'Myriad-CnSemibold.ttf',
				    size => 20 },
		      barno    => { file => 'Helvetica',
				    file => 'ArialMT.ttf',
				    size => 8 },
		      msyms    => { file => 'MSyms.ttf',
view release on metacpan or search on metacpan
public/css/error.css view on Meta::CPAN
    font-size: 10px;
}
span.key {
    color: #449;
    font-weight: bold;
    width: 120px;
    display: inline;
}
span.value {
public/css/error.css view on Meta::CPAN
div.title {
    font-family: "lucida console","monaco","andale mono","bitstream vera sans mono","consolas",monospace;
    font-size: 12px;
    background-color: #aaa;
    color: #444;
    font-weight: bold;
    padding: 3px;
    padding-left: 10px;
}
table.context {
view release on metacpan or search on metacpan
lib/App/NDTools/NDDiff.pm view on Meta::CPAN
    # resolve colors
    while (my ($k, $v) = each %{$self->{OPTS}->{term}->{line}}) {
        if ($self->{OPTS}->{colors}) {
            $COLOR{$k} = color($v);
            $COLOR{"B$k"} = color("bold $v");
        } else {
            $COLOR{$k} = $COLOR{"B$k"} = '';
        }
    }
view release on metacpan or search on metacpan
lib/App/Nag.pm view on Meta::CPAN
version="1.1">
  <g id="layer1">
    <rect style="fill:#$fill;fill-rule:evenodd;stroke:#$stroke;stroke-width:3px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
    id="rect2993" width="62" height="62" x="1" y="1" />
    <text xml:space="preserve"
    style="font-size:${font_size}px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#$stroke;fill-opacity:1;stroke:none;font-family:Monospace;opacity:1"
x="12.525171" y="28.595528" id="text3763">
<tspan id="tspan3765" x="$x" y="$y">$phrase</tspan>
</text>
  </g>
</svg>
view release on metacpan or search on metacpan
examples/headers view on Meta::CPAN
desc(headersDesc)
##
sub headersDesc {
    return "<br>Change headers content only. H1 content is processed by toupper function, H2 by tobold and H3 by toitalic as defined in application's DSL.<br><pre>
cginame(./headers)
formtitle(Process Headers)
proc(id)
proctags(h1=>uc,h2=>tobold,h3=>toitalic)
desc(headersDesc)
</pre>
Good example to test: <a href='http://nrc.homelinux.org/headers.html'>http://nrc.homelinux.org/headers.html</a><br>Example's source: <pre>
<body>
<h1>This is header 1</h1>
view release on metacpan or search on metacpan
lib/App/Netdisco/Util/Graph.pm view on Meta::CPAN
                $edge{style} = 'solid';
            }
        }
        if ($suffix eq 'G'){
            #$edge{style} = 'bold';
            $edge{color} = 'cyan1';
        }
        # Add extra styles to edges (mainly for modifying width)
        if(defined $CONFIG{edge_style}) {
view release on metacpan or search on metacpan
doc/algorithm.svg view on Meta::CPAN
<svg xmlns="http://www.w3.org/2000/svg" width="642px" height="1144px" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"><defs><linearGradient x1="0%" y1="0%" x2="0%" y2="100%" id="mx-gradient-ffffff-1-e6e6e6-1-s-0"><stop offset="0%" style="sto...
view release on metacpan or search on metacpan
htdocs/assets/css/app/office/cms/web.page.css view on Meta::CPAN
}
.blue_center
{
	background-color: #6293cd;
	font-weight: bold;
	text-align: center;
}
.error
{
	color: red;
	font-weight: bold;
}
.hidden_div
{
	background-color: #6293cd;
view release on metacpan or search on metacpan
htdocs/assets/css/app/office/contacts/homepage.css view on Meta::CPAN
.blue_centered
{
	background-color: #6293cd;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
}
.bordered
{
htdocs/assets/css/app/office/contacts/homepage.css view on Meta::CPAN
}
.error
{
	color: red;
	font-weight: bold;
}
.hidden_div
{
	background-color: #6293cd;
htdocs/assets/css/app/office/contacts/homepage.css view on Meta::CPAN
.white_centered
{
	background-color: #ffffff;
	color: #6293cd;
	font-weight: bold;
}
view release on metacpan or search on metacpan
lib/App/Oozie/Util/Log4perl/Templates/simple.l4p view on Meta::CPAN
log4perl.appender.Color.Threshold                = DEBUG
log4perl.appender.Color.color.TRACE              = cyan
log4perl.appender.Color.color.DEBUG              = cyan
log4perl.appender.Color.color.INFO               =
log4perl.appender.Color.color.WARN               = red
log4perl.appender.Color.color.ERROR              = bold Magenta
log4perl.appender.Color.color.FATAL              = bold Magenta
log4perl.appender.Color.stderr                   = 1
view release on metacpan or search on metacpan
share/templates/terminal.html view on Meta::CPAN
            table {
                width               : 100%;
            }
            table tr:first-child {
                font-weight         : bold;
                text-indent         : 1em;
            }
            table tr:nth-child(even) {
                background-color    : [% color.bg_alt %];
view release on metacpan or search on metacpan
lib/App/PLab/ButtonGlyphs.pm view on Meta::CPAN
use constant fldropen     => 63;
use constant fldrshut     => 64;
use constant floppy       => 65;
use constant foldrdoc     => 66;
use constant font         => 67;
use constant fontbold     => 68;
use constant fontital     => 69;
use constant fontsize     => 70;
use constant form         => 71;
use constant gears        => 72;
use constant globe        => 73;
view release on metacpan or search on metacpan
script/ijirait view on Meta::CPAN
  $text =~ s/^=> \S+ (type|Back)\n//gm; # drop type command from the list, and the help page
  my @lines = split(/\n/, $text);
  my $section = "";
  for (@lines) {
    if ($section =~ /^(Hidden )?(Exits|Things)$/
	and s/^=> \S+\s+(.*?) \((\S+)\)$/"* $1 (" . colored($2, 'bold') . ")"/e) {
      # exits and things come in lists and their shortcuts are bold
    } elsif (s/^=> \/play\/ijirait\S*\s+(.*)/"* " . colored($1, 'bold')/e) {
      # internal links are commands, come in lists, and they are all bold
    } elsif (s/^=> \/\/(\S+)\s+(.*)/"* " . colored($2, 'italic') . " â gemini:\/\/$1"/e) {
      # external links without protocol come in lists, italic, and the URL
      # is printed separately for clicking in a terminal emulator, with gemini:
      # scheme added
    } elsif (s/^=> (\S+)\s+(.*)/"* " . colored($2, 'italic') . " â $1"/e) {
      # external links are treated as above but gemini: is not prefixed to the
      # URL
    } elsif (s/^# (.*)/colored($1, 'bold underline')/e) {
      $_ = $wrapper->wrap($_);
    } elsif (s/^## (.*)/colored($1, 'underline')/e) {
      $section = $1;
      $_ = $wrapper->wrap($_);
    } elsif (s/^### (.*)/colored($1, 'italic')/e) {
view release on metacpan or search on metacpan
t/files/moby11.txt view on Meta::CPAN
to which the ship is moored, offering five hundred gold coins
for the apprehension of a parricide, and containing a description
of his person.  He reads, and looks from Jonah to the bill;
while all his sympathetic shipmates now crowd round Jonah,
prepared to lay their hands upon him.  Frighted Jonah trembles.
and summoning all his boldness to his face, only looks so much
the more a coward.  He will not confess himself suspected;
but that itself is strong suspicion.  So he makes the best of it;
and when the sailors find him not to be the man that is advertised,
they let him pass, and he descends into the cabin.
t/files/moby11.txt view on Meta::CPAN
With much interest I sat watching him.  Savage though he was,
and hideously marred about the face--at least to my taste--
his countenance yet had a something in it which was by no
means disagreeable.  You cannot hide the soul.  Through all his
unearthly tattooings, I thought I saw the traces of a simple
honest heart; and in his large, deep eyes, fiery black and bold,
there seemed tokens of a spirit that would dare a thousand devils.
And besides all this, there was a certain lofty bearing about
the Pagan, which even his uncouthness could not altogether maim.
He looked like a man who had never cringed and never had had a creditor.
Whether it was, too, that his head being shaved, his forehead was
t/files/moby11.txt view on Meta::CPAN
him of my intention to sail out of Nantucket, as being the most
promising port for an adventurous whaleman to embark from.
He at once resolved to accompany me to that island, ship aboard
the same vessel, get into the same watch, the same boat,
the same mess with me, in short to share my every hap; with both
my hands in his, boldly dip into the Potluck of both worlds.
To all this I joyously assented; for besides the affection I now
felt for Queequeg, he was an experienced harpooneer, and as such,
could not fail to be of great usefulness to one, who, like me,
was wholly ignorant of the mysteries of whaling, though well
acquainted with the sea, as known to merchant seamen.
t/files/moby11.txt view on Meta::CPAN
discovered the island, and there they found an empty ivory casket,--
the poor little Indian's skeleton.
What wonder, then, that these Nantucketers, born on a beach, should take
to the sea for a livelihood!  They first caught crabs and quahogs
in the sand; grown bolder, they waded out with nets for mackerel;
more experienced, they pushed off in boats and captured cod;
and at last, launching a navy of great ships on the sea, explored this
watery world; put an incessant belt of circumnavigations round it;
peeped in at Behring's Straits; and in all seasons and all oceans
declared everlasting war with the mightiest animated mass that
t/files/moby11.txt view on Meta::CPAN
Scripture names--a singularly common fashion on the island--
and in childhood naturally imbibing the stately dramatic thee
and thou of the Quaker idiom; still, from the audacious,
daring, and boundless adventure of their subsequent lives,
strangely blend with these unoutgrown peculiarities, a thousand
bold dashes of character, not unworthy a Scandinavian sea-king,
or a poetical Pagan Roman.  And when these things unite
in a man of greatly superior natural force, with a globular
brain and a ponderous heart; who has also by the stillness
and seclusion of many long night-watches in the remotest waters,
and beneath constellations never seen here at the north,
been led to think untraditionally and independently; receiving all
nature's sweet or savage impressions fresh from her own virgin
voluntary and confiding breast, and thereby chiefly, but with some
help from accidental advantages, to learn a bold and nervous
lofty language--that man makes one in a whole nation's census--
a mighty pageant creature, formed for noble tragedies.
Nor will it at all detract from him, dramatically regarded,
if either by birth or other circumstances, he have what seems
a half wilful overruling morbidness at the bottom of his nature.
t/files/moby11.txt view on Meta::CPAN
called them ringbolts, and would talk of securing the top-sail
halyards to them.  In his youth Daggoo had voluntarily shipped
on board of a whaler, lying in a lonely bay on his native coast.
And never having been anywhere in the world but in Africa, Nantucket,
and the pagan harbors most frequented by the whalemen; and having
now led for many years the bold life of the fishery in the ships
of owners uncommonly heedful of what manner of men they shipped;
Daggoo retained all his barbaric virtues, and erect as a giraffe,
moved about the decks in all the pomp of six feet five in his socks.
There was a corporeal humility in looking up at him; and a white man
standing before him seemed a white flag come to beg truce of a fortress.
t/files/moby11.txt view on Meta::CPAN
like it, sir."
"Avast! gritted Ahab between his set teeth, and violently moving away,
as if to avoid some passionate temptation.
"No, sir; not yet," said Stubb, emboldened, "I will not tamely
be called a dog, sir."
"Then be called ten times a donkey, and a mule, and an ass,
and begone, or I'll clear the world of thee!"
t/files/moby11.txt view on Meta::CPAN
CHAPTER 32
Cetology
Already we are boldly launched upon the deep; but soon we
shall be lost in its unshored harborless immensities.
Ere that come to pass; ere the Pequod's weedy hull rolls
side by side with the barnacled hulls of the leviathan;
at the outset it is but well to attend to a matter almost
indispensable to a thorough appreciative understanding of the more
t/files/moby11.txt view on Meta::CPAN
it is impossible correctly to classify the Greenland whale.
And if you descend into the bowels of the various leviathans,
why there you will not find distinctions a fiftieth part as available
to the systematizer as those external ones already enumerated.
What then remains? nothing but to take hold of the whales bodily,
in their entire liberal volume, and boldly sort them that way.
And this is the Bibliographical system here adopted;
and it is the only one that can possibly succeed, for it alone
is practicable.  To proceed.
BOOK I. (Folio) CHAPTER IV.  (Hump Back).--This whale is often seen
t/files/moby11.txt view on Meta::CPAN
It was also distilled to a volatile salts for fainting ladies the same
way that the horns of the male deer are manufactured into hartshorn.
Originally it was in itself accounted an object of great curiosity.
Black Letter tells me that Sir Martin Frobisher on his return from that
voyage, when Queen Bess did gallantly wave her jewelled hand to him from
a window of Greenwich Palace, as his bold ship sailed down the Thames;
"when Sir Martin returned from that voyage," saith Black Letter,
"on bended knees he presented to her highness a prodigious long horn
of the Narwhale, which for a long period after hung in the castle
at Windsor."  An Irish author avers that the Earl of Leicester,
on bended knees, did likewise present to her highness another horn,
t/files/moby11.txt view on Meta::CPAN
Flask enters King Ahab's presence, in the character of Abjectus,
or the Slave.
It is not the least among the strange things bred by the intense
artificialness of sea-usages, that while in the open air of the deck
some officers will, upon provocation, bear themselves boldly
and defyingly enough towards their commander; yet, ten to one,
let those very officers the next moment go down to their
customary dinner in that same commander's cabin, and straightway
their inoffensive, not to say deprecatory and humble air towards him,
as he sits at the head of the table; this is marvellous,
t/files/moby11.txt view on Meta::CPAN
           Oh, your tubs in your boats, my boys,
             And by your braces stand,
           And we'll have one of those fine whales,
             Hand, boys, over hand!
      So, be cheery, my lads! may your hearts never fail!
      While the bold harpooneer is striking the whale!
MATE'S VOICE FROM THE QUARTER-DECK
Eight bells there, forward!
t/files/moby11.txt view on Meta::CPAN
In that way, mostly, the disastrous encounter between Ahab
and the whale had hitherto been popularly regarded.
And as for those who, previously hearing of the White Whale,
by chance caught sight of him; in the beginning of the thing
they had every one of them, almost, as boldly and fearlessly
lowered for him, as for any other whale of that species.
But at length, such calamities did ensue in these assaults--
not restricted to sprained wrists and ankles, broken limbs,
or devouring amputations--but fatal to the last degree of fatality;
those repeated disastrous repulses, all accumulating and piling
t/files/moby11.txt view on Meta::CPAN
with his red-cheeked Cleopatra, ripening his apricot thigh upon
the sunny deck.  But ashore, all this effeminacy is dashed.
The brigandish guise which the Canaller so proudly sports;
his slouched and gaily-ribboned hat betoken his grand features.
A terror to the smiling innocence of the villages through which he floats;
his swart visage and bold swagger are not unshunned in cities.
Once a vagabond on his own canal, I have received good turns
from one of these Canallers; I thank him heartily; would fain be
not ungrateful; but it is often one of the prime redeeming qualities
of your man of violence, that at times he has as stiff an arm
to back a poor stranger in a strait, as to plunder a wealthy one.
t/files/moby11.txt view on Meta::CPAN
morning a confused wrangling, and then a scuffling was heard,
as the customary summons was delivered; and suddenly four men
burst up from the forecastle, saying they were ready to turn to.
The fetid closeness of the air, and a famishing diet, united perhaps
to some fears of ultimate retribution, had constrained them to
surrender at discretion.  Emboldened by this, the Captain reiterated
his demand to the rest, but Steelkilt shouted up to him a terrific
hint to stop his babbling and betake himself where he belonged.
On the fifth morning three others of the mutineers bolted up into
the air from the desperate arms below that sought to restrain them.
Only three were left.
t/files/moby11.txt view on Meta::CPAN
swinging perch overhead; and looking further off from the side,
we saw an arm thrust upright from the blue waves; a sight strange
to see, as an arm thrust forth from the grass over a grave.
"Both! both!--it is both!"-cried Daggoo again with a joyful shout;
and soon after, Queequeg was seen boldly striking out with one hand,
and with the other clutching the long hair of the Indian.  Drawn into
the waiting boat, they were quickly brought to the deck; but Tashtego
was long in coming to, and Queequeg did not look very brisk.
Now, how had this noble rescue been accomplished?  Why, diving after
t/files/moby11.txt view on Meta::CPAN
Nevertheless, the Fin-Back's spout is so similar to the Sperm Whale's,
that by unskilful fishermen it is often mistaken for it.
And consequently Derick and all his host were now in valiant
chase of this unnearable brute.  The Virgin crowding all sail,
made after her four young keels, and thus they all disappeared
far to leeward, still in bold, hopeful chase.
Oh! many are the Fin-Backs, and many are the Dericks, my friend.
t/files/moby11.txt view on Meta::CPAN
in truth, some versions of the Bible use that word itself.
Besides, it would much subtract from the glory of the exploit
had St. George but encountered a crawling reptile of the land,
instead of doing battle with the great monster of the deep.
Any man may kill a snake, but only a Perseus, a St. George,
a Coffin, have the heart in them to march boldly up to a whale.
Let not the modern paintings of this scene mislead us;
for though the creature encountered by that valiant whaleman
of old is vaguely represented of a griffin-like shape,
and though the battle is depicted on land and the saint
t/files/moby11.txt view on Meta::CPAN
for the convenience of ships and whales; conspicuous among which are
the straits of Sunda and Malacca.  By the straits of Sunda, chiefly,
vessels bound to China from the west, emerge into the China seas.
Those narrow straits of Sunda divide Sumatra from Java; and standing
midway in that vast rampart of islands, buttressed by that bold
green promontory, known to seamen as Java Head; they not a little
correspond to the central gateway opening into some vast walled empire:
and considering the inexhaustible wealth of spices, and silks,
and jewels, and gold, and ivory, with which the thousand islands
of that oriental sea are enriched, it seems a significant provision
t/files/moby11.txt view on Meta::CPAN
the poor mariners in their respectful consternation--so truly English--
knowing not what to say, fall to vigorously scratching their heads
all round; meanwhile ruefully glancing from the whale to the stranger.
But that did in nowise mend the matter, or at all soften the hard heart
of the learned gentleman with the copy of Blackstone.  At length one
of them, after long scratching about for his ideas, made bold to speak,
"Please, sir, who is the Lord Warden?"
"The Duke."
t/files/moby11.txt view on Meta::CPAN
But that darkness was licked up by the fierce flames, which at
intervals forked forth from the sooty flues, and illuminated
every lofty rope in the rigging, as with the famed Greek fire.
The burning ship drove on, as if remorselessly commissioned
to some vengeful deed.  So the pitch and sulphur-freighted brigs
of the bold Hydriote, Canaris, issuing from their midnight harbors,
with broad sheets of flame for sails, bore down upon
the Turkish frigates, and folded them in conflagrations.
The hatch, removed from the top of the works, now afforded a wide
hearth in front of them.  Standing on this were the Tartarean
t/files/moby11.txt view on Meta::CPAN
among mankind to harpoon with civilized steel the great Sperm Whale;
and that for half a century they were the only people of the whole
globe who so harpooned him.
In 1778, a fine ship, the Amelia, fitted out for the express purpose,
and at the sole charge of the vigorous Enderbys, boldly rounded
Cape Horn, and was the first among the nations to lower a whale-boat
of any sort in the great South Sea.  The voyage was a skilful
and lucky one; and returning to her berth with her hold full
of the precious sperm, the Amelia's example was soon followed
by other ships, English and American, and thus the vast Sperm Whale
t/files/moby11.txt view on Meta::CPAN
And this work was published so late as A.D. 1825.
But will any whaleman believe these stories?  No. The whale
of to-day is as big as his ancestors in Pliny's time.
And if ever I go where Pliny is, I, a whaleman (more than he was),
will make bold to tell him so.  Because I cannot understand
how it is, that while the Egyptian mummies that were buried
thousands of years before even Pliny was born, do not measure
so much in their coffins as a modern Kentuckian in his socks;
and while the cattle and other animals sculptured on the oldest
Egyptian and Nineveh tablets, by the relative proportions in
t/files/moby11.txt view on Meta::CPAN
musket that he pointed at me;--that one with the studded stock;
let me touch it--lift it.  Strange, that I, who have
handled so many deadly lances, strange, that I should shake
so now.  Loaded?  I must see.  Aye, aye; and powder in the pan;--
that's not good.  Best spill it?--wait.  I'll cure myself of this.
I'll hold the musket boldly while I think.--I come to report
a fair wind to him.  But how fair?  Fair for death and doom,--
that's fair for Moby Dick.  It's a fair wind that's only fair for
that accursed fish.--The very tube he pointed at me!--the very one;
this one--I hold it here; he would have killed me with the very
thing I handle now.--Aye and he would fain kill all his crew.
t/files/moby11.txt view on Meta::CPAN
advanced to him.
Ahab stood before him, and was lightly unwinding some thirty
or forty turns to form a preliminary hand-coil to toss overboard,
when the old Manxman, who was intently eyeing both him and the line,
made bold to speak.
"Sir, I mistrust it; this line looks far gone, long heat and wet
have spoiled it."
"'Twill hold, old gentleman.  Long heat and wet, have they spoiled thee?
t/files/moby11.txt view on Meta::CPAN
But though thus contrasting within, the contrast was only in shades
and shadows without; those two seemed one; it was only the sex,
as it were, that distinguished them.
Aloft, like a royal czar and king, the sun seemed giving this
gentle air to this bold and rolling sea; even as bride to groom.
And at the girdling line of the horizon, a soft and tremulous motion--
most seen here at the Equator--denoted the fond, throbbing trust,
the loving alarms, with which the poor bride gave her bosom away.
Tied up and twisted; gnarled and knotted with wrinkles;
t/files/moby11.txt view on Meta::CPAN
a matter sometimes well known to affect them,--however it was,
they seemed to follow that one boat without molesting the others.
"Heart of wrought steel!" murmured Starbuck gazing over the side,
and following with his eyes the receding boat--"canst thou
yet ring boldly to that sight?--lowering thy keel among
ravening sharks, and followed by them, open-mouthed to the chase;
and this the critical third day?--For when three days
flow together in one continuous intense pursuit; be sure
the first is the morning, the second the noon, and the third
the evening and the end of that thing--be that end what it may.
t/files/moby11.txt view on Meta::CPAN
thou uncracked keel; and only god-bullied hull; thou firm deck,
and haughty helm, and Pole-pointed prow,--death--glorious ship! must
ye then perish, and without me?  Am I cut off from the last fond pride
of meanest shipwrecked captains?  Oh, lonely death on lonely life!
Oh, now I feel my topmost greatness lies in my topmost grief.
Ho, ho! from all your furthest bounds, pour ye now in, ye bold billows
of my whole foregone life, and top this one piled comber of my death!
Towards thee I roll, thou all-destroying but unconquering whale;
to the last I grapple with thee; from hell's heart I stab at thee;
for hate's sake I spit my last breath at thee.  Sink all coffins
and all hearses to one common pool! and since neither can be mine,
t/files/moby11.txt view on Meta::CPAN
terrify and prevent their too near approach."
  --UNO VON TROIL'S LETTERS ON BANKS'S AND SOLANDER'S
VOYAGE TO ICELAND IN 1772.
  "The Spermacetti Whale found by the Nantuckois, is an active, fierce
animal, and requires vast address and boldness in the fishermen."
  --THOMAS JEFFERSON'S WHALE MEMORIAL TO THE FRENCH MINISTER IN 1778.
  "And pray, sir, what in the world is equal to it?"
  --EDMUND BURKE'S REFERENCE IN PARLIAMENT TO THE NANTUCKET WHALE-FISHERY.
t/files/moby11.txt view on Meta::CPAN
  "The Cachalot" (Sperm Whale) "is not only better armed than the True
Whale" (Greenland or Right Whale) "in possessing a formidable weapon
at either extremity of its body, but also more frequently displays a
disposition to employ these weapons offensively and in manner at
once so artful, bold, and mischievous, as to lead to its being
regarded as the most dangerous to attack of all the known species of
the whale tribe."
  --FREDERICK DEBELL BENNETT'S WHALING VOYAGE ROUND THE GLOBE, 1840.
  October 13. "There she blows," was sung out from the mast-head.
t/files/moby11.txt view on Meta::CPAN
  --MISSIONARY JOURNAL OF TYERMAN AND BENNETT.
  "Nantucket itself," said Mr. Webster, "is a very striking and
peculiar portion of the National interest. There is a population of
eight or nine thousand persons living here in the sea, adding
largely every year to the National wealth by the boldest and most
persevering industry."
  --REPORT OF DANIEL WEBSTER'S SPEECH IN THE U. S. SENATE,
ON THE APPLICATION FOR THE ERECTION OF A BREAKWATER AT NANTUCKET. 1828.
  "The whale fell directly over him, and probably killed him in a
t/files/moby11.txt view on Meta::CPAN
boat, threatening it with instant destruction;--'Stern all, for your
lives!'"
  --WHARTON THE WHALE KILLER.
    "So be cheery, my lads, let your hearts never fail,
    While the bold harpooneer is striking the whale!"
  --NANTUCKET SONG.
    "Oh, the rare old Whale, mid storm and gale
      In his ocean home will be
    A giant in might, where might is right,
view release on metacpan or search on metacpan
lib/App/Pimpd/Collection/Album.pm view on Meta::CPAN
  my($path) = $file =~ m|(.+)/.+$|m;
  my @songs = $mpd->collection->all_items_simple($path);
  printf("Remove %s ? [y/N] ", fg('bold', $path));
  chomp(my $answer = <STDIN>);
  if(lc($answer) ne 'y') {
    return 1;
  }
lib/App/Pimpd/Collection/Album.pm view on Meta::CPAN
      'ssh', "-p $config{ssh_port}",
      "$config{ssh_user}\@$config{ssh_host}",
      "rm -rv '$path'",
    ) == 0 and do {
      open(STDOUT, '>&', OLD_STDOUT) or die("Cant reopen STDOUT: $!");
      printf("Removed %s successfully\n", fg('bold', $path));
      return;
    };
    open(STDOUT, '>&', OLD_STDOUT) or die("Cant reopen STDOUT: $!");
  }
  else {
    if(remove_path($path)) {
      printf("removed '%s'\n", fg('bold', $path));
      return;
    }
    print STDERR "remove_path($path): $!\n";
    return;
  }