Slashdot Mirror


User: brunson

brunson's activity in the archive.

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

Comments · 221

  1. Re: When is the last time that you checked? on Is Red Hat the Microsoft of Linux? · · Score: 1

    Hmmmm...

    Googling for "redhat mirror iso" yields this as the first result:

    http://www.redhat.com/download/mirror.html

    But then, why bother looking for yourself when you can post drivel on slashdot and someone else will do it for you?

  2. Re:Pointless on Vi IMproved -- Vim · · Score: 1

    You know you're a real sysadmin when you can edit your /etc/fstab with ed in single user mode.

    Lemme hear an "Amen!" from my brothers who have been there, done that.

  3. Re:Holy War on Vi IMproved -- Vim · · Score: 1

    Inability to use the preview button aside:

    Most emacs users know how to use vi.
    Few vi users know how to use emacs.

    Form your own conclusions.
    :wq

  4. Re:Holy War on Vi IMproved -- Vim · · Score: 1

    s/to/too/

  5. Holy War on Vi IMproved -- Vim · · Score: -1, Troll

    Vi(m) is for people are to dumb to use Emacs.

  6. Re:Audio Production on Linux Support for Multi I/O Cards? · · Score: 1

    They also tend to be fierce Mac supporters, and getting them to move to even a Windows platform is hard enough, no matter how many times you tell them it's cheaper and faster.

    Good, cheap, fast... pick any two.

  7. Re:HP LJIII on Reducing TCO of an Inkjet Printer? · · Score: 1

    Too bad their configuration interface and network support sucks as much as it did eight years ago if you aren't running windows. Do yourself a favor and get a QMS if you're looking for a new printer.

  8. Re:That Threw me too... on Weta Digital's Render Farm Upgrade · · Score: 1

    No, it's The Lord of the Rings: The Two Towers.

  9. Re:Methodology on Eight-Character Password Limit in Mac OS X · · Score: 2, Interesting

    I bet you John the Ripper would crack your password in a matter of hours. They've built rules into it to do those letter to number conversions.

  10. OB Seinfeld on TrollTech Contest Results Announced · · Score: 1

    But what if I don't want a big flat TV, Jerry?

  11. Re:HA! on What's Happening with Open Source HA Software? · · Score: 1

    It's still standard journalistic practice to define any acronym the first time it's used in an article.

  12. Re:Why i have to log in as root. on Root as Primary Login: Why Not? · · Score: 3, Informative

    If it needs root access to devices, which it almost certainly does to ifconfig an interface up, it should be installed suid root (if safe). Also, sudo is a great utility for doing things as root, does it come installed by default?

  13. Re:Nothing Illegal about it! on Red Hat CTO Testifies at MS trial · · Score: 1

    The crux is that they're not necessarily changing things to make them *better*, just to make them *different* (i.e. not inter-operable). They can do this because they are in a monopoly position and this strengthens their position my making others need their software to interact with users that are already using it.

  14. Re:I don't think so. on With XML, is the Time Right for Hierarchical DBs? · · Score: 3, Informative

    This is a terrible example. You are trying to describe a scenario that requires a many to many relationship. The intermediary "joiner" or cross-reference table is only necessary if you have a need to keep both joined tables normalized, i.e. you want each distinct telephone number, as well as each person object, to be stored in the database only once.

    You've already given up the possibility of normalizing your phone numbers in the heirarchical model (my roomates home phone is the same as mine and it shows up in LDAP twice, once for me and once for him), so a simple many to one join to the telephone number table will allow you to list a home phone twice, once for each of us.

    Now, if the data you are modeling truely requires a many to many relationship (your model needs to handle the real world, you can't change the world to fit the limitations of your tools), you have no way of representing that information in a normalized fashion in a heirarchical model. The so called "kludge" of an x-ref table from the relational world is not even an option.

    The heirarchical model is so limited and simplistic that it can be implemented in a single, self-referential table in a relational database, and can even be queried in a recursive manner (oracle has had 'connect by prior' for dealing with these models since I started with the product 10 years ago).

    From my view as a mathematician, and not a computer programmer, the relational model is so much more robust and powerful than a heirarchical model it hardly warrants discussion.

  15. Routing protocol on Network Adapter Failover in Linux? · · Score: 3, Informative

    They typical router solution is to have the dual hosted box participate in a routing protocol like OSPF using gated or something similar. Configure your routing daemon to have each physical interface advertise a zero cost route to a loopback address configured on the unix box then always use that loopback address to connect to it. If an iterface fails, the routing protocol converges and you maintain your connection.

    Depending on the routing daemon and the OS you can even get load balancing between the equal cost routes when both interfaces are up.

  16. Re:I Hope You Keep Bail Money Near Your Gun on Fight Virus With Virus? · · Score: 2, Informative

    Colorado (for positive) and many other states have a "make my day" law. If someone breaks into your home you can automatically assume you are in danger of grevious bodily harm or death and can shoot dead on the spot.

  17. U.S. Patent No. 6,080,436 on McAfee Patents ASP Business Model · · Score: 1
    This guy patented toast, I think I'm going to patent fire, or maybe the wheel.

    ABSTRACT: A method of refreshing a bread product by heating the bread product to a temperature between 2500 degree(s) F. and 4500 degree(s) F. The breadproducts are maintained at this temperature range for a period of 3 to 90 seconds."

    CLAIM:

    1. A method of refreshing bread products, comprising: a) placing a bread product in an oven having at least one heating element, b) setting the temperature of the heating elements between 2500 F. and 4500 F., and c) ceasing exposure of the bread product to the at least one heating element after a period of 3 sec. to 90 sec.

    2. The method of claim 1 including the step of exposing the bread product to electromagnetic radiation in the wavelength range between 1.2 and 3.4 microns.

    3. The method of claim 1 including the step of selecting said bread products from rolls, muffin, buns and bagels."

  18. Re:No, you're not alone. Gladly condur on this one on Are Computer Graphics A Fine Art? · · Score: 1
    I definitely don't have the ablility to discern all art when I see it, but I can *definitely* tell you what is not art.

    When governments fear the people there is liberty.

  19. Re:Python directions on Ask Guido van Rossum · · Score: 1
    You seem to start at the premise that a stackless implementation is better than a stack based one and that Python *wants* to move in that direction. Stackless implementations are usually faster, but you lose ease of recursion and reentrancy. This is the first I've heard of Python going stackless, have I missed something?

    When governments fear the people there is liberty.

  20. Python's 2 biggest shortfalls on Ask Guido van Rossum · · Score: 1
    First, let me say I am a huge Python fan and advocate. It is my language of choice and I use it to develop applications both at home and professionally. That said, I see two major weaknesses in Python. First, the lack of function overloading based on parameter signature is, in my opinion, a missing piece of functionality that would be a huge boon to Python's OOedness. Secondly, Python's thread support is almost worthless without a multi-threaded interpreter. Can you speak to when and if these two major shortfalls will be addressed? Oh, and just for the counters: Perl Sucks, Python Rules. :-)

    When governments fear the people there is liberty.

  21. Re:Pet peeve: a Java "engineer" is not an engineer on Making Sense Of An Employee IP Agreement · · Score: 1
    What if you drive a train?

    When governments fear the people there is liberty.