Sponsored Content
Operating Systems AIX Any room left for another drive? Post 302448273 by Scott on Wednesday 25th of August 2010 03:49:57 PM
Old 08-25-2010
Quote:
Originally Posted by plmachiavel
You would be surprised what the past admins did on that machine ... We just received that new client, I guess that is what happens when you out source your business to companies that claim they have the knowledge to do the work but calls you every now and then to know basic stuff ...

Anyway, life is life and I am stucked with that.

Thank you btw that helped
Good ol' outsourcing!

Look after the pennies and the pounds will look after themselves - Idiom Definition - UsingEnglish.com

Not to forget...

You get what you pay for - Idiom Definition - UsingEnglish.com
 

2 More Discussions You Might Find Interesting

1. Programming

Help chat room

i have a project to create o chat system in c.i created server and client but i dont know how to create chat room where people can join.i dont know how to implement a chat room in C....anyone can help please (3 Replies)
Discussion started by: demonmind
3 Replies

2. UNIX for Advanced & Expert Users

Server room drawing software

Hello All, I want to get ride of Excel/word and want some software to draw my server room racks/server and overall topology. Please share you opinion/experience. thanks inadvance (1 Reply)
Discussion started by: Vit0_Corleone
1 Replies
Moose::Meta::Attribute::Native::Trait::Bool(3pm)	User Contributed Perl Documentation	  Moose::Meta::Attribute::Native::Trait::Bool(3pm)

NAME
Moose::Meta::Attribute::Native::Trait::Bool - Helper trait for Bool attributes VERSION
version 2.0603 SYNOPSIS
package Room; use Moose; has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', }, ); my $room = Room->new(); $room->illuminate; # same as $room->is_lit(1); $room->darken; # same as $room->is_lit(0); $room->flip_switch; # same as $room->is_lit(not $room->is_lit); return $room->is_dark; # same as !$room->is_lit DESCRIPTION
This trait provides native delegation methods for boolean values. A boolean is a scalar which can be 1, 0, "", or "undef". DEFAULT TYPE
If you don't provide an "isa" value for your attribute, it will default to "Bool". PROVIDED METHODS
None of these methods accept arguments. o set Sets the value to 1 and returns 1. o unset Set the value to 0 and returns 0. o toggle Toggles the value. If it's true, set to false, and vice versa. Returns the new value. o not Equivalent of 'not $value'. BUGS
See "BUGS" in Moose for details on reporting bugs. AUTHOR
Moose is maintained by the Moose Cabal, along with the help of many contributors. See "CABAL" in Moose and "CONTRIBUTORS" in Moose for details. COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Infinity Interactive, Inc.. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-28 Moose::Meta::Attribute::Native::Trait::Bool(3pm)
All times are GMT -4. The time now is 07:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy