Slashdot Mirror


User: maxume

maxume's activity in the archive.

Stories
0
Comments
15,806
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 15,806

  1. Re:Mindless Drone Enlightenment Association on Recourse For Poor Customer Service? · · Score: 1

    Do they do the good work of maintaining a list of companies that provide good customer service?

  2. Re:I noted that it was a fishing expedition on Groklaw Summarizes the Lori Drew Verdict · · Score: 1

    Crazy people are allowed to own guns in the United States. Being careful who you cut in front of while driving was already the prudent thing to do.

    (Note that I am o.k. with people owning guns, it is part of our culture and any ban would be nearly impossible to enforce, and increase the ratio of bad people who own guns to good people who own guns.)

  3. Re:That's not what I'm saying. on Groklaw Summarizes the Lori Drew Verdict · · Score: 1

    Fair enough, but the legal standard happens to be that laws don't take effect until they are enacted; my point was not the breadth of the consensus, but that we end up having to set aside our personal disgust occasionally (in cases where there is not consensus).

  4. Re:The internet is ALREADY too dangerous for mOSt on Groklaw Summarizes the Lori Drew Verdict · · Score: 1

    Dementia?

  5. Re:That's not what I'm saying. on Groklaw Summarizes the Lori Drew Verdict · · Score: 1

    Our entire justice system is predicated on the idea of erring on the side of letting wrong doers free more often than innocents are imprisoned. So sometimes, shit happens, and you try to make it better for the future.

    If 'clearly unconscionable to somebody' were the legal standard, I'd be going to prison for this drink sitting next to me, Bill Clinton would be in prison for having too much fun (Rather than just lying), and so on.

  6. Re:sum instead of reduce on Solving the Knight's Tour Puzzle In 60 Lines of Python · · Score: 1

    Or a generator expression and sum.

    lambda c: sum(InRangeAndEmpty(c[0]+j[0], c[1]+j[1]) for j in jumps)

    It might be even better to have a function called CountValidJumps or count_valid_jumps and pass that to the sort.

  7. Re:Try lisp on Solving the Knight's Tour Puzzle In 60 Lines of Python · · Score: 2, Interesting

    His code:

        # recurse using our neighbours, trying first the ones with the
        # least amount of free neighbours, i.e. the "loners"
        for ty,tx in sorted(emptyNeighbours, key=lambda c: reduce(
        lambda x,y: x+y,
        map(lambda j: InRangeAndEmpty(c[0]+j[0], c[1]+j[1]) and 1 or 0,
            jumps))):
            Fill(ty,tx,counter+1)

    Idiomatic python(or at least more-so):

        def sort_key(c):
            return sum(InRangeAndEmpty(c[0]+j[0], c[1]+j[1]) for j in jumps)

        # recurse using our neighbours, trying first the ones with the
        # least amount of free neighbours, i.e. the "loners"
        for ty,tx in sorted(emptyNeighbours, key=sort_key):
            Fill(ty,tx,counter+1)

    The nest of lambdas that he wrote the article about isn't the clearest way to write it in python (the reduce( lambda x,y: x+y,...) instead of sum(...) is particularly fun). In my code, wrapping the InRangeAndEmpty in an int() might be preferred, I'm not sure (all that would do is make it clear that the sum is counting the number of squares that are in range and empty).

  8. Re:Python uses lambda calculus? on Solving the Knight's Tour Puzzle In 60 Lines of Python · · Score: 1

    Python is probably best described as multi-paradigm. Functions do happen to be first class objects (along with everything else), so a lot of stuff can be written in a functional style. The lambda keyword is little more than a way to declare a function without giving it a name.

    A downside compared to lisp is that it isn't really possible to declare something as static, so optimization and compilation are more problematic (it is possible to construct a stubborn object, but names/references to that object can simply be rebound to a more flexible object, so it is hard to rely on the object being stubborn).

  9. Re:Not Really on Should Taxpayers Back Cars Only the Rich Can Afford? · · Score: 4, Interesting

    Poor regulation, not no regulation. You used the poor regulation to argue that unregulated industries can't work. There were billions of dollars of government funds sloshing around the mortgage market, and apparently, companies were acting as if they were going to get a government bailout if they screwed up (the mortgage money is germane, as a great deal of the risk that the CDOs were supposed to be backing was in MBSs).

    To a great extent, the unregulated hedge funds did a better job than the regulated investment banks (whether what they did was particularly good for society is a different discussion). Some of them made enormous sums of money playing the fools in the CDO market.

  10. Re:People don't understand electric cars on Should Taxpayers Back Cars Only the Rich Can Afford? · · Score: 1

    A lot of pickup trucks retail for less than $20k.

    A lot of them don't, but still, a lot of them do.

  11. Re:Woa woa, let's step back on Should Taxpayers Back Cars Only the Rich Can Afford? · · Score: 1

    Some of that $75 an hour is younger union members finishing up helping the automakers fund the promises that they made to the older union members.

    Seeing as the new deals are a lot different than the old deals, they are bending over and taking it.

  12. Re:Not Really on Should Taxpayers Back Cars Only the Rich Can Afford? · · Score: 3, Funny

    Calling the financial sector unregulated is like calling purple a squirrel.

    I think government regulation is, in many cases, going to be better than the alternative, but that particular example is just horrible.

  13. Re:Mischaracterized on Should Taxpayers Back Cars Only the Rich Can Afford? · · Score: 1

    Oil is entirely replaceable. You just need carbon, some energy, and a couple of other ingredients.

    It isn't cheap to make it, or particularly sane, but it is perfectly possible.

    Also, bonus news, the world economy will shut down before gas hits $20, so you won't be worrying about charging your electric vehicle, you will be worried about killing and dressing your neighbor before he kills and dresses you.

  14. Re:Absurd Question on Should Taxpayers Back Cars Only the Rich Can Afford? · · Score: 1

    Technology doesn't have to be cutting edge.

    For example:

    http://web.mit.edu/newsoffice/2008/itw-corncob-tt1001.html

  15. Re:Mischaracterized on Should Taxpayers Back Cars Only the Rich Can Afford? · · Score: 3, Interesting

    No one gives a damn about efficiency. Sure, given equal performance and convenience, most people will choose the more efficient option, but the performance and convenience damn well better be equal.

    The point of bailing out the big 3 is to slow down the rate at which they dissolve, giving the 3 million people that are nearly directly dependent on them for employment more time to find other jobs, retrain or die. The thought is that the ongoing inefficiency is less costly than the other way round.

  16. Re:Grrrreat! on MS Says Windows 7 Will Run DirectX 10 On the CPU · · Score: 1

    Yeah, I missed that. That has a lot more to do with bus bandwidth than it does integrated/dedicated though (which is essentially irrelevant for everything but screaming 3d performance).

  17. Re:Grrrreat! on MS Says Windows 7 Will Run DirectX 10 On the CPU · · Score: 1

    It might default to software, but there is a check box for hardware overlay in the version I am using (8.6 on XP). The feature matrix suggests that there is good output support across all platforms:

    http://www.videolan.org/vlc/features.html

    Perhaps you are thinking about decoding, which is different than output (I don't think VLC can take advantage of hardware decoding, but it is not all that important for viewing movies on computers made in the last 5 years)?

  18. Re:What's the difference here? on An Ethical Question Regarding Ebooks · · Score: 1

    You should have offered them unimaginable sums of money.

    Everything has a price. The other way to interpret your story is that you didn't find theirs.

  19. Re:Grrrreat! on MS Says Windows 7 Will Run DirectX 10 On the CPU · · Score: 1

    You are giving them bad advice. On this 2 year old laptop with Intel 945GM graphics, outputting a 512 by 224 mpeg4 (divx) video to the second monitor, fullscreen at 1680 by 1050, takes less than 10% of the cpu (a core duo at 1.6 GHz) using directX output. A 720 by 288 video takes less than 15% cpu.

    This is using VLC in hardware overlay mode, perhaps the software they are using is a little less efficient.

  20. Re:the vanishing chinese moon program on Google's Gatekeepers · · Score: 1

    I think he is confusing why China abandoned their moon program. There isn't any reason to try and go there since it blew up, so it isn't that confusing that they would stop trying.

  21. Re:I remember life prior to the Internet on An Ethical Question Regarding Ebooks · · Score: 1

    For a brand new book, the copyright should not depend strictly on their willingness to print copies of the book, there should be some period of exclusive rights (if only to sidestep the need to constantly be testing companies to see if they will publish a book). Also, crappy print-on-demand editions would pop up (which is good for the consumer, at least on some level) to stave off abandoning the rights.

  22. Re:What's the difference here? on An Ethical Question Regarding Ebooks · · Score: 3, Informative

    You are talking about dissemination, not publication. Copyright encourages publication by giving the rights holder influence over dissemination.

  23. Re:I would on Would You Add Easter Eggs To Software Produced At Work? · · Score: 1

    Is bigot a word you use when you want to try to make other people feel bad?

  24. Re:Borg on Google's Gatekeepers · · Score: 1

    That was the fear mongering that the other poster was talking about.

  25. Re:I would on Would You Add Easter Eggs To Software Produced At Work? · · Score: 2, Insightful

    So I had to look up "culture jamming" and it appears to be justifying being an asshole by being arrogant. Is that about right?