Slashdot Mirror


User: BinaryGrl

BinaryGrl's activity in the archive.

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

Comments · 3

  1. Re:It's unlikely to be productive on Water Cooling Flow Indicators · · Score: 1
    Anyone is capable of setting some BIOS option or pulling a jumper and overclocking their processor.

    It is an entirely different breed of human who understands exactly what is going on when you do that.

  2. Inappropriate? on Hiring Open Source Developers for Closed Source Work? · · Score: 1
    How could it be inappropriate to hire open source authors to do closed-source? Most open source developers do not just magically come out of the woodwork. There are plenty of small-time coders (particularly those who submit things to Freshmeat) who don't seem to have "real" programming jobs, but most large-scale developers who do open source surely have jobs doing other work for commercial entities.

    How do you think these people make a living, anyway? Mowing Bill Gates's lawn?

  3. Uber-cool? Multiple redirection is decades old on To Z Or Not To Z · · Score: 1

    It somewhat defeats the purpose of UNIX componentism to build this sort of functionality into the shell. Your "multiple redirection"

    $ ls > foo > bar

    can be accomplished in a shell-independent manner like this:

    $ ls | tee foo > bar

    or the more extreme case

    $ ls | tee foo | tee bar | tee baz > quuz

    Although I admit it's faster to type when the shell does it.

    Learn your standard UNIX tools. They can do much more than you probably assume.