Slashdot Mirror


User: mapMonkey

mapMonkey's activity in the archive.

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

Comments · 35

  1. Re:go digital on Camera Meets Speedometer, Travel Across Country Together · · Score: 1

    I think you mean a hundred rolls of film?

  2. Crabby bastard on Software Fortresses · · Score: 1

    This guy seemed to have very little positive to say about anyone/anything except himself and his own "ideas". I got nothing out of that really.

  3. Re:Still Click-to-focus only? on OpenOffice 641d Released, Next Stop: 1.0 · · Score: 1

    *That's* why 641C was doing that!! That annoyed the hell out of me. You'll be happy to know that it's fixed now.

  4. Re:Zope on Isolated Apache Virtual Hosts? · · Score: 1

    Or learn Python and write a Product for Zope, adding more value to Zope ;) ...

    When it comes down to it, this guy is having a problem with the UNIX permissions structure, so you'd be writing a new permissions module for Apache. Zope already has it's own permissions structure. In Zope, I would create a folder for each user, giving them "Owner" privileges on the that folder, and say that, by default, only Owners (and Managers) can View the content of the folder. This additionally allows users to specify if they'd like Anonymous users to view specific items. Done in 5 minutes. Time for coffee!

  5. Zope on Isolated Apache Virtual Hosts? · · Score: 1

    If you had Apache feeding the requests to Zope (or any other Content Management System, really), then you could get much finer-grained control on permissions.

  6. Re:Put 'em in jail on Isolated Apache Virtual Hosts? · · Score: 1

    I don't think it'll work. chroot's work on processes (right?), and all the HTTP requests are being served by the same (group of) processes.

  7. Re:The RIAA is shooting themselves in the foot. on Webcasters and Record Industry Both Appeal Royalty Ruling · · Score: 1

    awwwwww yes ... Fila Brazillla has gotten quite a few bucks from me both b/c of Drone Zone, and MonkeyRadio ... good stuff.

  8. Re:Better solution on The Three Hat Problem · · Score: 1

    If Player 3 always guesses red, then he will be wrong 50% of the time, and since, if one person guesses wrong, the whole team is wrong, this gives a 50% success rate.

  9. Re:Um... on The Opportunity of SOAP · · Score: 2
    I stand corrected:

    from Miscro$oft (re SOAP 1.0):
    "SOAP doesn't care what operating system, programming language, or object model is being used on either the server side or the client side: it is utterly agnostic, except that it needs HTTP as a transport." ( emphasis is mine )

    and from W3C( re SOAP 1.1):
    "SOAP can potentially be used in combination with a variety of other protocols"

  10. Re:Um... on The Opportunity of SOAP · · Score: 1
    ... standard format XML messages passed over HTTP

    Actually, the SOAP spec does not specify which protocol you need to use to pass the messages. HTTP will obviously be a very common choice, but it's OK to use other protocols.