Proprietary software? Counsel objects


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Proprietary software? Counsel objects
# 1  
Old 07-17-2008
Proprietary software? Counsel objects

07-17-2008 01:00 PM
Nathan Zale Dowlen objects to proprietary software, so when he opened his new law office, he outfitted it with Ubuntu Linux and open source software. Cost was the main factor in his decision at first, but he has since come to appreciate the security found in FOSS and the ease of use found with Ubuntu.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Transfer output of a proprietary command to a file

Hi Guys, My problem looks simple. I have a software-proprietary command (not linux) that provides an output, let's say 200 lines. Unfortunately the dumb coders of the software did not include the option ">" or ">>" which allows to transfer output to a file, so I need a way to do that using some... (5 Replies)
Discussion started by: liviusbr
5 Replies

2. UNIX and Linux Applications

JBoss: Difference Standard / proprietary deployment discriptor

can anyone please tell me what is the difference btwn a standard deployment discriptor and a proprietary one???:wall: (3 Replies)
Discussion started by: htshshrm2
3 Replies

3. UNIX for Advanced & Expert Users

Proprietary vs. open Unix

Howdy all, I've used various applications in the past that ran in unix and windoze and unfortunately several of those programs are migrating to a windoze only environment so management is bagging the proprietary unix boxes in the process. AArrgggghh So here's my question for all you serious... (3 Replies)
Discussion started by: bulletbob
3 Replies
Login or Register to Ask a Question
Validation::Class::Collection(3pm)			User Contributed Perl Documentation			Validation::Class::Collection(3pm)

NAME
Validation::Class::Collection - Generic Container Class for Various Collections VERSION
version 7.70 SYNOPSIS
use Validation::Class::Collection; my $foos = Validation::Class::Collection->new; $foos->add(foo => Foo->new); print $foos->count; # 1 object DESCRIPTION
Validation::Class::Collection provides an all-purpose container for hash objects. This class is primarily used as a base class for collection management classes. METHODS
new my $self = Validation::Class::Collection->new; add $self = $self->add(foo => Foo->new); $self->add(foo => Foo->new, bar => Bar->new); clear $self = $self->clear; count my $count = $self->count; each $self = $self->each(sub{ my ($name, $object) = @_; ... }); find my $matches = $self->find(qr/update_/); # hashref get my $object = $self->get($name); has if ($self->has($name)) { ... } hash my $hash = $self->hash; keys my @keys = $self->keys; list my @objects = $self->list; remove $object = $self->remove($name); values my @objects = $self->values; AUTHOR
Al Newkirk <anewkirk@ana.io> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Al Newkirk. 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 Validation::Class::Collection(3pm)