Does Linus Torvalds endorsing Windows 7. Check with gizmodo…..
Related Post
No Related Post
addthis_url = 'http%3A%2F%2Fraxso.net%2F2009%2F11%2Fdoes-linus-torvalds-endorsing-windows-7%2F';
addthis_title = 'Does+Linus+Torvalds+endorsing+Windows+7';
addthis_pub = '';
Like this blog? Why not buy me a cup of coffee?
1. Keep your firewall turned on.
A firewall helps protect your computer from hackers who might try to delete information, crash your computer, or even steal your passwords or credit card numbers. Make sure your firewall is always turned on.
2. Keep your windows operating system up-to-date
High priority updates are critical to the security and reliability of [...]
A small perl script to send out multiple files to your ftp site.
#!/usr/bin/perl
use Net::FTP;
my $host = “ftp.host.com”;
my $user = “ftp_user”;
my $pass = “ftp_pass”;
my @files = split /\n/, `ls your_files*.txt` ;
print “Connecting to your host…\n”;
$ftp = Net::FTP->new($host);
$ftp->login($user, $pass);
$ftp->binary;
foreach my $file (@files) {
print “Uploading $file\n”;
$ftp->put($file) or die “Could not upload”, $ftp->message;
}
$ftp->quit();
Happy scripting……
Related Post
July 30, 2009 — How [...]
Hey, Holiday is already coming and are you already prepared to send post cards or even greeting cards especially to your friends overseas? If not then there is this cool site that I visited that has lots of design and concepts that you can choose from and you can even submit a design and also [...]
Our servers is still using RHEL4 with the latest update and i decided to setup YUM (Yellow Dog Updater, Modified) on all our server and setup a dedicated server that will host as a server repository to all our updates and packages. So this are the steps that i use to setup yum in all [...]
Whenever I search for an e-book about topics I needed to research or books to read I always use a pdf search engine that is easy to use and lots of titles in their database. Book search queen has lots of titles from different topics from different languages. I always got the books that I [...]
Mutt is a small but very powerful text-based mail client for Unix operating systems.
Some of Mutt’s features include:
color support
message threading
MIME support (including RFC2047 support for encoded headers)
PGP/MIME (RFC2015)
various features to support mailing lists, including list-reply
active development community
POP3 support
IMAP support
full control of message headers when composing
support for multiple mailbox formats [...]
