Result:
found more than 375 distributions - search limited to the first 2001 files matching your query ( run in 2.300 )


App-XUL

 view release on metacpan or  search on metacpan

lib/App/XUL.pm  view on Meta::CPAN

  use App::XUL;
  my $app = App::XUL->new(name => 'MyApp');
  
  $app->add(
    Window(id => 'main',
      Div(id => 'container', 'style' => 'background:black', 
        Button(label => 'click', oncommand => sub {
          ID('container')->style('background:red');
        }),
      ),
    ),
  );
  

lib/App/XUL.pm  view on Meta::CPAN

the Perl functions used to create the XML tags corresponds to the
tagnames, just the first letter is uppercase:
 
  $app->add(
    Window(id => 'main',
      Div(id => 'container', 'style' => 'background:black', 
        Button(label => 'click', oncommand => sub {
          ID('container')->style('background:red');
        }),
      );
    )
  );

lib/App/XUL.pm  view on Meta::CPAN

  my $child1 = ID('main')->child(0);
  my $numchildren = ID('main')->numchildren();

=head4 Create/insert/append (XML) elements

  my $e = Div(id => 'container', 'style' => 'background:black', 
            Button(label => 'click'));
  ID('main')->insert($e, 'end'); # end|start|...

=head4 Edit (XML) element

  ID('container')->style('background:red')->content(Span('Hello!'));

=head4 Delete/remove (XML) element

  my $e = ID('container')->remove();

 view all matches for this distribution


App-Xssh

 view release on metacpan or  search on metacpan

bin/xssh  view on Meta::CPAN

window (like XTerm).  

The idea here is that each time you ssh to a particular host, a terminal
window will be launched with a consistent customised appearance.  For
example, you may wish to configure 'prodserver' so the terminal window
background is a redish colour - reminding you to tread very carefully...

=head1 OPTIONS

=over

bin/xssh  view on Meta::CPAN

First, you may like to define some defualts that will apply to all the
remote servers you might log in to.

	xssh --sethostopt DEFAULT scrollback 1024
	xssh --sethostopt DEFAULT foreground blue
	xssh --sethostopt DEFAULT background white

Then you may like to override those defaults for some specific hosts.

	xssh --sethostopt favourite foreground green
	xssh --sethostopt favourite background black
	xssh --sethostopt favourite geometry 128x70

You may then get bored with setting all options for all hosts, so you
might want to set up some "profile" options.

	xssh --setprofileopt prod foreground black
	xssh --setprofileopt prod background IndianRed

You would then define which hosts take those profile options.

	xssh --sethostopt important profile prod

FINALLY, you can use xssh to log in to those servers

	# Log in to the server "important" - you'll get a new xterm
	# window with a redish background, black text, 1024 lines of
	# scrollback
	xssh important
	
	# Log in to the server "unknown" - you'll get a new xterm window
	# with a white background, blue text, 1024 lines of scrollback
	xssh unknown
	
	# Log in to the server "favourite" - you'll get a new xterm
	# window with a black background, green text, 1024 lines of
	# scrollback, and a larger terminal
	xssh favourite

=head1 FILES

 view all matches for this distribution


App-ZofCMS

 view release on metacpan or  search on metacpan

lib/App/ZofCMS.pm  view on Meta::CPAN

L<USING THE FRAMEWORK> section below for explanation of how to use this
framework.

=head1 WARNING

=for html  <div style="display: table; height: 91px; background: url(http://zoffix.com/CPAN/Dist-Zilla-Plugin-Pod-Spiffy/icons/section-warning.png) no-repeat left; padding-left: 120px;" ><div style="display: table-cell; vertical-align: middle;">

I have no desire to continue development or maintenance of this framework.
As far as I know, I am the only developer. My only ties to this
framework is its use at $work and I am actively trying to switch
to L<Mojolicious>. For that reason,

lib/App/ZofCMS.pm  view on Meta::CPAN

your web application and see a page which will display current time.
How wonderful \o/

=head1 REPOSITORY

=for html  <div style="display: table; height: 91px; background: url(http://zoffix.com/CPAN/Dist-Zilla-Plugin-Pod-Spiffy/icons/section-github.png) no-repeat left; padding-left: 120px;" ><div style="display: table-cell; vertical-align: middle;">

Fork this module on GitHub:
L<https://github.com/zoffixznet/App-ZofCMS>

=for html  </div></div>

=head1 BUGS

=for html  <div style="display: table; height: 91px; background: url(http://zoffix.com/CPAN/Dist-Zilla-Plugin-Pod-Spiffy/icons/section-bugs.png) no-repeat left; padding-left: 120px;" ><div style="display: table-cell; vertical-align: middle;">

To report bugs or request features, please use
L<https://github.com/zoffixznet/App-ZofCMS/issues>

If you can't access GitHub, you can email your request

lib/App/ZofCMS.pm  view on Meta::CPAN


=for html  </div></div>

=head1 AUTHOR

=for html  <div style="display: table; height: 91px; background: url(http://zoffix.com/CPAN/Dist-Zilla-Plugin-Pod-Spiffy/icons/section-author.png) no-repeat left; padding-left: 120px;" ><div style="display: table-cell; vertical-align: middle;">

=for html   <span style="display: inline-block; text-align: center;"> <a href="http://metacpan.org/author/ZOFFIX"> <img src="http://www.gravatar.com/avatar/328e658ab6b08dfb5c106266a4a5d065?d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2F627d83ef9879f31bda...

=for html  </div></div>

 view all matches for this distribution


App-ansiecho

 view release on metacpan or  search on metacpan

README.md  view on Meta::CPAN


This command print strings `foo`, `bar` and `baz` according to the
color spec of `R` (Red), `GI` (_Green Italic_) and `BD` (**Blue
Bold**) respectively.

Foreground and background color is specified in the form of
`fore/back`.

    ansiecho -c B/M 'Blue on Magenta' -c '<pink>/<salmon>' fish

Color can be described by 8+8 standard colors, 24 gray scales, 6x6x6

README.md  view on Meta::CPAN


## ANSI SEQUENCE

To get desired ANSI sequence, use **-s** option.  Next example produce
ANSI terminal sequence to indicate `deeppink` color on `lightyellow`
background.

    ansiecho -n -s '<deeppink>/<lightyellow>'

You will get the next result for the 256-color terminal:

README.md  view on Meta::CPAN

    X  9 Cross out

    E    Erase Line

    ;    No effect
    /    Toggle foreground/background
    ^    Reset to foreground
    ~    Cancel following effect

Samples:

 view all matches for this distribution


App-ccdiff

 view release on metacpan or  search on metacpan

lib/App/ccdiff.pm  view on Meta::CPAN

	open my $fh, "<", $rcf or next;
	while (<$fh>) {
	    my ($k, $v) = (m/^\s*([-\w]+)\s*[:=]\s*(.*\S)/) or next;
	    $rc{ lc $k
	        =~ s{[-_]colou?r$}{}ir
	        =~ s{background}{bg}ir
	        =~ s{^(?:unicode|utf-?8?)$}{utf8}ir
	      } = $v
		=~ s{U\+?([0-9A-Fa-f]{2,7})}{chr hex $1}ger
		=~ s{^(?:no|false)$}{0}ir
		=~ s{^(?:yes|true)$}{-1}ir; # -1 is still true

lib/App/ccdiff.pm  view on Meta::CPAN

Change the default C<red> for deleted text to the color closest to pink that
is supported by L<Term::ANSIColor>: C<magenta>.

=item --reverse -r

Reverse/invert the foreground and background for the colored indicators.

If the foreground color has C<bold>, it will be stripped from the new background
color.

=item --swap -s

Swap the colors for new and old.

lib/App/ccdiff.pm  view on Meta::CPAN


Define the foreground color for added text.

=item --bg=color

Define the background color for changed text.

=item --index --idx -I

Prefix position indicators with an index.

lib/App/ccdiff.pm  view on Meta::CPAN


=item reverse (-r)

 reverse : false

Defines if changes are displayed as foreground-color over background-color
or background-color over foreground-color. The default is C<false>, so it will
color the changes with the appropriate color (C<new> or C<old>) over the
default background color.

=item swap (-s)

 swap    : false

lib/App/ccdiff.pm  view on Meta::CPAN


=item bg (--bg)

 bg      : white

Defines the color to be used as background for changed text. The default is
C<white>.

The color C<none> is also accepted and disables this color.

Any color accepted by L<Term::ANSIColor> is allowed. Any other color will

lib/App/ccdiff.pm  view on Meta::CPAN


 bg-color
 bg_color
 bg-colour
 bg_colour
 background
 background-color
 background_color
 background-colour
 background_colour

=item header (-H --header --HC=color --header-color=color)

 header  : 1
 header  : blue_on_white

 view all matches for this distribution


App-chot

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - Add Node.js handler (--nd) using require.resolve with subpath support.
    - Add Ruby handler (--rb) using $LOADED_FEATURES inspection.

0.21 2026-02-02T01:19:05Z

    - Add --bat-theme option for automatic BAT_THEME selection based on terminal background

0.20 2026-02-01T11:28:13Z

    - Support Linuxbrew path resolution in Homebrew wrapper detection

 view all matches for this distribution


App-clipbored

 view release on metacpan or  search on metacpan

bin/clipbored  view on Meta::CPAN

The helper scripts can read properties from environment variables.
These are recognized:

  CLIPBORED_DMENU_LISTMODE    regular/vertical
  CLIPBORED_DMENU_NORMAL_FG   foreground color in HEX
  CLIPBORED_DMENU_NORMAL_BG   background color in HEX
  CLIPBORED_DMENU_SELECT_FG   selected item background color in HEX
  CLIPBORED_DMENU_SELECT_BG   selected item foreground color in HEX
  CLIPBORED_DMENU_FONT        font that will be used
  CLIPBORED_DMENU_LINES       how many lines that will be shown in vertical mode
  CLIPBORED_X_SELECTION       X buffer to use: primary, secondary, clipboard

 view all matches for this distribution


App-cloc

 view release on metacpan or  search on metacpan

bin/cloc  view on Meta::CPAN

'
<style TYPE="text/css">
<!--
    body {
        color: black;
        background-color: white;
        font-family: monospace
    }

    .whitespace {
        background-color: gray;
    }

    .comment {
        color: gray;
        font-style: italic;

bin/cloc  view on Meta::CPAN

        }
        td, th {
          padding: 4px;
        }
        th {
          background-color: #CCCCCC;
        }
        td {
          text-align: center;
        }
        table, td, tr, th {

bin/cloc  view on Meta::CPAN

        }
        td, th {
          padding: 4px;
        }
        th {
          background-color: #CCCCCC;
        }
        td {
          text-align: center;
        }
        table, td, tr, th {

 view all matches for this distribution


App-colorxform

 view release on metacpan or  search on metacpan

lib/App/colorxform.pm  view on Meta::CPAN

    v => 1.1,
    summary => 'Transform colors on the CLI',
    description => <<'_',

Some CLI programs output horrible colors (e.g. hard to read on terminal with
black background) and the colors are either uncustomizable or cumbersome to
customize. This is where `colorxform` comes in. You pipe the output and it will
replace some colors with another, per your specification.

An example, put this in your `~/.config/colorxform.conf`:

lib/App/colorxform.pm  view on Meta::CPAN

        bg_transforms => {
            schema => 'hash*',
            default => {},
            description => <<'_',

List of background colors to replace with other colors. You can specify color
using RGB code (e.g. `#123456`) or color names like those recognized by
<pm:Term::ANSIColor> (e.g. `blue` or `bold blue`).

_
        },

lib/App/colorxform.pm  view on Meta::CPAN

        my $code;
        {
            $code = _color_name_to_bg_code($k);
            last if defined $code;
            # XXX support transforming 8-bit and 24-bit input colors
            die "Unrecognized background color name/code '$k'";
        }
        my $xformcode;
        {
            my $v = $args{bg_transforms}{$k};
            $xformcode = _color_name_to_bg_code($v);

lib/App/colorxform.pm  view on Meta::CPAN

            if ($v =~ /\A#([0-9A-Fa-f]{2})([0-9A-Fa-f]{2})([0-9A-Fa-f]{2})\z/) {
                $xformcode = sprintf "48;2;%d;%d;%d",
                    hex($1), hex($2), hex($3);
                last;
            }
            die "Unrecognized background transform color name/code '$v'";
        }
        $codemaps{$code} = $xformcode;
    }

    my $transform = sub {

lib/App/colorxform.pm  view on Meta::CPAN

 colorxform(%args) -> [status, msg, result, meta]

Transform colors on the CLI.

Some CLI programs output horrible colors (e.g. hard to read on terminal with
black background) and the colors are either uncustomizable or cumbersome to
customize. This is where C<colorxform> comes in. You pipe the output and it will
replace some colors with another, per your specification.

An example, put this in your C<~/.config/colorxform.conf>:

lib/App/colorxform.pm  view on Meta::CPAN


=over 4

=item * B<bg_transforms> => I<hash> (default: {})

List of background colors to replace with other colors. You can specify color
using RGB code (e.g. C<#123456>) or color names like those recognized by
L<Term::ANSIColor> (e.g. C<blue> or C<bold blue>).

=item * B<fg_transforms> => I<hash> (default: {})

 view all matches for this distribution


App-combinesheets

 view release on metacpan or  search on metacpan

docs/App-combinesheets.html  view on Meta::CPAN

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >

<style type="text/css">
 <!--/*--><![CDATA[/*><!--*/
BODY {
  background: white;
  color: black;
  font-family: arial,sans-serif;
  margin: 0;
  padding: 1ex;
}

A:link, A:visited {
  background: transparent;
  color: #006699;
}

A[href="#POD_ERRORS"] {
  background: transparent;
  color: #FF0000;
}

DIV {
  border-width: 0;

docs/App-combinesheets.html  view on Meta::CPAN

}

.pod { margin-right: 20ex; }

.pod PRE     {
  background: #eeeeee;
  border: 1px solid #888888;
  color: black;
  padding: 1em;
  white-space: pre;
}

.pod H1      {
  background: transparent;
  color: #006699;
  font-size: large;
}

.pod H1 A { text-decoration: none; }
.pod H2 A { text-decoration: none; }
.pod H3 A { text-decoration: none; }
.pod H4 A { text-decoration: none; }

.pod H2      {
  background: transparent;
  color: #006699;
  font-size: medium;
}

.pod H3      {
  background: transparent;
  color: #006699;
  font-size: medium;
  font-style: italic;
}

.pod H4      {
  background: transparent;
  color: #006699;
  font-size: medium;
  font-weight: normal;
}

 view all matches for this distribution


App-cpm

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

        [This is cpm v1]
        - cpm now prepares dependencies first and performs final installation separately.
        - By default, cpm installs the requested distributions and their runtime dependency closure.
        - Terminal progress output is now much better at showing what cpm is doing and which step is taking time.
        - cpm now requires Perl v5.24 or later.
        - For more background, see https://skaji.medium.com/cpm-v1-making-installs-stable-b2236b8eda44

v0.999.11  2026-04-26 09:27:03 CEST (TRIAL RELEASE)
        - Add final-install and top-level selection options;
          The default top-level phase selection is also changed
          from build,runtime,test to configure,build,runtime,test,develop (#291)

 view all matches for this distribution


App-devmode

 view release on metacpan or  search on metacpan

bin/devmode  view on Meta::CPAN

termcapinfo  xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l

# Make the output buffer large for (fast) xterms.
termcapinfo xterm* OL=10000

# tell screen that xterm can switch to dark background and has function
# keys.
termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l'
termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~'
termcapinfo xterm 'kh=\E[1~:kI=\E[2~:kD=\E[3~:kH=\E[4~:kP=\E[H:kN=\E[6~'

bin/devmode  view on Meta::CPAN


# emulate part of the 'K' charset
termcapinfo   xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337'

# xterm-52 tweaks:
# - uses background color for delete operations
termcapinfo xterm ut

################
#
# wyse terminals

bin/devmode  view on Meta::CPAN


# 256 colour stuff
# terminfo and termcap for nice 256 color terminal
# allow bold colors - necessary for some reason
attrcolor b ".I"
# tell screen how to set colors. AB = background, AF=foreground
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
# erase background with current bg color
#defbce "on"


################
#

 view all matches for this distribution


App-docsisious

 view release on metacpan or  search on metacpan

lib/App/docsisious/public/icons/flaticon.html  view on Meta::CPAN

    .text ul li {
        margin-top:10px;
        list-style:none;
    }
    .num {
        background:#66A523;
        color:#fff;
        border-radius:20px;
        padding:1px;
        display:inline-block;
        width:22px;

lib/App/docsisious/public/icons/flaticon.html  view on Meta::CPAN

        display: inline-block;
        width: 120px;
        margin: 10px;
        text-align: center;
        vertical-align: top;
        background: #FFF;
    }
    .glyph .glyph-icon {
        padding: 10px;
        display: block;
        font-family:"Flaticon";

lib/App/docsisious/public/icons/flaticon.html  view on Meta::CPAN

		margin: 0px;
		width: 800px;
		height: 150px;
		border: 1px solid #CCC;
		resize: none;
		background: #EEE;
    }
    .author-link, .attrDiv a{
    	font-size: 12px;
    	color: #333;
    	text-decoration: none;

 view all matches for this distribution


App-dozo

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - add fallback to find getoptlong.sh from script location

0.9925 2025-12-17T00:56:17Z

    - rebrand to Dôzo with new stroke-based logo
    - update logo with semi-transparent background for dark mode
    - add INSTALLATION section to documentation
    - fix CPAN Testers failures on non-Linux platforms

0.9924 2025-12-15T12:27:06Z

 view all matches for this distribution


App-dropboxapi

 view release on metacpan or  search on metacpan

lib/App/dropboxapi.pm  view on Meta::CPAN

=head3 Example

    > dropbox-api find /product/google-tasks-checker-plus
    /product/chrome-extentions/google-tasks-checker-plus/README.md
    /product/chrome-extentions/google-tasks-checker-plus/src
    /product/chrome-extentions/google-tasks-checker-plus/src/background.html
    /product/chrome-extentions/google-tasks-checker-plus/src/external.png
    /product/chrome-extentions/google-tasks-checker-plus/src/icon-32.png
    /product/chrome-extentions/google-tasks-checker-plus/src/icon-128.png
    /product/chrome-extentions/google-tasks-checker-plus/src/icon.gif
    /product/chrome-extentions/google-tasks-checker-plus/src/jquery-1.4.2.min.js

lib/App/dropboxapi.pm  view on Meta::CPAN

=head3 sync to dropbox

dropbox-api sync <source_dir> dropbox:<target_dir> [options]

    > dropbox-api sync /tmp/product dropbox:/work/src
    upload background.html /work/src/background.html
    upload external.png /work/src/external.png
    upload icon-128.png /work/src/icon-128.png

=head3 delete option ( -d )

    > dropbox-api sync dropbox:/product/google-tasks-checker-plus/src /tmp/product -d
    download /private/tmp/product/external.png
    download /private/tmp/product/icon-32.png
    download /private/tmp/product/icon-128.png
    remove background.html.tmp

=head3 dry run option ( -n )

    > dropbox-api sync dropbox:/product/google-tasks-checker-plus/src /tmp/product -dn
    !! enable dry run !!
    download /private/tmp/product/external.png
    download /private/tmp/product/icon-32.png
    download /private/tmp/product/icon-128.png
    remove background.html.tmp

=head3 verbose option ( -v )

    > dropbox-api sync dropbox:/product/google-tasks-checker-plus/src /tmp/product -dnv
    remote_base: /product/chrome-extentions/google-tasks-checker-plus/src
    local_base: /private/tmp/product
    ** download **
    skip background.html
    download /private/tmp/product/external.png
    download /private/tmp/product/icon-32.png
    download /private/tmp/product/icon-128.png
    skip icon.gif
    skip jquery-1.4.2.min.js

lib/App/dropboxapi.pm  view on Meta::CPAN

    skip manifest.json
    skip options.html
    skip popup.html
    skip reset.css
    ** delete **
    skip background.html
    remove background.html.tmp
    skip icon.gif
    skip jquery-1.4.2.min.js
    skip main.js
    skip manifest.json
    skip options.html

 view all matches for this distribution


App-grepurl

 view release on metacpan or  search on metacpan

data/index.html  view on Meta::CPAN

	text-align:       justify;
	font-family:      sans-serif;
	line-height:      16pt;
	}
p.menu {
	background-color: yellow;
	padding:          5pt;
	border-width:     1pt;
	border-color:     black;
	border-style:     solid;
	text-align:       center;
	margin-left:      15%;
	margin-right:     15%;
	font-weight:      bold;
	}
p.alert {
	background-color: pink;
	padding:          5pt;
	border-width:     1pt;
	border-color:     black;
	border-style:     solid;
	margin-left:      10%;
	margin-right:     10%;
	}
font.rss {
	background-color: red;
	padding:          2pt;
	color:            white;
	padding-bottom:    0pt;
	font-size:        0.7em;
	font-weight:      bold;
	}
font.atom {
	background-color: orange;
	padding:          2pt;
	color:            white;
	padding-bottom:    0pt;
	font-size:        0.7em;
	font-weight:      bold;

 view all matches for this distribution


App-htidx

 view release on metacpan or  search on metacpan

lib/App/htidx.pm  view on Meta::CPAN

    margin: 0;
    padding: 0.25em 1em;
}

th {
    background-color: #e8e8e8;
}

tr:nth-child(even) {
    background-color: #f0f0f0;
}

tr:nth-child(odd) {
    background-color: #f8f8f8;
}

 view all matches for this distribution


App-jupiter

 view release on metacpan or  search on metacpan

share/default.css  view on Meta::CPAN

body {
    margin: 1em 2em;
    max-width: 68em;
    padding: 0;
    color: #222;
    background-color: #fff;
    quotes: "\201C" "\201E" "\2018" "\2019";
}

@media (prefers-color-scheme: dark) {
    body { color: #ddd; background-color: #000; }
    img { opacity: .75; transition: opacity .5s ease-in-out; }
    img:hover { opacity: 1; }
}

.invisible {

share/default.css  view on Meta::CPAN

    border-bottom: 1px dashed salmon;
}

#sidebar a.message:hover {
    cursor: help;
    background-color: #ffD0D0;
    color:#000;
    border: 1px dashed red !important;
    text-decoration: none !important;
}
#sidebar dl a {

share/default.css  view on Meta::CPAN

    padding: 2px 3px;
    border-radius: 3px;
    text-transform: uppercase;
}
.opml {
    background-color: orange;
}
.jupiter {
    background-color: salmon;
}

/* ----------------------------- Body ---------------------------- */

#body {

share/default.css  view on Meta::CPAN

	display: none;
    }
    /* show MEMBERS */
    #sidebar h2:first-of-type {
	display: block;
	background-color: #ddd;
	margin: 0.5em;
	cursor: pointer;
    }
    @media (prefers-color-scheme: dark) {
	#sidebar h2:first-of-type {
	    background-color:#222;
	}
    }
}

 view all matches for this distribution


App-karr

 view release on metacpan or  search on metacpan

lib/App/karr/Foundation/Runner.pm  view on Meta::CPAN

    chdir "$repo" or die "chdir $repo: $!";
    open( STDOUT, '>&', $writer ) or die "dup stdout: $!";
    open( STDERR, '>&STDOUT' )    or die "dup stderr: $!";
    # The agent becomes its own process group leader so the runner can signal
    # the whole tree (the agent, its forked grandchildren, anything it
    # backgrounded) without reaching the runner itself (#148). Before this the
    # timeout SIGTERM hit only the shell — `sleep 300 & wait`, a pipeline, any
    # command the agent backgrounded, all survived the kill because they were
    # children of /bin/sh, not of the runner. setpgrp(0,0) puts the child in a
    # group whose pgid is its own pid; the parent signals that group with
    # kill 'TERM', -$pid. SIGALRM is also reset to default in the child — the
    # timeout timer is the runner's, not the agent's.
    setpgid( 0, 0 ) if defined &setpgid;

lib/App/karr/Foundation/Runner.pm  view on Meta::CPAN

      $self->foundation->_append_log( $repo,
        "TIMEOUT after ${elapsed}s \x{2014} sending SIGTERM to $pid (group -$pid)" );
      1;
    } or $log_err = clean_error($@);
    # Negative pid = process group (kill(2) group semantics, #148). The shell,
    # the agent, any grandchildren the agent backgrounded, all receive the
    # signal. SIGTERM is catchable, so we wait up to 2s before escalating.
    kill 'TERM', -$pid;
    my $deadline = time + 2;
    while ( time < $deadline ) {
      last if kill( 0, $pid ) == 0;

 view all matches for this distribution


App-lms

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - Add Node.js handler (--nd) using require.resolve with subpath support.
    - Add Ruby handler (--rb) using $LOADED_FEATURES inspection.

0.21 2026-02-02T01:19:05Z

    - Add --bat-theme option for automatic BAT_THEME selection based on terminal background

0.20 2026-02-01T11:28:13Z

    - Support Linuxbrew path resolution in Homebrew wrapper detection

 view all matches for this distribution


App-mdee

 view release on metacpan or  search on metacpan

lib/App/Greple/md.pm  view on Meta::CPAN

be folded with proper indentation.  Links become clickable via OSC 8
terminal hyperlinks in supported terminals.

Nested elements are handled with cumulative coloring: for example,
a link inside a heading retains both its link color and the heading
background color.

For a complete Markdown viewing experience with line folding,
multi-column output, and themes, see L<App::mdee>, which uses this
module as its highlighting engine.

 view all matches for this distribution


App-migrate

 view release on metacpan or  search on metacpan

lib/App/migrate.pm  view on Meta::CPAN

    # restore 0.1.0 from backup.
    upgrade     rm      useless.db
    RESTORE
    VERSION 0.2.0
    # To upgrade from 0.2.0 to 1.0.0 we need to run several commands,
    # and after downgrading we need to kill some background service.
    before_upgrade
      patch    <0.2.0.patch >/dev/null
      chmod +x some_daemon
    downgrade
      patch -R <0.2.0.patch >/dev/null

 view all matches for this distribution


App-mojopaste

 view release on metacpan or  search on metacpan

script/mojopaste  view on Meta::CPAN

    margin: 0;
    box-sizing: border-box;
  }

  html, body, textarea {
    background: var(--root-bg-color);
  }

  html, body, textarea, button {
    font-family: var(--root-font-family);
    font-size: var(--root-font-size);

script/mojopaste  view on Meta::CPAN

    color: var(--root-font-color);
  }

  a:hover,
  .btn:hover {
    background-color: #11120f;
  }

  nav {
    background: var(--nav-bg-color);
    position: sticky;
    top: 0;
    height: var(--nav-height);
    box-shadow: -1px 0 0 1px rgba(0, 0, 0, 0.2);
  }

  .btn,
  .brand {
    --padding: 0.4rem;

    background: var(--nav-bg-color);
    text-decoration: none;
    line-height: calc(var(--nav-height) - var(--padding) * 2);
    margin-left: calc(var(--gutter) / 2);
    padding: var(--padding) calc(var(--gutter) / 2);
    float: left;

script/mojopaste  view on Meta::CPAN


  /*! Color themes for Google Code Prettify | MIT License | github.com/jmblog/color-themes-for-google-code-prettify */
  .prettyprint{font-family:Menlo,Bitstream Vera Sans Mono,DejaVu Sans Mono,Monaco,Consolas,monospace;border:0!important}.pln{color:#c5c8c6}ol.linenums{margin-top:0;margin-bottom:0;color:#969896}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li...

  .morris-hover{position:absolute;z-index:1000}
  .morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(0,0,0,0.8);font-size:12px;text-align:center}
  .morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0}
  .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0}

  % end
  <script type="text/javascript">

 view all matches for this distribution


App-mookview

 view release on metacpan or  search on metacpan

assets/sass/screen.scss  view on Meta::CPAN

  padding-bottom:30px;
  border-bottom:1px solid #bbb;
  span {
    padding:10px 20px;
    @include border-radius(4px,4px);
    background-color:#eee;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #333;

assets/sass/screen.scss  view on Meta::CPAN

  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight:bold;
}

pre{
  background-color:#ddd;
  padding:10px;
  border:1px solid #999;
  overflow:auto;
  margin:20px 0;
  code {

assets/sass/screen.scss  view on Meta::CPAN

  font-size:12px;
  border: #333 1px solid;
  border-collapse: collapse;
  font-size: 11px;
  th {
    background-color: #666;
    border: #ccc 1px dotted;
    color:#fff;
    vertical-align: top;
    text-align: left;
    padding: 10px;
  }
  td { 
    background-color: #eee;
    border: #ccc 1px dotted;
    vertical-align: top;
    text-align: left;
    padding: 10px;
  }

 view all matches for this distribution


App-mycnfdiff

 view release on metacpan or  search on metacpan

t/samples/percona-compiled.txt  view on Meta::CPAN

                      Log connections and queries to given file
  --group-concat-max-len=# 
                      The maximum length of the result of function 
                      GROUP_CONCAT()
  --gtid-executed-compression-period[=#] 
                      When binlog is disabled, a background thread wakes up to
                      compress the gtid_executed table every
                      gtid_executed_compression_period transactions, as a
                      special case, if variable is 0, the thread never wakes up
                      to compress the gtid_executed table.
  --gtid-mode=name    Controls whether Global Transaction Identifiers (GTIDs)

t/samples/percona-compiled.txt  view on Meta::CPAN

                      neighbors from buffer pool), when flushing a block
  --innodb-flush-sync Allow IO bursts at the checkpoints ignoring io_capacity
                      setting.
                      (Defaults to on; use --skip-innodb-flush-sync to disable.)
  --innodb-flushing-avg-loops=# 
                      Number of iterations over which the background flushing
                      is averaged.
  --innodb-force-load-corrupted 
                      Force InnoDB to load metadata of corrupted table.
  --innodb-force-recovery=# 
                      Helps to save your data in case the disk image of the

t/samples/percona-compiled.txt  view on Meta::CPAN

                      Total memory allocated for InnoDB Fulltext Search cache
  --innodb-ft-user-stopword-table[=name] 
                      User supplied stopword table name, effective in the
                      session level.
  --innodb-io-capacity=# 
                      Number of IOPs the server can do. Tunes the background IO
                      rate
  --innodb-io-capacity-max=# 
                      Limit to which innodb_io_capacity can be inflated.
  --innodb-kill-idle-transaction=# 
                      A deprecated alias of kill_idle_transaction server

t/samples/percona-compiled.txt  view on Meta::CPAN

                      extent.
  --innodb-read-ahead-threshold=# 
                      Number of pages that must be accessed sequentially for
                      InnoDB to trigger a readahead.
  --innodb-read-io-threads=# 
                      Number of background read I/O threads in InnoDB.
  --innodb-read-only  Start InnoDB in read only mode (off by default)
  --innodb-replication-delay=# 
                      Replication thread delay (ms) on the slave server if
                      innodb_thread_concurrency is reached (0 by default)
  --innodb-rollback-on-timeout 

t/samples/percona-compiled.txt  view on Meta::CPAN

                      (Defaults to on; use --skip-innodb-use-global-flush-log-at-trx-commit to disable.)
  --innodb-use-native-aio 
                      Use native AIO if supported on this platform.
                      (Defaults to on; use --skip-innodb-use-native-aio to disable.)
  --innodb-write-io-threads=# 
                      Number of background write I/O threads in InnoDB.
  --interactive-timeout=# 
                      The number of seconds the server waits for activity on an
                      interactive connection before closing it
  --internal-tmp-disk-storage-engine[=name] 
                      The default storage engine for on-disk internal tmp table

 view all matches for this distribution


App-news

 view release on metacpan or  search on metacpan

script/news  view on Meta::CPAN

<head>
<title><%= title %></title>
%= stylesheet begin
body {
  color: #111;
  background-color: #fffff8;
  padding: 1ch;
  max-width: 80ch;
  font-size: 12pt;
  font-family: Lucida Console,Lucida Sans Typewriter,monaco,DejaVu Mono,Bitstream Vera Sans Mono,monospace;
  hyphens: auto;
}
@media (prefers-color-scheme: dark) {
  body {
    color: #7f7;
    background-color: #010;
  }
  a:link { color: #99f; }
  a:visited { color: #86f; }
  a:hover { color: #eef; }
}

 view all matches for this distribution


App-numero2bgc

 view release on metacpan or  search on metacpan

numero2bgc.pm  view on Meta::CPAN


=encoding utf8

=head1 NAME

App::numero2bgc - Put colors on the background of each number from input text.

=head1 SYNOPSIS

 numero2bgc

 view all matches for this distribution


App-optex

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - Make symbolic link to "perl" for "/usr/bin/env perl" to work.

v0.0.11 2018-01-23T11:31:19Z

    - Put error handling in t/02_config.t
    - Change STDERR background to WINE RED.

v0.0.10 2018-01-17T14:23:14Z

    - Implement "no-module" configuration.

 view all matches for this distribution


App-orgdaemon

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

The App-orgdaemon distribution provides the "org-daemon" program, a
Perl/Tk application which sits in the background and "warns" about
appointments found in configured Emacs org-mode files.

Installation:

	perl Makefile.PL

 view all matches for this distribution


App-papersway

 view release on metacpan or  search on metacpan

bin/papersway  view on Meta::CPAN


=over 4

=item B<--i3status>

Start a background instance of B<i3status>, filter and print its output.

=item B<--cols=>I<N>

Set the number of columns on a new workspace.  The default, and minimum, is 2.
Incompatible with I<--cols-min-width>.

 view all matches for this distribution


( run in 2.300 seconds using v1.01-cache-2.11-cpan-0fb53d1c279 )