Slashdot Mirror


User: aasm

aasm's activity in the archive.

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

Comments · 12

  1. Re:Scoping is Awful? on JavaScript: The Good Parts · · Score: 1

    That's because {} in javascript doesn't create scope, so you're always capturing the same lexical scope (the same /i/ variable) when creating a closure inside the for, that's why /i/ has the .length value, if you do "i = 0" after the for you're changing also the /i/ captured in the closures you've created because it's the same variable. the only thing that creates a new lexical context in javascript is a function call so you can alternatively write:

    for (var i = 0; i < elements.length; i++) { (function(i) {
            elements[i].onclick = function() { doSomething(i); }
    })(i) }

  2. How Game Movies Pays Off on Why Game Movies Stink · · Score: 1

    That would be a more interesting subject!

  3. has been done already? on Sony Projector Gets Bright Images From Black Screen · · Score: 1

    http://www.lusoscreen.com/eng/index.htm

  4. Does Andy works for SCO? :) on Author signs MyDoom virus · · Score: 1

    SCO hired Andy?

  5. Re:Y? on Y: A Successor to the X Window System · · Score: 1

    do you know how 'C' came up?..

  6. Compatability?! on MS vs. Open Source Office Suite Compatibility · · Score: 1
  7. Re:Hooray! on Mozilla 1.2 Unleashed · · Score: 1

    the last use i had for explorer was for downloading mozilla just after a windows install.
    as you can see, IE is usefull!

  8. Re:What is the use... on Mozilla 1.2 Unleashed · · Score: 1

    yeah, but that's what you're going to tell my mom when she finds a bug?
    mozilla isn't just for geeks anymore, it's for everyone who wants a better option to IE

  9. Re:This works well... on Only Thieves Block Pop-Ups · · Score: 1

    nothing that mozilla's JavaScript debugger won't catch!

  10. Re:Simple: on What's Keeping You On Windows? · · Score: 1

    i actually play warcraft III and diablo II in linux with winex 2.1 with no problem at all!

  11. Re:The article is missinformed. on Why Use Free/Open Source Software? · · Score: 1
    It's not a bug, it's a feature!

    As you can see in http://support.microsoft.com/default.aspx?scid=kb; EN-US;q239750

    You just need to add/change some value in the registry and you'll be ok with "text/plain" content-type

  12. Re:That's the catch, though... on Lindows - Where's the Source? · · Score: 1

    there is a diference between "a single person at a time" and "can only be installed in one computer at a time"