Slashdot Mirror


User: loufoque

loufoque's activity in the archive.

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

Comments · 3,170

  1. Stop the FUD, Macbooks not expensive on Microsoft Losing Big To Apple On Campus · · Score: 1

    Macbooks are not more expensive than the rest.
    The latest Macbooks are one of the best laptops around the $1,000 mark (which, interestingly enough, becomes a good €1,000 in Europe).
    The only competitor is Dell, which has the advantage of allowing you to customize your hardware slightly. Macbooks are good by default though, while with Dells you need to tinker.

    HP, Acer, don't make me laugh. That's very poor quality.

  2. Unicode sentence boundaries on Sentence Spacing — 1 Space or 2? · · Score: 1

    Look up what the rules for identifying sentence boundaries in Unicode are, and write your text so that your sentences can be distinguished by applying these rules.
    Unicode is THE standard for dealing with natural text, so that's what you should follow.

  3. Bamboo tablets have been there for years on Apple Launches New Magical Trackpad, 12 Core Macs · · Score: 1

    It's basically a bamboo tablet, except a bamboo tablet also works as a graphics tablet.

    There is nothing innovative about this, and claiming it is "The largest Multi-Touch trackpad ever" is just false.

  4. Japan is a country of contrasts on The Puzzle of Japanese Web Design · · Score: 1

    Nothing new here.
    Being extremist one-way only exacerbates being extremist the other way, which is why Japan has so many contrasts.

    The main reason they have such flashy things everywhere is probably because the traditional culture of Zen, Tao etc. became overwhelming, and they wanted something different.

  5. Re:This has always been a plus for Linux, so? on Building a $200 Linux PC · · Score: 0, Flamebait

    That's why I don't do bleeding edge hardware at home unless I have an absolute need for it (e.g. gaming, or some bloatware application that needs that type of horsepower)

    firefox?

  6. They never really wanted it to work on Dell Drops Ubuntu PCs From Its Website · · Score: 4, Insightful

    When it was announced that Dell was selling computers loaded with Ubuntu, I went to their site and looked. I looked hard, and didn't see anything. Then on another site I found a link to an obscure page on the Dell website that you wouldn't find in any other way.
    And there, I saw that they were selling old models of their products, with only the low-end hardware choices, for a more expensive price than what they sell the new model with high-end choices and Windows. To the point where even a person who would want to buy a Dell computer and install Ubuntu on it would buy one preloaded with Windows and install Ubuntu himself.

    And now they're going to say they're pulling it because it didn't sell enough. Of course it didn't, they purposely made it that way; it's like they wanted it to fail from the get go.

  7. Re:Bloatware / tracking / rooting prevention... on 'Bloatware' Becoming a Problem On Android Phones · · Score: 1

    vodafone

  8. Re:Bloatware / tracking / rooting prevention... on 'Bloatware' Becoming a Problem On Android Phones · · Score: 1

    The Nokia N900 is subsidized and is available from all major carries at about the same price as any other smartphone.

  9. Re:I'm Confused... on 'Bloatware' Becoming a Problem On Android Phones · · Score: 1

    The only major manufacturer that allows you to install anything you want on your phone, as far as I know, is Nokia, with the N900. Which is a true Linux, not an Android.

    So if you want a manufacturer-supported way of doing whatever you want on your open phone, the N900 is the only choice.

  10. 55%, not 110 proof on The World's Strongest, Most Expensive Beer Served Inside a Squirrel · · Score: 1

    Seriously, who uses that kind of meaningless notation anymore?

  11. Re:x86 biased project on Lightspark 0.4.2 Open Source Flash Player Released · · Score: 1

    That's just silly. It should have used LLVM.

  12. Re:PulseAudio on Lightspark 0.4.2 Open Source Flash Player Released · · Score: 1

    Then run pulseaudio on top of ALSA, like everyone. You can still use ALSA directly if you want to.

  13. Re:Yes, many users do care on 4 Cores? 6 Cores? Do You Care? · · Score: 1

    Virtualization requires specific hardware to work well.

    Very few constructors motherboard constructors provide working Intel VT-d for example.

  14. Re:HTML 5 Apps on Jolicloud 1.0 Has an HTML5 UI · · Score: 1

    Firefox is extremely sluggish for me.
    Just tried Chrome. I thought it was unstable on Linux, but it's pretty good and lightning fast. Don't really like the interface and the lack of settings though.

  15. Re:HTML 5 Apps on Jolicloud 1.0 Has an HTML5 UI · · Score: 1

    With a decent browser, performance comes close enough, and the speed with which the application is "installed" is unmatched

    I'd quite like to have one of those.
    What are those magic browsers you speak of?

    On Linux, all of them are slow (except maybe Opera).

  16. Re:Erm... on Nokia and RIM Respond To Apple's Antenna Claims · · Score: 1

    C++ assumes that developers are not smart. That any person who should be coding can also handle manual memory management

    Memory management *should* be done automatically in C++, as this is the only practical way to enforce exception-safety throughout, and it also makes programs easier to reason about.
    It's simply done with RAII rather than garbage collection. It still requires the coder to think of resource ownership as part of the design.

  17. Re:Why's this on Slashdot? on Girl Seeks Help On Facebook During Assault · · Score: 1

    Attempted rape or even rape itself is not a good reason to murder someone.

  18. Re:If they were competent, they wouldn't be doing on Measuring LAMP Competency? · · Score: 1

    But they shouldn't be. That's why you have so many problems with SQL injection [xkcd.com] attacks, for example.

    Dealing with SQL injection or XSS certainly doesn't require engineering expertise. It only requires common sense.

    You need to encode data in a specific way to embed it in some other data which is under a specific format under which some characters have special meaning. The fact that most web developers don't even understand this -- or just barely enough to apply it to SQL injection and XSS because they've been told to -- says wonders about competence in the field.

  19. Re:If they were competent, they wouldn't be doing on Measuring LAMP Competency? · · Score: 1

    Right...because nobody puts out web applications, right?

    I didn't say that.
    I merely stated that such tasks were relegated to people with next to no competence.

  20. If they were competent, they wouldn't be doing PHP on Measuring LAMP Competency? · · Score: 0, Flamebait

    Or any other form of web development.

  21. Re:More details and downloadable archive on Claimed Proof That UNIX Code Was Copied Into Linux · · Score: 1

    In an environment where there is not an enforced indentation style, people don't all use the same ones (which, as you described things, was your case), so someone will use spaces.

    So if you merge your code into that codebase, it should use spaces as well, so as not to mix tabs and spaces.

    The fact that you think that your code is self-contained and a bit apart from the rest is irrelevant, because someone is eventually going to edit your code.

  22. Re:More details and downloadable archive on Claimed Proof That UNIX Code Was Copied Into Linux · · Score: 1

    Coding style like this makes me cringe, particularly the thing about no braces for single-line conditionals

    That was probably the only good thing in his coding style...

  23. Re:More details and downloadable archive on Claimed Proof That UNIX Code Was Copied Into Linux · · Score: 2, Insightful

    About the only difference was in indentation - mine is "always put the opening brace on the same line, one true tab, else in same column as if, no braces for any single-line condition to a control structure (for, if, else, while, etc)"

    I hope they took the other person's then.
    Never mix tabs and spaces.

  24. Re:Still creating artificial scarcity? on Bitcoin Releases Version 0.3 · · Score: 1

    So this system requires CPUs to burn scarce, real electricity in order to generate virtual electronic tokens whose only purpose is to simulate the scarcity of rare metals

    No, it requires computing power. It just happens that electricity-based CPUs are the most powerful method we have to compute at the moment.
    But you could just use pen and paper, or even just your brain.

  25. Sexist search engines on The Demographics of Web Search · · Score: 5, Insightful

    Yes, that's really what we need...

    What next, a search result that depends on your religion? If you type "Origin of the Universe", you get articles about the Bible if the engine thinks you're Christian, and scientific material otherwise?

    They need to understand there is little value in subjective data. Their results are already biased enough, they should take steps to fix that, not make it worse.