view release on metacpan or search on metacpan
lib/App/Codit.pm view on Meta::CPAN
'-contentacscansize',
'-contentactivedelay',
'-contentautobrackets',
'-contentautocomplete',
'-contentautoindent',
'-contentbackground',
'-contentbgdspace',
'-contentbgdtab',
'-contentbookmarkcolor',
'-contentfindbg',
'-contentfindfg',
lib/App/Codit.pm view on Meta::CPAN
'*page' => 'Colors',
'*section' => 'Editing',
-contentforeground => ['color', 'Foreground', -width => 8],
'*column',
-contentbackground => ['color', 'Background', -width => 8],
'*end',
'*section' => 'Find',
-contentfindfg => ['color', 'Foreground', -width => 8],
'*column',
-contentfindbg => ['color', 'Background', -width => 8],
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Colorist.pm view on Meta::CPAN
B<Numeric color.> Another option is to assign each a color. For most terminals, this can be any integer in the 0-15 range with the colors usually being like those named above. If you use a terminal that supports it, you may use numbers in the 0-255 r...
=item *
B<Color pair.> If you would like to set the background color, you may do so by setting the color to a hash (or object, if you prefer). The keys in the hash are "fg" for setting the foreground color and "bg" for setting the background. The color itsel...
=item *
B<Gray scale.> For terminals supporting 256 colors, you may use the gray scale by setting the color name to a 1-tuple (single element array) containing the numeric index of the shade of gray you want to use. In these scheme, C<[0]> is black and C<[23...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Context/NetServer.pm view on Meta::CPAN
# ## daemonization parameters
# pid_file "filename" undef
# chroot "directory" undef
# user (uid|username) "nobody"
# group (gid|group) "nobody"
# background 1 undef
# setsid 1 undef
#
# no_close_by_child (1|undef) undef
sub dispatch_events {
lib/App/Context/NetServer.pm view on Meta::CPAN
conf_file
log_level log_file
syslog_logsock syslog_ident syslog_logopt syslog_facility
port host proto listen
reverse_lookups allow deny
pid_file chroot user group background setsid
no_close_by_child
);
my (%options);
#foreach my $option (@options) {
view all matches for this distribution
view release on metacpan or search on metacpan
use constant LSB_DEAD_LOCK_EXISTS => 2;
use constant LSB_NOT_RUNNING => 3;
use constant LSB_UNKNOWN => 4;
use constant ALREADY_RUNNING => 150;
our ($pidfile, $logfile, $l4p_conf, $as_user, $as_group, $background,
$loglevel, $action, $appname, $default_pid_dir, $default_log_dir);
$action = "";
$appname = appname();
$default_pid_dir = ".";
# Not root? Then we're ourselves
($as_user) = getpwuid($>);
($as_group) = getgrgid(POSIX::getgid());
}
$background = 1 if(!defined $background);
$background = find_option('-X') ? 0 : $background;
$loglevel = $background ? $INFO : $DEBUG
if(!defined $loglevel);
$loglevel = find_option('-v') ? $DEBUG : $loglevel;
for (qw(start stop restart status)) {
if( find_option( $_ ) ) {
last;
}
}
if($action eq "stop" or $action eq "status") {
$background = 0;
}
if( Log::Log4perl->initialized() ) {
DEBUG "Log4perl already initialized, doing nothing";
} elsif( $action eq "status" ) {
log4perl.appender.FileApp.layout = PatternLayout
log4perl.appender.FileApp.layout.ConversionPattern = %d %m%n
});
}
if(!$background) {
DEBUG "Running in foreground";
}
}
###########################################
if ( my $num = pid_file_process_running() ) {
LOGWARN "Already running: $num (pidfile=$pidfile)\n";
exit ALREADY_RUNNING;
}
if( $background ) {
detach( $as_user );
} elsif ($as_user) {
id_switch();
}
daemonize();
do_something_useful(); # your application
# Then, in the shell: start application,
# which returns immediately, but continues
# to run do_something_useful() in the background
$ app start
$
# stop application
$ app stop
=over 4
=item *
supports logging with Log4perl: In background mode, it logs to a
logfile. In foreground mode, log messages go directly to the screen.
=item *
detects if another instance is already running and ends itself
Foreground mode. Log messages go to the screen.
=item -l logfile
Logfile to send Log4perl messages to in background mode. Defaults
to C<./[appname].log>. Note that having a logfile in the current directory
doesn't make sense except for testing environments, make sure to set this
to somewhere within C</var/log> for production use.
=item -u as_user
use App::Daemon qw(daemonize);
$App::Daemon::logfile = "mylog.log";
$App::Daemon::pidfile = "mypid.log";
$App::Daemon::l4p_conf = "myconf.l4p";
$App::Daemon::background = 1;
$App::Daemon::as_user = "nobody";
$App::Daemon::as_group = "nogroup";
use Log::Log4perl qw(:levels);
$App::Daemon::loglevel = $DEBUG;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Device/Chip/sensor.pm view on Meta::CPAN
method OPTSPEC :override
{
return ( $self->SUPER::OPTSPEC,
'title=s' => \$_title,
'background-color=s' => \$_bgcol,
);
}
=cut
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Diskd.pm view on Meta::CPAN
=head2 DiskWatcher class
This class sets up a POE session that periodically calls the external
'blkid' program. It uses POE::Wheel::Run to do this in the background
so that the parent program does not block while waiting on the child
program to run to completion.
In some cases, blkid can hang (such as if a device has disappeared
without being cleanly unmounted or disconnected) or fail altogether
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/generate/c-tap-harness/docknot.yaml view on Meta::CPAN
Also included in this package are C and shell libraries that provide
utility functions for writing test scripts that use TAP to report results.
The C library also provides a variety of utility functions useful for test
programs running as part of an Automake-built package: finding test data
files, creating temporary files, reporting output from external programs
running in the background, and similar common problems.
requirements: |
C TAP Harness requires a C compiler to build. Any ISO C89 or later C
compiler on a system supporting the Single UNIX Specification, version 3
(SUSv3) should be sufficient. This should not be a problem on any modern
view all matches for this distribution
view release on metacpan or search on metacpan
share/js/dochazka-www/caches.js view on Meta::CPAN
"#808000",
"#ffd8b1",
"#000080",
],
backgroundColorStashed = null,
currentEmployeeStashed = null,
currentEmplPrivStashed = null,
activityCache = [],
activityByAID = {},
share/js/dochazka-www/caches.js view on Meta::CPAN
currentUser('flag1', 0); // turn off masquerade flag
// console.log('flag1 === ', currentUser('flag1'));
currentUser('obj', currentEmployeeStashed);
currentEmployeeStashed = null;
appLib.fillUserBox();
$('body').css("background-color", backgroundColorStashed);
coreLib.displayResult('Masquerade is finished');
$('input[name="sel"]').val('');
},
getActivityByAID = function (aid) {
share/js/dochazka-www/caches.js view on Meta::CPAN
}
}
// let the masquerade begin
currentEmployeeStashed = $.extend({}, cu);
backgroundColorStashed = $('body').css("background-color");
currentUser('obj', obj);
currentUser('flag1', 1); // turn on masquerade flag
populate.bootstrap([
populateFullEmployeeProfileCache,
populateScheduleBySID,
]);
appLib.fillUserBox(); // reset userbox
$('body').css("background-color", "#669933");
stack.unwindToType('dmenu'); // return to most recent dmenu
},
populateActivityCache = function (populateArray) {
var ao, rest, sc, fc, populateContinue;
view all matches for this distribution
view release on metacpan or search on metacpan
tmpl/channel/index.tx view on Meta::CPAN
border-collapse: collapse;
}
th {
padding: 5px;
border: solid 1px #a83;
background-color: #fd9;
font-weight: normal;
}
td {
padding: 5px;
border: solid 1px #a83;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/DrivePlayer/GUI.pm view on Meta::CPAN
L<App::DrivePlayer::Player> on first use, so start-up is fast even when network
access is unavailable.
=item *
Running folder scans (via L<App::DrivePlayer::Scanner>) in a background thread
with live progress reporting.
=item *
Persisting configuration changes (music folder list, OAuth2 credentials)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/DubiousHTTP/Tests.pm view on Meta::CPAN
sub _auto_static_html { return <<'HTML'; }
<!doctype html>
<meta charset="utf-8">
<style>
body { font-family: Verdana, sans-serif; }
#title { padding: 1em; margin: 1em; border: 1px; border-style: solid; color: #000; background: #eee; }
#title h1 { font-size: 190%; }
#vendor_notice { padding: 2em; margin: 1em; background: #000000; color: #ff0000; font-size: 150%; display: none; }
#nobad { padding: 2em; margin: 1em; background: #ff3333; display: none; }
#nobad div { font-size: 150%; margin: 0.5em; }
#noevade { padding: 1em; margin: 1em; background: green; display: none; }
#overblock { padding: 1em; margin: 1em; background: #ff9933; display: none; }
#evadable { padding: 1em; margin: 1em; background: #ff3333; display: none; }
#urlblock { padding: 1em; margin: 1em; background: #ffff00 ; display: none; }
#urlblock div { font-size: 150%; margin: 0.5em; }
#notice { padding: 1em; margin: 1em; background: #e9f2e1; display: none; }
#warnings { padding: 1em; margin: 1em; background: #e3a79f; display: none; }
#process { padding: 1em; margin: 1em; background: #f2f299; }
#debug { padding: 1em; margin: 1em; }
.desc { font-size: 110%; }
.srclink { font-variant: small-caps; }
.trylink { font-variant: small-caps; }
#eicar { font-family: Lucida Sans Typewriter,Lucida Console,monaco,Bitstream Vera Sans Mono,monospace; padding: 0.5em; margin: 0.5em; border-style: solid; border-width: 1px; }
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/DuckPAN/Cmd/Server.pm view on Meta::CPAN
return $self->change_css($js);
}
# Rewrite all relative asset links in CSS
# Capture leading quote, insert $hostname, append filename
# E.g url("/assets/background.png") => url("http://duckduckgo.com/assets/background.png")
sub change_css {
my ( $self, $css ) = @_;
my $hostname = $self->hostname;
$css =~ s!:\s*url\((["'])?/!:url\($1http://$hostname/!g;
return $css;
view all matches for this distribution
view release on metacpan or search on metacpan
share/circos.conf.tt2 view on Meta::CPAN
<image>
dir* = [% dir %]/Circos/[% id %]
file* = [% id %].circos.png
background* = white
# radius of inscribed circle in image
radius = 1500p
background = white
# by default angle=0 is at 3 o'clock position
angle_offset = -90
24bit = yes
view all matches for this distribution
view release on metacpan or search on metacpan
scripts/es-search.pl view on Meta::CPAN
$agg{$top_agg} = { field => $field, %params };
if( $OPT{'bg-filter'} && $top_agg eq 'significant_terms' ) {
my $bgf = App::ElasticSearch::Utilities::QueryString->new();
my $bgq = $bgf->expand_query_string($OPT{'bg-filter'});
$agg{$top_agg}->{background_filter} = $bgq->query;
}
if( exists $sub_agg{by} ) {
$agg_header = "$OPT{by}\t" . $agg_header;
scripts/es-search.pl view on Meta::CPAN
--show Comma separated list of fields to display, default is ALL, switches to tab output
--tail Continue the query until CTRL+C is sent
--top Perform an aggregation on the fields, by a comma separated list of up to 2 items
--by Perform an aggregation using the result of this, example: --by cardinality:src_ip
--with Perform a sub aggregation on the query
--bg-filter Only used if --top aggregation is significant_terms, applies a background filter
--match-all Enables the ElasticSearch match_all operator
--interval When running aggregations, wrap the aggreation in a date_histogram with this interval
--prefix Takes "field:string" and enables the Lucene prefix query for that field
--exists Field which must be present in the document
--missing Field which must not be present in the document
scripts/es-search.pl view on Meta::CPAN
For terms aggregations, adds a C<MISSING> bucket.
=item B<bg-filter>
Only used if the C<--top> aggregation is C<significant_terms>. Sets the
background filter for the C<significant_terms> aggregation.
es-search.pl --top significant_terms:src_ip method:POST file:\/get\/sensitive_data --bg-filter method:POST
=item B<interval>
view all matches for this distribution
view release on metacpan or search on metacpan
bin/evalserver view on Meta::CPAN
-h FOO, --host FOO Listen on host FOO (default: localhost)
-p FOO, --port FOO Listen on port FOO (default: 14400)
-u FOO, --user FOO Eval code as user FOO (default: nobody)
-t FOO, --timeout FOO Kill code after FOO seconds (default: 10)
-l FOO, --limit FOO Resource limit in megabytes (default: 50)
-d, --daemonize Run in the background
-U, --unsafe Don't chroot or set limits (no root needed)
-v, --version Print version
-h, --help Print this usage message
=head1 AUTHOR
view all matches for this distribution
view release on metacpan or search on metacpan
share/status/app/css/app.css view on Meta::CPAN
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
background-image: url("../img/glyphicons-halflings-red.png");
}
.icon-green,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
share/status/app/css/app.css view on Meta::CPAN
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
background-image: url("../img/glyphicons-halflings-green.png");
}
#status {
margin: 0.5em;
}
.accordion-body {
background: #eee;
padding-left: 1em;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/FTPThis.pm view on Meta::CPAN
chdir $self->{root} or die "Can't chdir to $self->{root}: $!";
local @ARGV = (
"-C=$dir/conf",
"-p", $self->{port},
"-s", # daemon mode (not background, which is -S)
);
my $ftpd = Net::FTPServer::RO_FTPThis::Server->run;
}
1;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/FargateStack/Pod.pm view on Meta::CPAN
=head1 AUTOSCALING
=head2 Overview
For services that experience variable load, such as HTTP applications or
background job processors, C<App::FargateStack> can automate the process of
scaling the number of running tasks up or down to meet demand. This ensures
high availability during traffic spikes and saves costs during quiet periods.
The framework integrates with AWS Application Auto Scaling to provide target
tracking scaling policies. This allows you to define a target metric - such as
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Fasops/Command/xlsx.pm view on Meta::CPAN
);
$format_of->{snp} = {};
$format_of->{indel} = {};
# background
my $bg_of = {};
# 15
my @colors = (
22, # Gray-25%, silver
lib/App/Fasops/Command/xlsx.pm view on Meta::CPAN
$sheet->write( $pos_row + $i,
$col_cursor, $base, $format_of->{snp}{$base_color} );
}
}
# outgroup bases with no background colors
if ( $opt->{outgroup} ) {
my $base_color = $var->{snp_outgroup_base} . "unknown";
$sheet->write(
$pos_row + $seq_count + 1,
$col_cursor,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/FastishCGI.pm view on Meta::CPAN
if ( $self->{css} ) {
$self->{css} = sprintf '<link href="%s" rel="stylesheet" type="text/css">', $self->{css};
} else {
$self->{css} = <<CSS;
<style type="text/css">
pre { background-color: white; padding: 1em; border: 2px solid orange; color: black; }
body {color: black; background-color: grey; }
.err_msg {color: black; background-color: orange; }
</style>
CSS
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/FirefoxUtils.pm view on Meta::CPAN
Pause and unpause Firefox alternately.
A modern browser now runs complex web pages and applications. Despite browser's
power management feature, these pages/tabs on the browser often still eat
considerable CPU cycles even though they only run in the background. Pausing
(kill -STOP) the browser processes is a simple and effective way to stop CPU
eating on Unix and prolong your laptop battery life. It can be performed
whenever you are not using your browser for a little while, e.g. when you are
typing on an editor or watching a movie. When you want to use your browser
again, simply unpause (kill -CONT) it.
lib/App/FirefoxUtils.pm view on Meta::CPAN
Pause (kill -STOP) Firefox.
A modern browser now runs complex web pages and applications. Despite browser's
power management feature, these pages/tabs on the browser often still eat
considerable CPU cycles even though they only run in the background. Pausing
(kill -STOP) the browser processes is a simple and effective way to stop CPU
eating on Unix and prolong your laptop battery life. It can be performed
whenever you are not using your browser for a little while, e.g. when you are
typing on an editor or watching a movie. When you want to use your browser
again, simply unpause (kill -CONT) it.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Followme/Initialize.pm view on Meta::CPAN
}
pre kbd {
color: #060;
}
pre {
background: #eee;
padding: 0.5em;
overflow: auto;
}
blockquote {
background: #eee;
border-left: medium solid #ccc;
margin: 1em 0;
padding: 0.5em;
}
blockquote :first-child {
lib/App/Followme/Initialize.pm view on Meta::CPAN
/*
Header
*****************/
header {
padding: 0;
background: #222;
border-radius: 6px;
}
.title {
padding: 16px;
font-size: 1.75em;
lib/App/Followme/Initialize.pm view on Meta::CPAN
/*
Footer
*****************/
footer {
padding: 8px;
background: #222;
border-radius: 6px;
}
.footer-content a {
padding: 16px;
text-decoration: none;
lib/App/Followme/Initialize.pm view on Meta::CPAN
/*
Menu
*****************/
.dropbtn {
font-size: 1.75em;
background-color: #222;
color: #aaa;
border: none;
cursor: pointer;
}
.dropdown {
lib/App/Followme/Initialize.pm view on Meta::CPAN
}
.dropdown-content {
display: none;
position: absolute;
right: 0;
background-color: #222;
min-width: 160px;
border-radius: 6px;
z-index: 1;
}
.dropdown-content a {
lib/App/Followme/Initialize.pm view on Meta::CPAN
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
color:#fff;
background-color: #222;
border-color: #222;
}
/*
Photo Gallery
*****************/
lib/App/Followme/Initialize.pm view on Meta::CPAN
height: 0;
width: 0;
text-align: center;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.8);
opacity: 0;
}
.lightbox img {
max-width: 90%;
lib/App/Followme/Initialize.pm view on Meta::CPAN
transition: opacity 0.6s;
}
.light-btn {
color: #fafafa;
background-color: #333;
border: solid 3px #777;
padding: 5px 15px;
border-radius: 1px;
text-decoration: none;
cursor: pointer;
lib/App/Followme/Initialize.pm view on Meta::CPAN
top: 45%;
z-index: 99;
}
.light-btn:hover {
background-color: #111;
}
.btn-prev {
left: 7%;
}
lib/App/Followme/Initialize.pm view on Meta::CPAN
.btn-close {
position: absolute;
right: 2%;
top: 2%;
color: #fafafa;
background-color: #92001d;
border: solid 5px #ef4036;
padding: 10px 15px;
border-radius: 1px;
text-decoration: none;
}
.btn-close:hover {
background-color: #740404;
}
#>>> copy text _templates/convert_page.htm
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Framework/Lite.pm view on Meta::CPAN
return ($rc, @results) ;
}
#----------------------------------------------------------------------
#Execute a command in the background, gather output, return status.
#If timeout is specified (in seconds), process is killed after the timeout period.
#
sub _run_timeout
{
my $this = shift ;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Framework.pm view on Meta::CPAN
Selecting this extension converts the command line script into a daemon (see L<App::Framework::Extension::Daemon>)
=item Filter
Sets up the application for file filtering, the framework doing most of the work in the background (see L<App::Framework::Extension::Filter>).
=item Find
Sets up the application for file finding, the framework doing most of the work in the background
=back
=item Features
view all matches for this distribution
view release on metacpan or search on metacpan
scripts/generate_index.pl view on Meta::CPAN
<title>$config{package_name} Coverage Report</title>
<style>
body { font-family: sans-serif; }
table { border-collapse: collapse; width: 100%; }
th, td { border: 1px solid #ccc; padding: 8px; text-align: left; }
th { background-color: #f2f2f2; }
.low { background-color: #fdd; }
.med { background-color: #ffd; }
.high { background-color: #dfd; }
.badges img { margin-right: 10px; }
.disabled-icon {
opacity: 0.4;
cursor: default;
}
scripts/generate_index.pl view on Meta::CPAN
border-radius: 4px;
font-weight: bold;
color: white;
font-size: 0.9em;
}
.badge-good { background-color: #4CAF50; }
.badge-warn { background-color: #FFC107; }
.badge-bad { background-color: #F44336; }
.summary-row {
font-weight: bold;
background-color: #f0f0f0;
}
td.positive { color: green; font-weight: bold; }
td.negative { color: red; font-weight: bold; }
td.neutral { color: gray; }
/* Show cursor points on the headers to show that they are clickable */
th { background-color: #f2f2f2; cursor: pointer; }
th.sortable {
cursor: pointer;
user-select: none;
white-space: nowrap;
}
scripts/generate_index.pl view on Meta::CPAN
.sparkline {
display: inline-block;
vertical-align: middle;
}
tr.cpan-fail td {
background-color: #fdd;
}
tr.cpan-unknown td {
background-color: #eee;
color: #666;
}
tr.cpan-na td {
background-color: #ffffde;
color: #666;
}
.new-failure {
background: #c00;
color: #fff;
font-weight: bold;
padding: 2px 6px;
border-radius: 4px;
font-size: 0.85em;
scripts/generate_index.pl view on Meta::CPAN
}
.notice strong {
font-weight: bold;
}
.notice.perl-version-cliff {
background-color: #fff3cd; /* soft amber */
border: 1px solid #ffeeba;
color: #856404;
}
.notice.perl-version-cliff a {
color: #533f03;
scripts/generate_index.pl view on Meta::CPAN
.notice.perl-version-cliff a:hover {
text-decoration: none;
}
.notice.locale-cliff {
border-left: 4px solid #d97706;
background: #fffbeb;
padding: 0.5em 1em;
}
.notice.rt-issues {
background: #fff6e5;
border-left: 4px solid #d9822b;
}
table.root-causes {
border-collapse: collapse;
width: 100%;
scripts/generate_index.pl view on Meta::CPAN
border: 1px solid #ccc;
padding: 8px;
vertical-align: top;
}
table.root-causes tr.high {
background-color: #dfd;
}
table.root-causes tr.med {
background-color: #ffd;
}
table.root-causes tr.low {
background-color: #fdd;
}
</style>
</head>
<body>
<div class="badges">
scripts/generate_index.pl view on Meta::CPAN
data: {
datasets: [{
label: 'Total Coverage (%)',
data: dataPoints,
borderColor: 'green',
backgroundColor: 'rgba(0,128,0,0.1)',
pointRadius: 5,
pointHoverRadius: 7,
pointStyle: 'circle',
fill: false,
tension: 0.3,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/GUI/Juliagraph.pm view on Meta::CPAN
on one spot. There are two conditions that can trigger that. Either you run
out of iterations (exceeded the maximal interation I<count>). Please note,
that the actual number is the displayed number squared. This gives you a
wider range eof options and a little more comfort while changing the value.
When the computation runs out of iterations, the current pixel will get
the background color. The second stop criterion is fulfilled when
the value exceeds the bailout limit (I<Value>), which is also the displayed
number squared. In the right corner you got ten different ways how to compute
the amount of z. Mathematicians call them merics. They mostly influence
the shape around the main shape (the crwon - corona).
lib/App/GUI/Juliagraph.pm view on Meta::CPAN
</p>
This page is about mapping the iteration number at bailout to a color.
To be able to do that better you can preview here the color rainbow
between the first and second section. Below the color rainbow is another
this monochrome strip. It displayes the currently active background color.
The rainbow is from left (low iteration number) to right (high).
The first section starts with a checkbox. When deselected, the fractal
gets a gray scale. When selected all color choices are in effect. The
rainbow goes from begin color number to end color number over every color
lib/App/GUI/Juliagraph.pm view on Meta::CPAN
<img src="https://raw.githubusercontent.com/lichtkind/App-GUI-Juliagraph/master/img/POD/Tab_Color.png" alt="" width="630" height="410">
</p>
This page helps you to select the color that will be used to paint the fractal.
You can see them in the middle row.
The background color is often the one at the most left. That is why it
is marked by a vertical bar. The colors are numbered from left to right
with 1 to 11.
The first section on the pages is for loading and saving custom sets of
colors. Please use the delete button carefully. C<New> saves the current
view all matches for this distribution
view release on metacpan or search on metacpan
data/bladder_cancer_GEO.txt view on Meta::CPAN
Platform: GPL8786 20 Samples
FTP download: GEO (CEL) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE39nnn/GSE39093/
Series Accession: GSE39093 ID: 200039093
285. Stability of miRNA in FFPE tumour samples exhibiting degraded mRNA [Bladder samples]
(Submitter supplied) Background: As degradation of formalin-fixed paraffin-embedded (FFPE) samples limits ability to expression profile, we explored factors predicting success for FFPE profiling and investigated an approach overcoming this limitation...
Organism: Homo sapiens
Type: Expression profiling by array
Platform: GPL5188 141 Samples
FTP download: GEO (CEL) ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE39nnn/GSE39016/
Series Accession: GSE39016 ID: 200039016
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/GitGot/Outputter/dark.pm view on Meta::CPAN
package App::GitGot::Outputter::dark;
our $AUTHORITY = 'cpan:GENEHACK';
$App::GitGot::Outputter::dark::VERSION = '1.339';
# ABSTRACT: Color scheme appropriate for dark terminal backgrounds
use 5.014;
use Types::Standard -types;
use App::GitGot::Types;
lib/App/GitGot/Outputter/dark.pm view on Meta::CPAN
=encoding UTF-8
=head1 NAME
App::GitGot::Outputter::dark - Color scheme appropriate for dark terminal backgrounds
=head1 VERSION
version 1.339
view all matches for this distribution
view release on metacpan or search on metacpan
docs/index.html view on Meta::CPAN
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #e0e0e0;
background: #0a0a0a;
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
docs/index.html view on Meta::CPAN
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(ellipse at 25% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
radial-gradient(ellipse at 75% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
radial-gradient(ellipse at 50% 25%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
z-index: -2;
}
docs/index.html view on Meta::CPAN
.star {
position: absolute;
width: 2px;
height: 2px;
background: white;
border-radius: 50%;
animation: starfield 20s linear infinite;
}
.star:nth-child(odd) {
docs/index.html view on Meta::CPAN
.shooting-star {
position: absolute;
width: 12px;
height: 4px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
border-radius: 50%;
opacity: 0;
animation: shootingStar 4s linear infinite;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
docs/index.html view on Meta::CPAN
position: absolute;
top: 50%;
left: -30px;
width: 30px;
height: 1px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
transform: translateY(-50%);
}
.shooting-star:nth-child(even) {
animation-delay: -2s;
docs/index.html view on Meta::CPAN
margin: 0 auto;
padding: 0 20px;
}
header {
background: rgba(10, 10, 10, 0.8);
backdrop-filter: blur(20px);
padding: 1.5rem 0;
border-bottom: 1px solid rgba(102, 126, 234, 0.3);
position: sticky;
top: 0;
docs/index.html view on Meta::CPAN
}
.git-logo {
width: 50px;
height: 50px;
background: url('assets/gitktti_logo.png') center/contain no-repeat;
filter: drop-shadow(0 0 15px rgba(240, 101, 67, 0.5));
transition: all 0.3s ease;
}
.git-logo:hover {
docs/index.html view on Meta::CPAN
}
.hero-logo {
width: 150px;
height: 150px;
background: url('assets/gitktti_logo.png') center/contain no-repeat;
margin: 0 auto 2rem;
filter: drop-shadow(0 0 30px rgba(240, 101, 67, 0.6));
animation: float 4s ease-in-out infinite;
}
.hero h1 {
font-size: 5rem;
margin-bottom: 1rem;
text-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
background: linear-gradient(45deg, #667eea, #764ba2, #ff6b6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: float 6s ease-in-out infinite;
font-weight: 900;
letter-spacing: -2px;
}
docs/index.html view on Meta::CPAN
animation: slideInRight 1.5s ease-out 1s both;
}
.cta-button {
display: inline-block;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
padding: 20px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
docs/index.html view on Meta::CPAN
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.cta-button:hover::before {
left: 100%;
docs/index.html view on Meta::CPAN
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
border-color: rgba(102, 126, 234, 0.5);
}
.main-content {
background: rgba(20, 20, 20, 0.8);
margin: 2rem 0;
border-radius: 30px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(20px);
docs/index.html view on Meta::CPAN
gap: 3rem;
margin-bottom: 4rem;
}
.feature-card {
background: rgba(30, 30, 30, 0.8);
padding: 3rem;
border-radius: 25px;
text-align: center;
border: 1px solid rgba(102, 126, 234, 0.3);
transition: all 0.4s ease;
docs/index.html view on Meta::CPAN
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
opacity: 0;
transition: opacity 0.3s ease;
}
.feature-card:hover::before {
docs/index.html view on Meta::CPAN
z-index: 1;
font-size: 1.1rem;
}
.aliases-section {
background: rgba(15, 15, 15, 0.9);
padding: 6rem 2rem;
border-top: 1px solid rgba(102, 126, 234, 0.3);
border-bottom: 1px solid rgba(102, 126, 234, 0.3);
}
docs/index.html view on Meta::CPAN
max-width: 1000px;
margin: 0 auto;
}
.alias-item {
background: rgba(30, 30, 30, 0.8);
padding: 2rem;
border-radius: 20px;
border-left: 4px solid #667eea;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
docs/index.html view on Meta::CPAN
border-color: rgba(102, 126, 234, 0.5);
}
.alias-item code {
font-family: 'Monaco', 'Menlo', monospace;
background: rgba(102, 126, 234, 0.2);
padding: 0.8rem 1.2rem;
border-radius: 10px;
font-weight: bold;
color: #667eea;
font-size: 1.2rem;
docs/index.html view on Meta::CPAN
color: #b0b0b0;
margin-bottom: 3rem;
}
.code-block {
background: rgba(10, 10, 10, 0.9);
color: #e2e8f0;
padding: 3rem;
border-radius: 20px;
margin: 3rem auto;
max-width: 800px;
docs/index.html view on Meta::CPAN
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b);
border-radius: 20px 20px 0 0;
}
/* Syntax highlighting colors */
.code-block .comment {
docs/index.html view on Meta::CPAN
.code-block .string {
color: #ce9178;
}
.workflow-section {
background: rgba(15, 15, 15, 0.9);
padding: 6rem 2rem;
border-top: 1px solid rgba(102, 126, 234, 0.3);
}
.workflow-section h2 {
docs/index.html view on Meta::CPAN
max-width: 900px;
margin: 0 auto;
}
.workflow-step {
background: rgba(30, 30, 30, 0.8);
margin: 2rem 0;
padding: 3rem;
border-radius: 25px;
border-left: 5px solid #667eea;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
docs/index.html view on Meta::CPAN
line-height: 1.8;
font-size: 1.1rem;
}
.workflow-step code {
background: rgba(102, 126, 234, 0.2);
padding: 0.6rem 1rem;
border-radius: 8px;
font-family: 'Monaco', 'Menlo', monospace;
color: #667eea;
font-size: 1rem;
text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}
footer {
background: rgba(0, 0, 0, 0.9);
color: white;
text-align: center;
padding: 3rem 0;
margin-top: 2rem;
border-top: 1px solid rgba(102, 126, 234, 0.3);
docs/index.html view on Meta::CPAN
<p>Run diagnostic tests</p>
</div>
</div>
</section>
<section class="modernization-section" style="background: rgba(15, 15, 15, 0.9); padding: 6rem 2rem; border-top: 1px solid rgba(102, 126, 234, 0.3); border-bottom: 1px solid rgba(102, 126, 234, 0.3);">
<h2 style="text-align: center; font-size: 3.5rem; margin-bottom: 4rem; color: #e0e0e0; text-shadow: 0 0 30px rgba(118, 75, 162, 0.5); font-weight: 800;">ð Version 2.0 - Modern Architecture</h2>
<div style="max-width: 1000px; margin: 0 auto;">
<div style="background: rgba(30, 30, 30, 0.8); padding: 3rem; border-radius: 25px; border: 1px solid rgba(102, 126, 234, 0.3); backdrop-filter: blur(10px); margin-bottom: 3rem;">
<h3 style="font-size: 1.8rem; margin-bottom: 2rem; color: #667eea; font-weight: 700;">What's New in 2.0?</h3>
<ul style="color: #b0b0b0; line-height: 1.8; font-size: 1.1rem; list-style: none; padding: 0;">
<li style="margin: 1rem 0; padding-left: 2rem; position: relative;">
<span style="position: absolute; left: 0; color: #667eea;">â</span>
<strong>CPAN Distribution:</strong> Install with <code style="background: rgba(102, 126, 234, 0.2); padding: 0.4rem 0.8rem; border-radius: 6px; color: #667eea;">cpanm App::GitKtti</code>
</li>
<li style="margin: 1rem 0; padding-left: 2rem; position: relative;">
<span style="position: absolute; left: 0; color: #667eea;">â</span>
<strong>Modern Commands:</strong> <code style="background: rgba(102, 126, 234, 0.2); padding: 0.4rem 0.8rem; border-radius: 6px; color: #667eea;">gitktti-*</code> instead of <code style="background: rgba(102, 126, 234,...
</li>
<li style="margin: 1rem 0; padding-left: 2rem; position: relative;">
<span style="position: absolute; left: 0; color: #667eea;">â</span>
<strong>Better Documentation:</strong> Built-in help with <code style="background: rgba(102, 126, 234, 0.2); padding: 0.4rem 0.8rem; border-radius: 6px; color: #667eea;">--help</code> on every command
</li>
</ul>
</div>
</div>
</section>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Greple/colors.pm view on Meta::CPAN
greple -Mcolors --solarized ...
=head1 DESCRIPTION
Provides predefined color schemes optimized for light, dark, and
Solarized terminal backgrounds. All colors use
L<Term::ANSIColor::Concise> format.
=head2 COLOR FORMAT
=over 4
=item B<RGB format> (e.g., C<K/544>, C<555/100>)
3-digit RGB values (0-5 each) for 216-color palette. Format is
C<foreground/background>. C<K> means black, C<W> means white.
=item B<Hex format> (e.g., C<#002b36>, C<080808>)
6-digit hexadecimal RGB values for 24-bit true color.
lib/App/Greple/colors.pm view on Meta::CPAN
=over 4
=item B<--light>
Color scheme for light background terminals. Uses dark foreground
colors on lighter backgrounds.
=item B<--dark>
Color scheme for dark background terminals. Uses light foreground
colors on darker backgrounds.
=item B<--bright>
Alias for B<--light>.
=item B<--grey24>
=item B<--grey24-bg>
24-level greyscale colors. B<--grey24> uses grey foreground colors,
B<--grey24-bg> uses grey background with contrasting foreground.
=item B<--greyhex>
=item B<--greyhex-bg>
lib/App/Greple/colors.pm view on Meta::CPAN
=item B<--solarized-bg>
Ethan Schoonover's Solarized color palette. B<--solarized> is an
alias for B<--solarized-fg>. B<--solarized-bg> uses Solarized colors
as background.
=back
=head1 SEE ALSO
view all matches for this distribution