Slashdot Mirror


User: versus

versus's activity in the archive.

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

Comments · 66

  1. Re:In a Volvo? on Building the Zero-Fatality Car · · Score: 1

    anyway, you'll die not __in__ the Volvo

  2. Errors in the article on Fedora Core 5 Review · · Score: 1

    From the article: "The first thing you see when you boot on the CD, is a graphical Grub menu." And screenshot says there is standard SYSLINUX boot prompt...

  3. Surviving Christmas on How Do You Deal with Depression Around Christmas? · · Score: 1

    I remember a movie with Ben Affleck: Surviving Christmas

  4. Re:CF most widely used? on 1GB CompactFlash Roundup · · Score: 3, Insightful
    I can't name a single one that would accept an SD card.
    Nikon D50. All other dSLRs accept CFs, though.
  5. Re:90 days gets past many, many things. on How Long to Crack an 'Encrypted' HD? · · Score: 1
    In 90 days, a high-end single-CPU ought to be able to crack any 8 character password.
    Technically speaking there is no such thing as "password cracking" - it usually means "DES/MD5 password hash cracking" with brute force or dictionary attack.

    With random 4096-bit keyblock you don't have easy way to check if your 8-character password guess is correct - the keyblock do not store CRC or something. You have to decrypt that random 4096-bit key with every 8-character combination and then try to decrypt filesystem with that "decrypted" key. It's much much slower. I really doubt you can do it in reasonable timeframe.

  6. Re:1000 feet down... on Skyhook Robot Passes 1000 Foot Mark · · Score: 1
    Which means that Bill Gates could buy, erm, about 200 of them?

    about $50*10^9 / $20*10^6 == 2500 of them?

  7. Re:Because bandwidth is scarce. on Why Does Current Clustering Require Recoding? · · Score: 1
    I do all my compiling in a flash with a short script and "make -j 16 CXX=sshcxx".
    How about distcc? No need for NFS.
  8. Re:A couple of suggestions... on Best Linux Hardware Diagnostics? · · Score: 1
    BadBlocks - This utility can be used to find bad blocks on a disk partition. I've used it before to check disks.
    Use smartmontools to get S.M.A.R.T disk info (smartctl -a /dev/hdX). Nowadays hard disks substitute unreadable sectors with spare ones - transparently to I/O subsystem.
  9. Generic Routing Encapsulation on GRE CS Subject Test Prep? · · Score: 1

    My first thought was about GRE tunnels. Network admin mindset...

  10. Re:typical? on HOWTO: 0.5TB RAID on a Budget · · Score: 1
    Raid 1: Not quite double the throughput; slightly lower latency, but usually not a relevant amount. Redundant.

    Correction: Not quite double the READ throughput, slightly lower WRITE throughput

  11. Re:Only one problem on Where is the Killer Calendar? · · Score: 1

    use Multisync instead: pair palm plug-in with evo2 plug-in.

  12. Re:What defines dying? on mod_perl 2.0.0 Released · · Score: 1

    If you do idents anyway - why bother to write all these curly braces?

    If you do not then you're a sloppy programmer :-)

    Python doesn't tell you how many spaces or tabs are.

  13. Re:Real ID on Intel Adds DRM to New Chips · · Score: 2, Informative
    Guess you didn't live in Soviet Russia where they required internal passports. You couldn't go from one town to another, heck you couldn't even walk aroung town, without your passport.
    They still require internal passports here in not-so-soviet Russia. Nobody will sell you a train ticket (or plane ticket) without your internal passport and you can't enter a train without proving your identity (with passport only, your name is printed on ticket). You can drive a car from town to town but you won't go much far without an ID because of traffic police (driver licence is usually sufficient, though). You are required to be officially registered at your living address and you can't stay more than a month at another place without at least a temporary registration. Government here wants to know every your move and with all that "terrorists" propaganda things are getting worse.
  14. Re:Alternate Headline on Electricity Outage Puts Routing to a Tough Test · · Score: 1
    If you can plug an RJ-45 into your routers uplink port, its nothing more than a toy.
    I work in a small ISP. All E1 ports in our Cisco 7513 are RJ-45 female. Quite a toy, eh?

    Moreover, one of our upstreams - nation-wide ISP - has 1000Base-TX uplinks...

  15. Re:We need to teach programming earlier and better on Johnny Can So Program · · Score: 1
    Disclaimer (your own words): "take this whole thing with a grain of salt" :-)
    I rarely take part in anything even remotely resembling "language flamewars" but as former Perl programmer who recently switched to Python I think I have to reply :-)

    There is a reason why more or less all programming languages use braces (or keywords, or some other explicit construct) to mark blocks, rather than relying on whitespace.

    That's because people who created all these Algol-derived languages hated FORTRAN column-fixed syntax, I think. And then it stuck :-) Read here or here.

    A language's expressiveness determines its usefulness, and if you limit the former, you are also going to limit the latter.

    Perl is "grown" as "there are more than one way to do it". Python is designed to be "there is one obvious way to do it" . It does not limit your "expressiveness", however - you can write ugly and unmaintainable code in Python.

    ...What do you think is more bug-prone? A one-liner in Perl or a 20-liner in C that has to go to lengths to reproduce the same behaviour that can easily be had in Perl?

    I prefer 2-liner in Python. And it might be more understandable by somebody who've never seen python code before. The whole Python language is designed to be readable.

    The fact that it's easy to write even relatively complex programs in Perl is *good*. A car may have more controls and take a bit longer to learn how to handle than a bicycle, but wouldn't you agree that in the end, a car is more useful/powerful/versatile than a bike?

    Yeah! It's easy to write complex Perl programs. To fix and maintain them - that's the hard part. And "python car" is no less powerful than Perl truck :-)

    In summary: I don't try to ditch Perl, I'm trying to convince you to overcome your "syntactic-whitespace-hate" and try Python a little more. See what Eric Raymond says ("Oddly enough, Python's use of whitespace stopped feeling unnatural after about twenty minutes. I just indented code, pretty much as I would have done in a C program anyway, and it worked.")

    Speaking of myself, I used Perl for six years and recently switched to Python. It's typical - not many doing the opposite... That's why "it's the Python folks in particular who always ridicule Perl" - they usually know both sides :-)

  16. Re:We need to teach programming earlier and better on Johnny Can So Program · · Score: 1
    ...even though I'd say Perl is better than Python - any language which depends on whitespace to determine block structure should be taken out and shot

    You do indents anyway - then why you need to write all these curly braces? They are redundant, actually.

    Just try using Python for a few days and you will see.

    And Perl is making writing ugly code too easy. Python encourages readability.

  17. Re:Exercise on Burnout and Depression Among IT Workers? · · Score: 1
    ...and actually have fun doing things that do not require ending each line in a ; or }

    Me too! Python syntax ROCKS!

  18. Re:I don't think so... on Could Microsoft Buy Red Hat? · · Score: 1
    I wonder if Alan Cox's contract prohibits him from retiring in exchange for 200K/year from Microsoft?

    I think that Alan Cox makes much more than 200K/year at RedHat - and his work is to enhance Linux kernel.

  19. Re:Zebra on Can an Open Source Project Be Acquired? · · Score: 1
    Zebra was sold [...] So, here you have three projects [...] where the Open sourcecode was NOT forked or picked up by anyone.
    Quagga is a fork of Zebra. We use it heavily in our 100+ Bering PC routers.
  20. Re:Is there a law about grammAr/spelling trolls? on Reports from the MySQL Users Conference · · Score: 1

    a guy's usage of a word :-)

  21. Re:Catch spam by creating honeypots on People are More Accepting of Spam · · Score: 1
    As a side effect, the honeypot also generates IP addresses of compromised computers all over the world. I'm not sure what to do with those, though.

    Create an DNS RBL, something like compromized.rbl.yourdomain.net ?

  22. Re:I think... on Do F/OSS Contributions Make You More Marketable? · · Score: 1
    ...to working on adding features to something like Sunbird (PDA Sync anybody?).
    Take a look at MultiSync. It can sync e.g. Evolution2 with Palm/WinCE/Cellphones. It doesn't sync with Sunbird yet but somebody is working on Sunbird-multisync-plugin already.
  23. Re:BSD and FSF? on Theo de Raadt gets 2004 FSF Award · · Score: 1
    Well, at least your right that I can't have my linux box auth against the AD using kerberos or LDAP. Holy shit it worked, must be those standards again. ... Exactly what interoperability problems were you referring to?

    AFAIK, you can't authenticate Win2k workstations to Kerberos server other than A - due to MS "extensions" to their Kerberos implementation. SDK to these extensions was published under NDA-like license, preventing free software developers from adding support to free Kerberos implementations.

  24. Re:As a CS student paying his bills... on Running a Small Business on the Linux Platform? · · Score: 1
    With Debian, you will end up using either a distribution based on kernel 2.2, or one labelled "testing".

    Debian stable aka woody has kernel 2.4 for years. And it's stable. And there is such thing as backports.org.

  25. It's called greylisting on De-spamming Your Inbox The Hard Way · · Score: 1
    The logic is that a if a spam zombie is the source, they would just react to a problem by going to the next victim. A legitimate server will store the e-mail and try again.

    Very few ISPs are so clueless that they don't queue and retry when they get a 4xx response (indicating a tempory failure). There are a few, but not man.

    Concept of temporarily denying incoming message is called tempfail or greylisting.