Being not very skillful at mathematics, being an introvert and having a short attention span, my life as a IT professional has been interesting to say the least. Being a writer and not being good at expressing myself orally, I find that I am able to convey my thoughts much more readily and accurately through writing. Combine that with my love of programming and you have my Computer Science Blog.
I have a headless LINUX server (CentOS 5.5) attached with a serial cable to a Windows client and I want to use PuTTY to connect to the console on the LINUX host. Here are the file modifications I made.
I recently installed CentOS 5.5 on an old Celeron-D with a TrendNet TEW-623PI Wireless N PCI adapter. It took some poking about on google and centos.org to figure out how to make it work with my access point. Here's the list of modifications I had to make. To give credit where credit is due, some of this is based on "http://wiki.centos.org/HowTos/Laptops/WpaSupplicant".
These are my notes from my experience installing support for NTFS in CentOS 5.5 (x64).
cd /tmp wget "http://apt.sw.be/RPM-GPG-KEY.dag.txt" So I have this VMware guest running Windows XP on a x86_64-based CentOS VMware Server 1-based host.
The clock on the guest was gaining - between 5 and 10 seconds every minute or something ridiculous like that.
Finally I figured out what to do after reading this thread (http://communities.vmware.com/thread/51781?start=0&tstart=0).
On the host:
I just finished reading the Java Language Specification (3rd edition). I don't think I've read anything else related to Java that has been more educational. A lot more of what I was struggling with fits now and I have a lot more confidence in my ability to do something productive with Java now.
On to Beginning J2EE. Oy.
This is just a basic histogram program. The maximum frequency is 30 just to keep it simple (I mean, jeeze, how many words are longer than 30 characters?). I know this is pretty elementary but after 16 years of not thinking algorithmically, it did stretch my brain a bit.
This exercise wasn't especially interesting except that it's the first C code I've written in about 16 years!
I have some files that need parsed and the fields assigned into variables using only bash and other builtin UNIX commands (not Perl). The file is colon delimitted and has the following columns:
Perl has a nice little construct that lets you do something like this:
I frequently find myself wondering "what package does such-n-such a file belong to"?
My favorite rpm command comes to the rescue.<br />rpm -qf <file>
For example, what package does the 'which' command belong to?
I'm gathering data about how my company uses LDAP and need to peruse some rather large chunks of the schema + data and turn it into information I can use to build an extraction routine to use with SAS.
I've decided to use Perl to write a dump routine to spit out data to a file.
Data::Dumper seems like the right place to start, especially if I want to reuse the dumped data in more Perl code. So, I started out learning about
Data::Dumper.