Slashdot Mirror


User: battjt

battjt's activity in the archive.

Stories
0
Comments
398
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 398

  1. VNC/SSH/HTTP on The State of Remote Desktops? · · Score: 1

    I run VNC over SSH over HTTP from anywhere that has a Java VM.

    MindTerm has an excellent SSH client that supports proxying SSH over HTTP (CONNECT). Then I run the Java VNC client over a tunneled socket. (I even run Win200 on VMWare on top of that mess, but the cursor gets a bit confused.)

    It is a bit of a dog over the wider net, but usable. On the LAN, VNC to Linux is great, but VNC to Windows isn't.

    My big box ran headless for a year, with only a VNC connection.

    I recommend running everything off of network drives. Setup a very stable fileserver (that you don't ever have to ship in) and run everything off of that.

    Joe

  2. Re:Look's like she's cooked :-� on Serial ATA Coming · · Score: 1

    Interesting. I'm reading /. waiting on our DBA's to fix our SQL server.

  3. I've got a bridge to sell you. on Microsoft XP License Prohibits VNC · · Score: 1

    It really doesn't matter what the salesman says, it really only matter how the judge interprets it. In most cases it wont get to a judge, just the threat of making a company look like it is stealing will change behavior.

    Joe

  4. Re:The REAL reason on Microsoft XP License Prohibits VNC · · Score: 1

    Sure, I do this now.

    Linux runs my dual 800PIII and I run W2K in VMWare to do my consulting work (work requires a W2K VPN client). Works very well for me, even cut and paste. I run emacs, ant, and the java compiler on native Linux and test in W2K on VMWare. Even when W2K is thrashing, my machine is still 50% free to do work for me.

    Not only that, but I run VNC on my Linux box and via squid, open ssh, and MindTerm's excellent ssh applet, I can proxy VNC over SSH over HTTP to any workstation on the net and get to my virtual w2k box that is running on my Linux box locked in a closet. This stuff is cool.

    Joe

  5. Wha?! on Next Windows to Have New Filesystem · · Score: 1

    In 12 years, I've never had to defrag a Unix FS. I defrag weekly on NT. NTFS performance goes to hell when fragmentation is bad, so you must defrag frequently, but th supplied defragger isn't schedulable.

    Maybe I just missed the ':-)'.
    Joe

  6. Whoo! backup there. on Macromedia Pushes Flash For All Things Web · · Score: 1

    Why isn't back a great thing? It is very natural.

    - when I don't understand a page of a book, I go back a page and reread it.
    - my car has a reverse
    - when I drink too much beer or eat poison, I have a mechnism to get me "back".
    - my 16 month old daughter knows how to "put it back honey..."

    I think it is hard to program for, but that's why you get paid the big bucks.

    Joe

  7. Re:They don't compensate for downtime?! on Telecommuters and Downtime? · · Score: 1

    Actually, I only run Linux on my hardware. I do what works best for me. I've found that in somecases you have to pay for that, in other cases no amount of money will buy it. (in the case of OS's, you can't buy what I get with Linux (or BSD)).

  8. Re:They don't compensate for downtime?! on Telecommuters and Downtime? · · Score: 0, Flamebait

    You, my friend, are an idiot.

    There is a huge difference between a residential line and a business line... quality of service. You get what you pay for.

    Joe

  9. Telephone Network Administration on What's the Worst Acronym You've Ever Heard? · · Score: 5, Funny

    Telephone Network Administration, but everyone used the acronym without cracking a smile. Of course I laughed out loud on a teleconference. I no longer work there.

    Joe

  10. Re:What the choice is between on Zope or Cocoon 2? · · Score: 1

    OK. I tried Cocoon2. The design is beautifull. I hope they finish it someday, but until then it is too buggy and slow for the real world.

    I was trying to build 300 page PDF reports...FOP crapped out.

    I was trying to build simple screens to a DB... too many bugs in the caching layer...

    For critical applications today, roll your own.

    Joe

  11. Re:Great! Where's the backup solution? on The Amazing $5k Terabyte Array · · Score: 1

    I use rsync between two large filesystems across a 4 block 802.11b link.

    There is still a possibility of an intruder deleting both, but highly unlikely because one of the backups is a laptop that doesn't share resources.

    [I still need a versioning filesystem, like VMS though.]

    If both building are consumed in an explosion, then data recovery will be the least of my worries.

    Joe

  12. Re:Neat! But . . . on Mac Thief Caught Thanks To Applescript & Timbuktu · · Score: 1

    And anyone with physical access can boot off a floppy and by pass the whole burrito.

    Which theif is going to know about the '-s' arguement to init?

    Pretty much, if you are running Linux, expect your machine to be rebuilt with Windows.

    These tracking programs are only useful for Windows, Mac, or the bios.

  13. Re:The "NEW" Economy on The Brave New World of Work · · Score: 1

    I'm 30, have a 14 month old and another due in May.

    I am even more adament about managing my own risk now than before the kids.

    Why should I trust a stranger (CEO) to take care of me and mine?

    Joe

  14. Re:The "NEW" Economy on The Brave New World of Work · · Score: 1

    Does GE move employees around to different functions?

    Those firms I mentioned are all contract firms. When a customer's project ends, the firms employ may be moved into a completely different industry.

    If aircraft engine sales are down, will you fluidly be transfered into light bulb manufacturing, or will you be job elimenated? I nkow that in a lot of companies, you are rather tied to a location. The company would rather job eliminate in Dallas and hire in Chicago instead of moving work and employees closer.

    If you are a contractor working in GE aircraft engines and aircraft sales are down, then next month you may be placed in telecom company.

    Joe

  15. Re:The "NEW" Economy on The Brave New World of Work · · Score: 2, Insightful

    So work for a US "keiretsus", like IBM, CTG, EDS, SIAC, etc.

    Similarly, unions are essentially large contract firms added a bit of stability to the lives of the worker in trade for a slice of the pie.

    Personally, I'd rather take the risk and for reward for job instability. I manage the risk personally, instead of trusting someone else.

    Joe

  16. Re:Containing functions doesn't mean functional on Common Lisp: Inside Sabre · · Score: 1

    I guess my real question is, why would you ever use a closure in OO programming? Or do closures get replaced by anonymous classes? (anonymous because our implementation of Counter didn't have a name just like your lambda expression; inner is redundant)

    I tried to describe the power of closures to a very OO orient IT developer and lost the battle. Every example I used was handled faster at runtime and safer in development with an OO construct.

    Joe

  17. Re:Containing functions doesn't mean functional on Common Lisp: Inside Sabre · · Score: 1

    Do I call these Anonymous Classes and interfaces in Java?

    To use your example...

    interface Counter {
    int getValue();
    }
    class MyClass {
    Counter newCounter() {
    return new Counter() {
    int i = 3;
    int getValue() { return i++; }
    }
    }
    }

    Very often the Interface is defined by the library and the anonymous implementation of the interface is written by the application programmer.

    The above is type checked at compile time, so it is more difficult to abuse.

    Am I missing something? This seems more obvious and less error prone than the lisp way.

    Joe

  18. Re:Crazy stuff. on Common Lisp: Inside Sabre · · Score: 1

    Mainframes are slow for calculations, fast with IO. (Or more precisely very expensive for calculations and just expensive for IO.)

    The IBM mainframe I used at a very large life insurance company had 11 400 Mz cpus that compared roughly to Intel CPUs, so I assume that they were a PowerPC like chip. 5 were dedicated to development and testing. One nice feature was that the L2 caches were shared across all the CPUs, unlike the Intel model, so process affinity wasn't a very big deal.

    CPU resources are very expensive on a mainframe, but you do have the option of features like hot swappable CPUs and main memory. Mainframe uptimes can be 25 years; you can't do that with most computers, because you need to shut them down to upgrade CPUs and memory.

    Supercomputers are another story. You can buy SGI hardware that is build around rendering images and pumping them through some very high bandwidth channels for display walls and the like. But I don't know anything about supercomputers.

    Joe

  19. Re:Documentation is not evil! on Writing Documentation · · Score: 1
    If you've figured out exactly what every button and form and screen looks like, how they fit together, and how the program will work before you've written a line of code, chances are that you are still in school.

    How can you design a system with 200,000 LOC in English?! Use code for what it is good at.. describing detail. (Of course, you should use English and UML to describe design.)

  20. BAH! on Writing Documentation · · Score: 1

    The most important thing is the thing that gets delivered to the user. Normally that is an executable and sometimes user docs. What ever generates that is next important, normally code. Next important would be design.

    I can't create a good executable without good code, which can't be produced without some documentation, but to say that the docs are the most important thing is dumb. I have created very good applications without any documentation. The apps were so simple that they stay in production for 5 years+.

    Joe

  21. Re:Java? on First Thoughts on the Eclipse IDE? · · Score: 1

    What the hell do you do that requires opening your IDE more than once a day? Emacs starts when I log in; I don't start it again.

  22. Objects are things on Can OO Programming Solve Engineering Problems? · · Score: 1

    I've done programmnig for truck engineering support.

    Objects are things like engines, axles, gears.

    "finite difference solutions to differential equations, finite-volume computational fluid dynamics, iterative solutions to non-linear equations, Monte-Carlo simulation of radiative heat transfer" are process to be run on objects. They may be objects also, but OO is best at helping you organize you data.

    My experience with IT supporting engineers is that engineers first think of the process, then the data (data may be denormalized data sitting in some table somewhere, but here is the math that we want to perform on every row) and IT concentrates on organizing the data (here is an efficient datamodel for that data that you want to perform some operation on). See how OO would better fit the needs of the IT staff?

    The trick is understanding what engineering wants to do with data, so your object models facilitate their computations, not get in the way.

    The work I did was to model the truck, then using math supplied by engineering, we performed simulations with our models. The advantage was that engineering couldn't do the simulations alone because they couldn't get their minds around the vast amount of data and we couldn't do the simulations, because we didn't know the behaviors of the materials.

    We acutally had objects like a transfercase that had a bracket location, gearRatios, input location, output location, currentGear, inputRPM, outputRPM, etc. Some of these values were calculated and some we given depending on the type of simulation. The trick was deciding when to calculate values and when to use cached values. (we used a dependence graph that was implicitly constructed) Are simulation would include activities like running the engine through the RPM range and each gear of the transmission, and articulate the rear axle through its positions to find binding in the drivetrain. Using these simulations we were able to select some parts (is this axle better than the previous?)

    Joe

  23. Re:Hard Drives on Affordable Home Backups for 10-100G Systems? · · Score: 1
    I have way too many god damn machines on a home network (windows, linux, Solaris/Sparc, OSX, etc) so simply backing up to a seperate drive doesn't look like it would cut it.

    I think this would be ideal. I have a big linux box that I ba ck up to a w2k laptop, and back up the laptop and another couple desktops to the big linux box. Now a w2k virus/worm wont eat my linux box and a linux bug/worm wont eat my w2k box, so most everything is safe. My big Linux box has plenty of space to store multiple full copies of the w2k boxes.

    The only problem would be if the big linux box and a desktop box were crashed at the same time. This shouldn't happen as they are at different sites (or if the explosion is that big, I don't really care about my mp3s anymore). I still have some management issues of when to delete old backups so I have multiple copies, but that's about it.

    Joe

  24. Re:What can I do? on Wireless Metropolitan Area Networks · · Score: 1

    When you bought cable service you bought a the right to use the cable network for personal use. You did not buy bandwidth.

    When some punk sends a death threat to the president through your uplink, what are you going to do?

    No, anonimous networks are not a utopia. Read some non fiction every once and a while.

    Joe

  25. Re:Real advance is...Streaming Video ALL OVER on Electronic Paper · · Score: 2, Insightful
    5. Genuine combat gear (ala "Predator") that can mimic the surrounding environment..the ultimate "Ghillie Suit" for snipers and SpecOps
    If you can get good enough sensors to feed the screens plus color screens, then yes, this is a very realistic possibility.
    Uhm, no. The thing would have to project different views to different perspectives.

    Joe