Slashdot Mirror


User: user2048

user2048's activity in the archive.

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

Comments · 16

  1. Re:Avoid the problem in the US on Preparing Your Datacenters for DST Changes? · · Score: 1
    "move your servers to Arizona ..."

    But not to the Navajo Nation, which covers northeastern Arizona and follows DST. But the Hopi reservation would be OK. (It's in Arizona, surrounded by the Navaho reservation, and does not follow DST.)

  2. Re:Problems with Programming on Bjarne Stroustrup on the Problems With Programming · · Score: 1

    > cout << "You are a bazooty head";

    A better example of the problem is

      current << size;

    In that context, is << a shift operation or an output operation? You can't tell.

  3. Re:It's not a musician... on The First Robotic Musician · · Score: 1

    > Synthesizers are getting much better, and I think for some musicals they dont even bother with a pit orchestra.

    That's not so much because synthesizers are better, but because they're cheaper than musicians and some audiences will accept the substitution.

    Synthesizers aren't all that good at duplicating traditional instruments and players, if you look (listen) at all the musical aspects. Synthesizers are great at doing things that can't be done with traditional instruments and players.

  4. Fast development is new on Too Much Focus on the Beginning of Software Lifecycle? · · Score: 1
    The emphasis on fast development is a recent... development.

    In the era just before the current one, the accepted wisdom was to spend lots of time on requirements, design, code, and test in order to save lots and lots of money on maintenance. But since development took so long, many projects ran out of money before producing any software. And those that did produce SW didn't provide what the customer really wanted.

    So some of the gurus of the SW world decided it would be better to develop quickly and at least get something done, and get some feedback from the customer before spending too much time and money.

    Maybe the pendulum will swing the other way now.

  5. Re:Standard Waste of Our Tax $ on NSA To Datamine Social Networking Sites · · Score: 1

    The information need not be (very) accurate. It can still be a useful input to some sort of statistical algorithm. Even slightly-more-accurate-than-random data can contribute to a solution. Of course, the data could be less-accurate-than-random... But it's all a matter of playing the odds, I think.

  6. Don't make it too heavy on Replacing the Housing on Your Flash Drive? · · Score: 1

    Don't make the new case too heavy. In many cases, the drive is held horizontal by the connectors at one end. If the case is too heavy, you'll stress the connectors. And as the case gets longer, the leverage makes the situation worse.

  7. VNC on Software for a Virtual Office? · · Score: 1

    VNC, for screen sharing and remote control.
    Others can see anything you see on your screen.
    Great for discussions and troubleshooting.
    Free.

  8. Re:never a CS student on Studying Computer Science at Home? · · Score: 2, Informative

    computer science != programming

  9. Re:Musical Instruments on Ten Technologies That Refuse to Die · · Score: 2, Insightful

    Synthesized (or sampled) versions of acoustic instruments somehow always sound different from the real thing, even on recordings or through amplification. On hearing, say, a synthesized/sampled trumpet, I think "hey, that sounds a lot like a trumpet". But it's easy to tell the difference.

    Part of the difference may be in the way they're played, and by whom. A guitarist is going to play differently, inc. different notes, than a keyboardist imitating a guitar.

    But a bigger part of the difference is probably the fact that the sampled/synthesized sounds don't really capture the original sound. The original attack is probably more complicated and variable (note to note). Acoustic instruments also have very different tone color from pitch to pitch (or note to note), either intentionally or because of the way the instrument is constructed.

    I don't think the synthesized/sampled versions of instruments like pianos and guitars take into account the slight ringing of other notes when one note is played.

  10. Re:Noooooooo! on Latest Proposals for C++0x · · Score: 1
    ...GCC has been very complient for about a year now, so it took 4 years for complient compilers to come out...

    Is it possible that there were compliant compilers before GCC? And that GCC was late at reaching compliance?

  11. Re:What the XP folks have right (and wrong) on Test-Driven Development by Example · · Score: 1
    ... the state of testing in corporate america. Just atrocious. ...

    Yes. That's what I've seen. No unit testing. No regression testing. No automated testing.

    Manual, very-high-level system testing only.

    Tremendous amounts of time and money spent in the integration phase.

    The first step to improvement is to just do some unit testing. Writing the tests before the code is secondary.

  12. Re:look at sourceforge on Yahoo Moving to PHP · · Score: 1

    Most Perl software would be downloaded from CPAN, not sourceforge.

  13. Re:Not ironic on Charles Simonyi leaves Microsoft · · Score: 1

    Hungarian notation is for cases where variable types can't be interchanged, but the computer can't detect violations of this rule (ex. most assembly language). Hungarian notation helps the programmer avoid breaking this rule.

    The more that types can be mixed, and the the more that the computer can detect type problems, the less useful Hungarian notation is.

  14. Re:i'm forgetting again on VeriSign DNS in Trouble · · Score: 1

    Something similar happened to me. Somebody charged $500 of VeriSign services to my Discover card. I called to complain. They wouldn't even talk about removing the charge unless I faxed all sorts of info to them. And they wouldn't tell me what services they were charging me for (I did manage to get the phone rep to say it involved some domain involving "graphics" and a Yahoo email address.

    I let Discover handle it. They gave me an immediate temporary credit, and a few months later the credit became permanent.

    While I was waiting for the matter to be resolved, I got a (postal) mail notice about renewing another set of domains I had nothing to do with (all containing the string "sony").

  15. Re:Java? on Organizing Source Code, Regardless of Language? · · Score: 1

    Every public class goes in a different file, IIRC. That file can also define other, non-public classes, both inner and non-inner.

  16. Re:Lots of overhead. on Downsides to the C++ STL? · · Score: 1

    True, the C++ language spec explicitly specifies performance requirements for STL components. But only in terms of how the performance scales for large sets of data - the Big-0 performance. This doesn't require that any of it is actually fast on any absolute scale. (I think.)