Slashdot Mirror


User: bl8n8r

bl8n8r's activity in the archive.

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

Comments · 925

  1. Better get buying AMD for your own good on AMD Reports $611 Million Loss · · Score: 1

    If Intel turns into the 800 gorilla in the CPU market, you can kiss your $200 core 2 duo chips goodbye.

  2. Re:Vista on Bad Security Driving Out the Good · · Score: 1

    Yep. An astounding 244 sales.

  3. go somewhere else on Why are Websites Still Forcing People to Use IE? · · Score: 1, Redundant

    If I can't get into a website with firefox I go somewhere else. Within seconds. If your webiste is too garbaged-up with advertising, flash, cookies and IE specific hacks, I don't want my credit card number or personal info sitting at your establishment. If you cannot handle a simple task of coding useable, standardized HTML then I will do business elsewhere. And I do. And you should too.

  4. Re:Simple selection pressure on Chimps Evolved More Than Humans · · Score: 1

    I don't know that I buy bipedalism as a sign of superior evolution. After all, chimps (monkeys) have evolved an adept adaptation that uses four limbs simultaneously and sometimes even a tail. Most people are not even ambidextrous let alone have enough balance to stand on one foot. Is it wise to say we are superious because we can walk upright, or is dexterity in multiple libs a sign of higer evolution?

  5. Setting up thunderbird and webdav on Mozilla and Google — Exchange Killers At Last? · · Score: 1

    Some links here* to get it setup. I just set it up and it's not too bad.
    steps:
    1) edit httpd.conf and configure webdav (uncomment these):
        - LoadModule dav_module modules/mod_dav.so
        - LoadModule dav_fs_module modules/mod_dav_fs.so

    2) add a location under web server root to save the calendars to.
    Replace parenthesis below with arrowheads per usual apache conriguration.
    slashdot strips my arrowheads in the post. Define the calendar user
    authentication as the 'cal' user:
    (Location /calendar)
          Dav On
          AuthType basic
          AuthName cal
          AuthUserFile calendar

          (LimitExcept GET HEAD OPTIONS)
                require user cal
          (/LimitExcept)
    (/Location)

    3) create the calendar directory under the web root with write
    access for web server. (note: web servers with write access are
    potential security holes to watch your logs). On fedora, apache
    is a member of the apache group. I give root ownership of the
    directory and give write access to the apache group. Adding the
    sticky bit to the directory assures users can only delete files
    they own, not someone elses.
        - mkdir /var/www/html/calendar
        - chown root:apache /var/www/html/calendar
        - chmod g+w /var/www/html/calendar
        - chmod o+t /var/www/html/calendar

    4) create the cal user for httpd and give him a password:
        - htpasswd -c /etc/httpd/calendar cal
        - New password:
        - Re-type new password:
        - Adding password for user cal

    5) restart httpd and watch httpd message logs for errors or sucess:
        - /etc/init.d/httpd restart
        - tail -f /var/log/httpd/access_log /var/log/httpd/error_log

    6) create new calendar in thunderbird using webdav
        - calendars -> new -> on the network
        - format == caldav
        - location == http://localhost/calendar
        - Next
        - name == test
        - Next
        - (Web authorization popup should come up)
        - username == cal
        - password == see_step_4

    You should see something in your apache messages logs similar to this if calendar is working:

    127.0.0.1 - - [15/Apr/2007:15:12:26 -0500] "REPORT /calendar/ HTTP/1.1" 401 475 "-" "Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.3) Gecko/20070326 Thunderbird/2.0.0.0"
    127.0.0.1 - cal [15/Apr/2007:15:13:08 -0500] "REPORT /calendar/ HTTP/1.1" 405 307 "-" "Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.3) Gecko/20070326 Thunderbird/2.0.0.0"
    127.0.0.1 - cal [15/Apr/2007:15:13:19 -0500] "PUT /calendar/17e23dae-dabc-49c6-83f6-322d0bcba25c.ics HTTP/1.1" 201 298 "-" "Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.3) Gecko/20070326 Thunderbird/2.0.0.0"

    [*] - http://www.twilight-systems.com/flacco/mozcal/inde x.html

  6. Re:bi-directional? on Mozilla and Google — Exchange Killers At Last? · · Score: 1

    Guess that's one way to make sure you are always f*cked.

  7. run Linux for a greener earth on Fun and Profit With Obsolete Computers · · Score: 1

    I have ipcop running on a pentium 133 laptop as my gateway/firewall. The battery holds enough charge to stay up for a few minutes when the power flickers. With the display built right in I don't need a monitor sitting there. I can turn off the display when I don't need it. I leave it on 24/7. It consumes about 13 watts of power at idle (via Killawatt*). It's a little pokey on the web pages, but uses very little CPU otherwise.

    I was using a P266 laptop behind the 133 for a while and stripped down a knoppix install to run:
    - httpd
    - sshd
    - samba
    - openvpn
    - fetchmail
    - dovecot
    - spamassassin

    I adjusted most of the config files to lighten the load on the 256M of ram, but as I added more services it was just too much for it and stuff was getting sniped by OOM killer; nice experiment for a couple years though. Linux is adjustable for old crappy hardware which cant be said for windows (or apple for that matter).

    [*] - http://www.smarthome.com/9034.html

  8. The command on Mars Global Surveyor Died from Single Bad Command · · Score: 1

    [root@surveyor]# dd if=/dev/urandom of=/dev/solar_panels

  9. this is unbelievable on Should Schools Block Sites Like Wikipedia? · · Score: 1

    Why not teach students to double-check and triple-check their sources for chissakes? They are going to need to know how to do that in real life. Wikipedia should be used for what it is; a collaborative collection of knowledge which is subject to change. This is just dumb.

  10. use the password as part of the encryption key on Protected Memory Stick Easily Cracked · · Score: 1

    Is it wise to use that password ascii values to figure in to the encryption key (but not store the password anywhere)?
    This way if the entire encryption key is (for instance) 99342183588345923458 + AsciiSum (userpass) you could hack EAX to always return the password is verified, but upon decrypting the data, the AsciiSum () routine would not add up to what was used to encrypt it in the first place; eg you get decrypted gibberish. I'm not a crypto geek, so just asking..

  11. above the law on Police Objecting to Tickets From Red-Light Cameras · · Score: 1

    Most of the cops I know feel they are above the law. Think about the cops you know that smoke dope, drive drunk and do illegal shit when their red lights aren't on. They are regular people in an emotionally f-cked job. Doesn't give em the right to play god, but most of em do - on and off the job.

  12. Re:Thanks for the good reads, Kurt on Kurt Vonnegut Jr. Dies At 84 · · Score: 1

    "I am of course notoriously hooked on cigarettes. I keep hoping the things will kill me. A fire at one end and a fool at the other."

    "Human beings are chimpanzees who get crazy drunk on power."

    "We are all addicts of fossil fuels in a state of denial, about to face cold turkey. And like so many addicts about to face cold turkey, our leaders are now committing violent crimes to get what little is left of what we're hooked on."

    "My government's got a war on drugs. But get this: The two most widely abused and addictive and destructive of all substances are both perfectly legal." (alcohol/cigs)

    "History is indeed little more than the register of the crimes, follies and misfortunes of mankind."
    "The same can be said about this morning's edition of the New York Times."

    "There is a tragic flaw in our precious Constitution, and I don't know what can be done to fix it. This is it: Only nut cases want to be president."

    "For some reason, the most vocal Christians among us never mention the Beatitudes. But, often with tears in their eyes, they demand that the Ten Commandments be posted in public buildings. And of course that's Moses, not Jesus. I haven't heard one of them demand that the Sermon on the Mount, the Beatitudes, be posted anywhere."

    "My government's got a war on drugs. But get this: The two most widely abused and addictive and destructive of all substances are both perfectly legal." (alcohol/cigs)

    "History is indeed little more than the register of the crimes, follies and misfortunes of mankind."
    "The same can be said about this morning's edition of the New York Times."

    "There is a tragic flaw in our precious Constitution, and I don't know what can be done to fix it. This is it: Only nut cases want to be president."

    "For some reason, the most vocal Christians among us never mention the Beatitudes. But, often with tears in their eyes, they demand that the Ten Commandments be posted in public buildings. And of course that's Moses, not Jesus. I haven't heard one of them demand that the Sermon on the Mount, the Beatitudes, be posted anywhere."

    -- 2004 Kurt Vonnegut "Cold Turkey"
    http://www.inthesetimes.com/article/cold_turkey/

  13. Re:Why do this? on AMD's New DRM · · Score: 1

    > Given the choice between two identically performing chips,

    that's just the problem. you haven't a choice. Sounds like AMD is dragging it's customers into something they don't want. This is very unwise, but perhaps the last gasp for air from a company with it's head bobbing under. Maybe they haven't any choice at this point. AMD said they would bring their figures up for the next quarter, but didn't mention how. This must be Hector's brainstorm. It will be a bad day for consumers when there is only one CPU mfgr left.

  14. where do you want to go today? on The End is Nigh for XP · · Score: 1

    Doesn't matter. You're coming with us anyway.

  15. patents of mass destruction on China Slams US Piracy Complaint · · Score: 1

    Bet they get invaded.

  16. Three stooges reunited on Gates to join Simonyi in Space? · · Score: 1

    Cripes they got the Word guy up there and now Gates. all they need now is Balmer and a chair and we'll really be in for some laughs.

  17. too friggin cool on Hobbyist One-Ups Sandia Labs · · Score: 4, Insightful

    Think about it... a bright person allowed to:
    - concentrate on a project all day long
    - without PHB shaking deadlines in front of him
    - without being burned out on meetings all day
    - without the distraction of phone calls, personalities or politics

    imagine what *you* could get done. I'm drawing a parallel to the busy workplace - not in any way do I mean to detract from this guys accomplishment. By all means, he's done something remarkable.

  18. wtf Ars Techna - a "prank" ? on Principal Cancels Classes, Sues Over MySpace Prank · · Score: 1

    A prank is gluing a pencil to a table, putting a transgendered doper alcoholic label on someone is slander.

  19. Note to Ron Hovsepian on openSUSE Hobbled By Microsoft Patents · · Score: 1, Funny

    Ron, If you want to know how similar arrangements have panned out, you may be interested in viewing the graphic video: Boa Constrictor Eats Bird Alive

  20. monitored on the Sun since 1610 on Sunspots Reach 1000-Year Peak · · Score: 3, Funny

    "Sunspots have been monitored on the Sun since 1610, shortly after the invention of the telescope."

    Which were soon follwed by cries of "GAAAHHH!!! I'm blind!!!"

  21. responsible for most botnets worldwide on Two Worm "Families" Make Up Most Botnets · · Score: 1

    I believe Guiness has reserved this title for Microsoft.

  22. which version on Vista Protected Processes Bypassed · · Score: 1

    Tell me Bill, which version of Vista are you referring to?

    "We made it way harder for guys to do exploits," said Mr. Gates. "The number
    [of exploits] will be way less because we've done some dramatic things
    [to improve security] in the code base."

    http://www.toptechnews.com/story.xhtml?story_id=49 854

  23. Re:Why only 55? on Japanese Mileage Maniacs · · Score: 5, Funny

    "so wasteful to be dragging around two tons of metal to transport one person."

    You must be new here. Our Hummers weigh in at much more than a measly two tons. Besides, American women with 1 or more children are forbidden to be seen in anything with four doors unless it's an SUV. (It's federal law; kind of like that big cloth bag they have to wear in the mideast). American males with premature balding, premature greying, limpdickosis and/or shortpeckeritis are also required to own at least one SUV and a Harley Davidson. The SUV must have at least 8 cylinders and you get a tax subsidy from Exxon if you upgrade to Hemi-anything. On weekends, most people take their Hummers out and rear-end anything that gets more than 25 mpg.

  24. someone elses kid? on An iPod For Every Kid In Michigan · · Score: 1

    sfw.. dont forget someone else will be buying *your* kids ipod then. The cost of the ipod will most likely be covered 10 times over by the amount of tax increases the state will gain:

          "..tax soda and satellite TV services, among other things, to raise funds."

  25. *yawn* not much of a virus on A Proof-of-Concept Virus for iPods Running Linux · · Score: 1

    can't replicate, can't launch automatically and "user has to save the virus to the iPod memory for the device to become infected" Why not just format the ipod and save yourself a lot of dicking around?

    Wake me up when you get root, lamer.