(nicked from brandonhutchinson.com…)





Although you may find a faster Red Hat Linux mirror in your locale,
North American users should find the following mirrors blazingly fast:

1. ftp://ftp.quicknet.nl/
2. ftp://redhat.newaol.com/

Red Hat Linux 9 download links:

ftp.quicknet.nl

wget ftp://ftp.quicknet.nl/pub/Linux/ftp.redhat.com/9/en/iso/i386/shrike-i386-disc1.iso
wget ftp://ftp.quicknet.nl/pub/Linux/ftp.redhat.com/9/en/iso/i386/shrike-i386-disc2.iso
wget ftp://ftp.quicknet.nl/pub/Linux/ftp.redhat.com/9/en/iso/i386/shrike-i386-disc3.iso

redhat.newaol.com

wget ftp://redhat.newaol.com/pub/redhat/linux/9/en/iso/i386/shrike-i386-disc1.iso
wget ftp://redhat.newaol.com/pub/redhat/linux/9/en/iso/i386/shrike-i386-disc2.iso
wget ftp://redhat.newaol.com/pub/redhat/linux/9/en/iso/i386/shrike-i386-disc3.iso



For me, I pulled all three images down in about three hours, at just under 200kb/s…

My bro’s HighTechGeek PC consulting business is off and running! I am trying to help him get set up with all things linux, and we’ve got his site hosted on his wee little linux box now. What’s next? ONLY TIME WILL TELL! The sky’s the limit! 😛

How do you get a better google rank? Link to each other!

I attended the Microsoft Windows Server 2003 / Visual Studio .net 2003 Launch event (hey it was right next door, and it was free!). Mostly marketing hype, but the last session covered some great features in VC++ 2003:

  • “98%” C++ ISO compliant (now supports template partial specialization, compiles boost, loki and blitz++ out of the box…)
  • whole-program optimization, can inline across modules
  • better intellisense, faster dynamic help, faster startup, generate html from comments
  • support for Windows Forms via Forms Designer – includes docking and auto-resizing layout capabilities – but generated code is “managed” (allocations are done on the .net garbage collected heap hrmmm…) – you can derive forms!
  • /G7 optimization switch for P4/Athlon, “5-15% improvement”
  • /GS security switch to check for buffer overflows and exception table hacking
  • /arch:SSE/SSE2 for improved (“2-3%”) floating-point performance

    Time to break it out…

  • OK, have fun drawing here (you need a Java-enabled browser, tis all)… For the really cool part, open up side-by-side copies of this page in two browser windows before you start drawing… then get your Australian penpal to do the same… then yer old girlfriend in England… then…

    Update: drawboard uses a custom port for communication, so there’s a good chance that any firewall will block it…



    Unfortunatelly, your browser doesn’t support Java applets. You have to use another one.

    Looked at a couple Java open-source whiteboard apps, this one is drawboard, there’s also babylon but it seems to be in unstable shape (or I did something wrong, but I TRIED, believe me…). BTW, if you want to do anything in Java under Redhat, I recommend this page to get set up…

    UPDATE: This is no longer an issue in more recent Putty releases.

    Putty’s plink.exe is an ssh Windows command-line tool that’s great for scripted access to CVS. It is used behind the scenes by TortoiseCVS. There are lots of options available to establish the SSH connection, including going through a proxy, and these are stored in a “session”. However, if you try to load a session from the command line, so you can get proxied CVS access, plink.exe ignores the rest of the command line.

    I got the source for plink.exe and patched it to work for me. I am fairly sure this version will work for everyone, but not positive – I have submitted it to the Putty team for review. Here’s the patched version for now, based on the development snapshot dated 3/17/03.

    PLINK session settings you should change from default:

    • host
    • auto-login
    • send timeout (typically needed to keep the proxy from dropping the connection
    • proxy
    • preferred SSH = 1
    • force local echo off
    • force line edit off
    • ssh: dont allocate pseudo-terminal

    TortoiseCVS SSH command:

    • plink.exe -load session -batch

    (continued…)