Need help naming this Linux cartoon


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Cartoons for Geeks Need help naming this Linux cartoon
# 1  
Old 05-24-2012
Need help naming this Linux cartoon

Hi All,

I am desperate to find this online cartoon (or at least the name of it) from the early 2000's.

It was about a bunch of farm yard animals working in a UNIX-dominated IT office in various IT roles (Penguins were the Linux administrators, squirrels were web-designers - I think - etc ...).

The general theme was poking fun at UNIX quirks, WIndows monopolies, IT stereotypes, etc ...

It was written by a young couple.

I think the name had "oodles" or "doodles" or "bubbles" or similar in the title??

Uhm, that's about all I remember.

Any help would be appreciated.

Cheers
Dave
 
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. What is on Your Mind?

Looking for cartoon

Hey, I was just reminded to something: Years ago I have seen a cartoon, maybe dilbert-style?, with a couple of nerds talking. The title was "Computer-people probably aliens?" and the guys were saying all kinds of unix-commands with funny sounds, like gawk, grep, sed, awk and so on. Does... (0 Replies)
Discussion started by: PatrickBaer
0 Replies

2. UNIX for Advanced & Expert Users

Naming conventions for shared libraries in Linux

Hello, I'm wondering what is the naming conventions for *.so shared libraries in linux. For example, a library in /lib, say libcrypt-2.7.so has a symbolic link called libcrypt.so.1 pointing to it, yet libncursesw.so.5.6 has a symbolic link called libncursesw.so.5 pointing to it. What is the... (2 Replies)
Discussion started by: neked
2 Replies
Login or Register to Ask a Question
Linux::Distribution::Packages(3pm)			User Contributed Perl Documentation			Linux::Distribution::Packages(3pm)

NAME
Linux::Distribution::Packages - list all packages on various Linux distributions SYNOPSIS
use Linux::Distribution::Packages qw(distribution_packages distribution_write); $linux = new Linux::Distribution::Packages({'format' => 'csv', 'output_file' => 'packages.csv'}); $linux->distribution_write(); # Or you can (re)set the options when you write. $linux->distribution_write({'format' => 'xml', 'output_file' => 'packages.xml'}); # If you want to reload the package data $linux->distribution_packages(); DESCRIPTION
This is a simple module that uses Linux::Distribution to guess the linux distribution and then uses the correct commands to list all the packages on the system and then output them in one of three formats: native, csv, and xml. Distributions currently working: debian, ubuntu, fedora, redhat, suse, gentoo, slackware, redflag. The module inherits from Linux::Distribution, so can also use its calls. EXPORT None by default. TODO
* Add the capability to correctly get packages for all recognized distributions. * Seperate out parsing from writing. Parse data to hash and give access to hash. Then write the formatted data from the hash. AUTHORS
Judith Lebzelter, <judith@osdl.org> Alberto Re, <alberto@accidia.net> COPYRIGHT AND LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available. perl v5.10.1 2006-04-19 Linux::Distribution::Packages(3pm)