The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:CTKlib ABALAMA"

CTKx - Singleton CTK extension River stage one • 2 direct dependents • 2 total dependents

Extension for working with CTK as "Singleton Pattern" c, ctk my $c = CTKx->instance->c; my $ctk = CTKx->instance->ctk; Returns ctk-object...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK - CTK ToolKit library (CTKlib) River stage one • 2 direct dependents • 2 total dependents

CTKlib - is library that provides "extended-features" (utilities) for your robots written on Perl. Most of the functions and methods this module written very simple language and easy to understand. To work with CTKlib, you just need to start using it...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::CLI - Command line interface River stage one • 2 direct dependents • 2 total dependents

Command line interface. Prompt and select methods cli_prompt my $v = cli_prompt('Your name:', 'anonymous'); debug( "Your name: $v" ); Show prompt string for typing data cli_select my $v = cli_select('Your select:',[qw/foo bar baz/],'bar'); debug( "Yo...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::DBI - Database independent interface for CTKlib River stage one • 2 direct dependents • 2 total dependents

For example: print($mso->field("select sysdate() from dual")); new # MySQL connect my $mso = CTK::DBI->new( -dsn => 'DBI:mysql:database=TEST;host=192.168.1.1', -user => 'login', -pass => 'password', -connect_to => 5, -request_to => 60 #-attr => {}, #...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Skel - Helper for building project's skeletons River stage one • 2 direct dependents • 2 total dependents

Helper for building project's skeletons new my $skel = CTK::Skel->new( -name => "ProjectName", -root => "/path/to/project/dir", -skels => { foo => 'My::Foo::Module', # ... }, -vars => { VAR1 => "abc", VAR2 => "def", # ... }, -debug => 1, ); Returns s...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::App - Application interface River stage one • 2 direct dependents • 2 total dependents

The module provides application functionality Features: * Configuration supported as CTK plugin * Logging supported as CTK plugin CONFIGURATION For enabling configuration specify the follow arguments in constructor: root => "/path/to/conf", configfil...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Helper - Helper for building CTK scripts. CLI user interface River stage one • 2 direct dependents • 2 total dependents

Helper for building CTK scripts No public subroutines nope, skip, yep Internal use only! See "README"...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Log - CTK Logging River stage one • 2 direct dependents • 2 total dependents

Logger class Log level overview: LVL SLL NAME ALIAS NOTE 0 7 debug debugging messages, copious tracing output 1 6 info normal messages, no action required 2 5 notice note unusual conditions 3 4 warning warn possible problem, not necessarily error 4 3...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::UtilXS - CTK XS Utilities River stage one • 2 direct dependents • 2 total dependents

CTK XS Utilities shred shred( "/path/to/file" ) or die("Can't shred file"); Wipes file and remove it. Do a more secure overwrite of given files or devices, to make it harder for even very expensive hardware probing to recover the data. wipe wipe( "/p...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Crypt - Cryptography frontend module River stage one • 2 direct dependents • 2 total dependents

Cryptography frontend module gpg_init my $gpg_instance = gpg_init( -gpgbin => "/usr/bin/gpg", -gpghome => "/gpg/homedir", -gpgconf => "/gpg/homedir/gpg.conf", -gpgopts => ["verbose", "yes"], -publickey => "/path/to/public.key", -privatekey => "/path/...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Digest - CTK Digest base class River stage one • 2 direct dependents • 2 total dependents

CTK Digest base class...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Plugin - Base class for CTK plugins writing River stage one • 2 direct dependents • 2 total dependents

A "plugin" for the CTK is simply a Perl module which exists in a known package location (CTK::Plugin::*) and conforms to a our standard, allowing it to be loaded and used automatically. See CTK::Plugin::Test for example init Allows you to initialize ...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Util - CTK Utilities River stage one • 2 direct dependents • 2 total dependents

Public utility functions. No function is not exported by default! FUNCTIONS All subroutines are listed in alphabetical order basetime $secs = basetime(); The time at which the program began running, in seconds. This function returns result of express...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Timeout - Provides execute the code reference wrapped with timeout River stage one • 2 direct dependents • 2 total dependents

This class provides execute the code reference wrapped with timeout new Creates the timeout object my $to = CTK::Timeout->new(); Creates the timeout object without the POSIX "sigaction" supporting (forced off) my $to = CTK::Timeout->new(0); error die...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Command - Utilities to extend common UNIX commands River stage one • 2 direct dependents • 2 total dependents

Utilities to extend common UNIX commands The module is used to extend common UNIX commands. In all cases the functions work from @ARGV rather than taking arguments. This makes them easier to deal with in Makefiles. Call them like this: perl -MCTK::Co...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Daemon - Abstract class to implement Daemons River stage one • 2 direct dependents • 2 total dependents

Abstract class to implement Daemons FEATURES * Write PID file /var/run/$name.pid to make sure only one instance is running. * Correctly daemonize (redirect STDIN/STDOUT) * Restart by stop/start, exec, or signal HUP * Daemon restart on error * Handle ...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::TFVals - True & False values conversions River stage one • 2 direct dependents • 2 total dependents

True & False values conversions FUNCTIONS uv2zero This function returns the 0 value if argument is undef. uv2zero( $value ); uv2null This function returns the "" value if argument is undef. uv2null( $value ); uv2empty See "uv2null" uv2void See "uv2nu...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::FilePid - The Pid File simple interface River stage one • 2 direct dependents • 2 total dependents

This software manages a pid file for you. It will create a pid file, query the process within to discover if it's still running, and remove the pid file. This module is based on File::Pid module new my $pidfile = CTK::FilePid->new; my $thisfile = Fil...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Skel::Tiny - Tiny project skeleton for CTK::Helper River stage one • 2 direct dependents • 2 total dependents

Tiny project skeleton for CTK::Helper no public methods build, dirs, pool Main methods. For internal use only...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC

CTK::Skel::Extra - Extra project skeleton for CTK::Helper River stage one • 2 direct dependents • 2 total dependents

Extra project skeleton for CTK::Helper no public methods build, dirs, pool Main methods. For internal use only...

ABALAMA/CTKlib-2.09 - 10 Sep 2022 10:53:50 UTC
42 results (0.025 seconds)