Contribute  :  Calendar  :  Advanced Search  :  Site Statistics  :  Directory  :  Web Resources  :  Polls  
    Nat's Geeklog Just another brick in the Geeklog wall    
 Welcome to Nat's Geeklog
 Thursday, November 20 2008 @ 03:40 AM CST
My Sites Web Apps Links Home
Awesome Moonwalks
Moonwalk Admin
Rental Orders
United Kids
Baby Zack
TeamSpeak Admin
Screamgames DEV
Screamgames
SquirrelMail
My Directory
Library
Bugzilla
Stylesheet Builder
Set Mail Aliases
Capacity Graphs
UNIX Accounts
Text to PDF converter
Subversion Depot
phpMyAdmin
Backups
Music
Monitoring
Logs
Google
Google Reader
Ajax Apps
Slashdot
CNN
IT Manager's Journal
NewsForge
User Friendly
The Ultimates
Netflix
Internet Movie Database
Weather 77479
Hullaballoo Forums
Wells Fargo
BMW
Fort Bend County
City of Sugar Land
Commonwealth Civic Association
Commonwealth Elementary
AMC First Colony 24

Jury Duty

  View Printable Version 
General NewsIt seems that even selecting a jury in Fort Bend county takes longer than can be done before lunch. I had a deceptively filling steak burrito at a local mexican place, and then decided to spend the remaining 60 of my 90 minute lunch walking around historic Richmond. I noticed an Italian place serving Osso Bucco! Darn, too bad I already ate. Now I almost want to be on the jury so I can go back there as well as another popular looking place or two.

I had the misfortune of walking into a gift shop with a confectionery, and thus walked out with two pieces of peanut butter fudge. Sitting on the bench in the cool afternoon tasting the peanutty treat with the sun on my face really made my day.

I got back to the courtroom with 30 minutes to spare, and I noticed that the jury chairs are nice, padded, blue leather chairs. Did I mention that they recline? I'm dead meat after lunch if I am on the jury!

I wonder if it's OK to have a margarita with lunch? Needless to say, I didn't get selected, so I won't get the opportunity... It's probably also not a good idea to do so during jury days, but having one on the jury selection day can't hurt! Just don't get sloshed. *wink wink*

Interesting note: they pay $40 / day if you are selected on the jury, but not for the jury selection. I guess that's sort of the consolation prize for those who have to return the next day.
 
Post a comment
Comments (0)

Holy cr@p, I'm watching teen soap operas

  View Printable Version 
General NewsI noticed tonight that the baby channel (Noggin) that runs shows like Little Bear, Blues Clues, Barney, etc turns into Teen Soap Opera channel after 5. Wow.... Wife started watching one and didn't want me to switch to something else... and damn, I started following it, too.... There's been a "Degrassi" marathon on tonight that's been on while I've been computing on my laptop. I suppose it's interesting enough for a background show, but it's scary to think that I'd stop computing and do more watching... Like I said, teenage soap opera. More interesting that my wife's soap operas she used to watch, anyway. Is that a bad thing?
 
Post a comment
Comments (0)

Neat Linux tip

  View Printable Version 
UNIXLots of times I have a need to make a backup of a file or such that I end up forgetting about and it sits around taking up disk space. Sometimes in annoyance of this, I have simply skipped making the backup, and have been burned by it. Finally I came up with this alternative:
  1. Make a directory on your desktop called DeleteIn2Weeks. In my case, the full path was /home/guytonw/Desktop/DeleteIn2Weeks
  2. Create the following cron entries:
    0 1 * * * find /home/guytonw/Desktop/DeleteIn2Weeks -mtime +14 -type f -exec echo Deleting {} \;
    1 1 * * * find /home/guytonw/Desktop/DeleteIn2Weeks -mtime +14 -type f -exec rm {} \;
This is nice because any files put in there will automatically be swept away after a sufficient amount of time. (Hopefully I won't need the backup after 2 weeks' time!)
 
Post a comment
Comments (0)

Computer games from the past

  View Printable Version 
Computer Tech StuffLately I've been playing Diablo 2 a lot. It came out in the year 2000, and is still selling on shelves today. Nicely enough, Blizzard has released patches over time that have added items and special game events for really high level characters, not to mention changing the dynamics of skill points. OK, OK, I'm geeking out here.

The main reason I started playing was because I did not want to buy a new laptop to play some of the newer games. One day I'll break down, but it's not necessary just yet... At any rate, it's a lot of fun playing online!

 
Post a comment
Comments (2)

Mod_perl2, apache2.2, and CGI::Ajax notes...

  View Printable Version 
Computer Tech StuffFollowing along in my mod_perl2 notes, I wanted to document how to get CGI::Ajax working with mod_perl2. I hit a couple of snags along the way that are worth noting. First, the generated javascript for my functions was calling httpd? + vars, rather than my URI /modperl_handler/ajax? + vars. This was frustrating, but I determined that it was grabbing httpd from $0, so I changed it locally and the script worked after that. The second snag I hit was because I was instantiating my CGI module globally instead of locally, and I would get segfaults now and then. Instantiating it inside the handler was the right way to go. Here is a working example:
package AjaxTest;

use CGI;
use CGI::Ajax;

use Apache2::RequestRec();
use Apache2::RequestIO();
use Apache2::Const -compile => qw(OK);

sub handler {
    my ($r) = @_;

    my $cgi = new CGI;  # had this outside the handler and was getting segfaults

    # Have to redefine $0 for CGI::Ajax because it's used to call further URLs from
    # javascript ajax functions.  (otherwise it did "httpd?"...)
    local $0 = $ENV{"REQUEST_URI"};
    $0 =~ s/?.*//;

    # Start Ajax stuff
    my $pjx = new CGI::Ajax("test_ajax" => &test_ajax);
    # Don't compress javascript (1 for user fcns only, 2 for all)
    $pjx->JSDEBUG(1);
    # Send stderr to web logs
    $pjx->DEBUG(1);

    print $pjx->build_html( $cgi, &base_page);
    return Apache2::Const::OK;
}

sub base_page {
    return "Ajax mod_perl testmod_perl 2.0.2 on apache 2.2.2 rocks! <p><div id="test">Change me</div><p>nn";
}

sub test_ajax {
    my $time = time();
    return "Test successful; $time<p>";
}

1;
 
Post a comment
Comments (1)

Wireless Network Upgrade

  View Printable Version 
WWW I recently bought the Linksys pre-N router (WRT300N) and a laptop PC card. I hate to say it, but the 4x range that it promises is flat out wrong. I get better connection to my wireless G router (WRT54G) up on the second floor. However, the throughput is amazing - 270 mbit/sec as opposed to 54. I just need to get it working well.

I see that they have come out with some firmware upgrades since I last checked a week ago, and it mentions improving wireless power and performance. We'll see what happens!

 
Post a comment
Comments (1)

Laptop Woes

  View Printable Version 
General NewsSometimes you just can't win. Soon I am going on a 12 day trip where I will need my laptop, and I have three to choose from:
  • The first one is an HP that has a power cord that started fraying at the connection. If I adjust it just so and don't move, then I can get it to charge the battery and run the computer. Additionally, sometimes it overheats when I run a certain application (read: games) and just powers itself off hard.
  • The second one my wife used to use, but she dropped it out of her lap last summer and the headphone and microphone jacks got destroyed when the cords tugged on the unit. The power adapter is angled now as well, but at least it works.
  • The third one got its screen cracked, and I use it with an external monitor. Not good for trips, though.
I guess the best thing to do is go get a USB headphone with boom microphone that I can plug into the second one. Not the best solution (my wife has one and it is not very reliable), but short of getting another laptop, probably the right thing to do.

I don't want to get a new laptop until one comes with wireless-N as part of the package. Hence, I wait and play old games like Diablo 2 when I am not working.

 
Post a comment
Comments (0)

Sam Adams Cherry Wheat

  View Printable Version 
Beer I thought I would start keeping track of the different kinds of beer that I have bought and liked. This probably belongs in a wiki or something else, but for now it gets dumped in the blog, since that's already set up.

I got Sam Adams Cherry Wheat last night and tried a bottle before moving on to Shiner Kolsch. It was good - not too wheaty, which before I got to like wheat beers was a turn-off, and not too sweet. It left a cherry-like aftertaste that was kind of nice. I don't know if I would drink a whole lot at once, but it's good for a beer flight or something like that. I have five more waiting for me, but from the one I had last night, it's a good change from the ordinary and I would buy it again.
 
Post a comment
Comments (0)

My latest suite of Windows apps

  View Printable Version 
General NewsLately I have been making sure that all of the windows computers in the house are updated with the latest software. I guess this was brought about by all of the viruses and security vulnerabilities in Windows. Whatever the reason, read on for my list of apps... (I should note that ALL of these are 100% FREE!)
  • Browser: Firefox, of course. The single biggest hole in Windows is Internet Explorer. Firefox also runs on Windows, Linux, Mac, all of which I use.
  • Email: Thunderbird - there are plenty of mail programs out there, but I like this one. It also runs on Windows, Linux, and Mac.
  • AntiVirus: AVG Free Edition - I have talked about ClamWin elsewhere, but this antivirus package is a little more user friendly and polished. I run ClamWin on my laptop, and AVG everywhere else.
  • Office Productivity: Open Office - the latest version 2 has improved by leaps and bounds, and does most of what almost anyone would use MS Office for. Runs on Windows, Linux, Mac, Solaris, BSD, etc...
  • ZIP: 7-zip - Very broad, powerful zip program. Windows and Linux.
  • Instant Messaging: GAIM - this client speaks Yahoo, AOL, Microsoft, and other IM protocols, and you only have to run this one app. Runs on Windows and Linux.

Some other neat apps:

  • Spyware Removal: Spybot Search and Destroy - this only runs on demand, but is great for cleaning up a PC someone else has been using.
  • Windows License Key: Magical Jellybean's Keyfinder - this will find your registration key for MS windows and office. For my laptop that is about to die, I can save the key (license) so I can install XP Pro on another PC later when it dies. (Just have to get my hands on some install media) I hate how Microsoft was worked it so that you are buying a new copy of Windows with every PC. If your hardware dies, you should not have to repurchase the software!
  • Video Player: VLC media player - This plays a wide variety of formats and also runs on Linux, Mac, and Windows.
  • Remote Control: VNC - sure, windows remote desktop protocol is OK, but VNC runs on Mac, Windows, and Linux so I can display one desktop on any other OS.
  • Hardware: PC Wizard - detailed hardware and performance scans for Windows
  • Privacy: xp-AntiSpy - disble scan-and-report-to-microsoft features in XP.
 
Post a comment
Comments (0)

Open Source Free VPN

  View Printable Version 
WWWCheck it out: Hamachi VPN
 
Post a comment
Comments (0)
 Copyright © 2008 Nat's Geeklog
 All trademarks and copyrights on this page are owned by their respective owners.
Powered By Geeklog 
Created this page in 2.51 seconds