Slashdot Mirror


User: Moderation+abuser

Moderation+abuser's activity in the archive.

Stories
0
Comments
1,419
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,419

  1. Mmm, Zeppelin have been around for a while on Lockheed's High Altitude Airship · · Score: 4, Informative

    They are a heavy engineering company. But they do indeed have a new ship which is flying now, the Zeppelin-NT:

    http://www.zeppelinflug.de/pages/E/haupt.htm

    Cargolifter were going to create a f*cking *huge* ship which with a cargo capacity of 160 tonnes but ran out of money. When I say "f*cking huge", imagine an ocean liner floating in the air in front of you.

    http://www.cargolifter.com/

    It seems that military spending is needed for these kinds of projects to succeed.

  2. Cool on Lockheed's High Altitude Airship · · Score: 1

    According to the spec it should have a lifting capacity of somewhere around 140 tonnes[1], though much of that will be consumed by the ship itself.

    [1] At sea level and assuming my US->metric conversion is ok.

  3. Interesting, they are using XML as well. on Project Gutenberg 2 Raises Some Hackles · · Score: 1

    This is potentially as important a project as Project Gutenberg itself is. Seriously, a much better way to spend your spare time than 8 hours per day of VegeVision.

    Needs a GUI markup tool which can handle their DTDs though.

  4. Divide and conquer. on How Not To Sell Linux Products · · Score: 1

    You're right, and this is really the trick that Microsoft is missing, frankly they're not really that smart if they haven't seen it so far.

    They have billions, put up a few tens of millions of dollars as seed money for a bunch of small operations to produce several cool but incompatible Linux distributions.

  5. Nah. The really deadly stuff on City Officials Almost Ban Foam Cups · · Score: 4, Funny

    Hydroxylic acid...

    It makes dihydrogen monoxide look like water in comparison...

  6. Yeah, 89% of americans would ban it. on City Officials Almost Ban Foam Cups · · Score: 1, Funny

    And I say too right! Anything with the word "monoxide" in it *should* be banned!

    Yeah, that's been in my usenet sig for ages.

  7. Re:It's got the concept backwards on Fault Tolerant Shell · · Score: 3, Interesting

    I did. Endlessly is good. The network overhead is negligible.

    Check once every 1,2,4,8,16,32,64,whatever,mins *all the time anyway* whether it fails or succeeds and you *absolutely don't* want to have to explicitly tell 1000 machines to start again.

    You simply generalise the update process, get rid of the special cases. In the case of patches, you know you're going to have to distribute them out to clients at some point anyway so have all the clients check once a day, every day. If the distribution server is down for a couple of days it's pretty much irrelevant.

    My error detection code is trivial the network traffic is negligible unless the job's actually being done and I still haven't been given a good case for ftsh. I have a good case for a better randomising algorithm within a shell and a decent distributed cron (which is simple BTW), but not for a specifically fault tolerant shell.

    You've got to stop thinking of these things as individual systems. The network is the machine.

  8. Sorry, there just isn't a case for it. on Fault Tolerant Shell · · Score: 1

    Nope, pull doesn't break down in heterogeneously managed/owned or even platformed environments. It works best in these environments. The www is an ideal example of such, apt-get is another, seti@home is another, distributed.net, I could go on.

    In Grid based computing environments, jobs queue until they can be started, and as it happens, they tend to be architected as pull based systems whether you see that as a user or not.

    Again, I can't see a reason for ftsh in this case. I'm sure there's a niche for it somewhere but even their examples don't give any good reason for it's existence.

    Their cd example for instance resolves to a silly script:

    ----- FFS!Bloody slashdot compressionfilter
    #!/bin/sh

    cd /work/foo
    rm -rf bar
    cp -r /fresh/data .
    ----------Bloody slashdot compressionfilter

    *They* resolve this to:

    -----
    #!/bin/sh

    for attempt in 1 2 3
    cd /work/foo
    if [ ! $? ]
    then
    echo "cd failed, trying again..."
    sleep 5
    else
    break
    fi
    done

    if [ ! $? ]
    then
    echo "couldn't cd, giving up..."
    return 1
    fi
    -----Bloody slashdot compressionfilter

    Just for the cd statement, it's just silly. It simply shows that they are either trying to justify the writing of another shell or they don't understand how to shell script.

    It should resolve to something more like:

    -----
    #!/bin/sh

    JOBDONE=1
    until $JOBDONE
    do
    cd /work/foo && \
    rm -rf bar && \
    cp -r /fresh/data . && \
    JOBDONE=0

    sleep 30
    done
    -----

    You simply don't have to test every statement the way they suggest you do. It's a ridiculous premise. Even the decades old bourne shell has an easy way to only execute commands if they depend on a previous success.

  9. Re:Missing the point on Fault Tolerant Shell · · Score: 1

    This simply isn't required in a properly organised distributed architecture.

    Write your scripts to fail safe, then don't perform ad-hoc updates, schedule them regularly.

  10. Push doesn't scale. on Fault Tolerant Shell · · Score: 3, Informative

    The system you pull from is a distribution server, all it does is distribute files. If it's slow, it's slow for all the machines sucking data and you need a bigger infrastructure. If it's down, the client scripts fail safe and do nothing.

    Even here, pull scales better than push, look at a web server as an example thousands of machines sucking web pages from a server is not uncommon. Try pushing those pages out to the same number of machines.

    Push methodologies simply don't scale, I've been there, done that and it's a bad architecture for more than trivial numbers of machines and I'm not the only one to notice:

    http://www.infrastructures.org/bootstrap/pushpul l. shtml

  11. Re:You're dealing with the problem too high up on Fault Tolerant Shell · · Score: 2, Insightful

    "An example would be server which replicates images using rsync. If one of the targets is busy serving web pages or running another application, ftsh would allow for that kind of unforeseen error to be catered for relatively easily."

    It depends how you organise your systems. If you push to them then yes you need something like ftsh. If you organise them so that they pull updates, pull scripts to execute and arrange those scripts so that they fail safe (as they all should anyway) then you'll have something which is a couple of orders of magnitude more reliable and scalable. It just needs a little more thought to begin with.

  12. It's got the concept backwards on Fault Tolerant Shell · · Score: 4, Insightful

    While, yes, you manage distributed systems from the center, you don't *push* updates, changes, modifications because, it doesn't scale. You end up having to write stuff like this fault tolerant shell which is frankly backwards thinking.

    Instead, you automate everything and *pull* updates, changes, scripts etc. That way if a system is up, it just works, if it's down, it'll get updated next time it's up.

    I won't go into details but I'll point you at http://infrastructures.org/

  13. British Computer Society on Plumber, Electrician... Digitician? · · Score: 1

    http://www.bcs.org.uk/

    I'm sure there's something similar in the US.

  14. The American Empire on World's First Warez Extradition Decided Soon · · Score: 4, Insightful

    This really depends on whether you live in a country which is a client state of the American Empire or not. Doesn't it.

  15. Aha! Ta mate on DSPAM v2.10 Released · · Score: 1

    Fantastic. I've been looking for something exactly like this for syslog monitoring! I thought I was going to have to write something myself.

    When you've got several hundred systems from different OS platforms all logging to a central log server the conventional log monitoring software is just not up to the task of discriminating important logged messages from unimportant.

  16. Re:So on Beer Bubbles Really Do Sink · · Score: 1, Funny

    No, they really can fly. Try it next time you're high, smuggle a dog up to the roof of your building and throw it off. It'll fly, you'll see.

  17. Re:Following... on Fifteen Teams Selected for DARPA Grand Challenge · · Score: 1

    Bugger prestige, it's results which matter.

    If the teams can't finish they lose, if they finish, they win.

  18. Or you could just get a Tivo for $99 on Second Generation Homebrew PVR Devices · · Score: 1, Informative

    And spend the rest on beer, or a lifetime subscription.

    http://www.directv.com/DTVAPP/imagine/TIVO.dsp

    And hey, you'll have something that "just works" from the word go, instead of having to fuck about for 3 weeks and still not be up to scratch. Face it, the tivo guys did a better job than you can.

  19. Slashdot effect... Free advertising? on Build a Robot out of a Car? · · Score: 1

    Sorry, but that site is dead and gone. Taken down by the Internetequivalent of a nuclear overpressure.

    The moral of the story is that if you want to advertise something, don't mention it to any of your techie staff.

    The wrath of slashdot is mighty indeed.

  20. Re:slightly different approach.... on The Power of Sewage · · Score: 1

    Only if you turn everything on, everywhere, all the time.

  21. Re:slightly different approach.... on The Power of Sewage · · Score: 1

    Really? Do you use 25kW heaters in your house?

  22. Solaris has killall on Wicked Cool Shell Scripts · · Score: 3, Insightful

    It just doesn't do quite what you might expect if your only experience is Linux.

  23. Re:Why shell? on Wicked Cool Shell Scripts · · Score: 1

    "Perl has higher level programming constructs such as variable scoping, references, hashes, reg exp, etc that make programming"

    *That* is why Perl is no longer suitable for general day to day scripting.

  24. Re:Why shell? on Wicked Cool Shell Scripts · · Score: 2, Insightful

    Because of Perl versioning problems. Half a dozen different versions on a single platform.

    Because Perl exists in random locations.

    Because a particular Perl installation will have random modules installed.

    Because Perl is not on *everything*.

    Because writing a shell script take a fraction of the time a Perl script takes.

    Because Perl encourages monolithic scripting.

    Perl has tried so very hard (and suceeded) to become a fully featured programming language, it hasn't been suited to small scripting tasks since version 4.

  25. Of course it would make a difference on Orange County: More E-Ballots Cast Than Voters · · Score: 1

    Because you now have thousands of bits of paper you can look at and say. "Look they gave out the wrong ballot papers, they shouldn't be in this box".