Slashdot Mirror


User: jinx_

jinx_'s activity in the archive.

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

Comments · 30

  1. Re:java. on In the Face of Android, Why Should Nokia Stick With MeeGo? · · Score: 1

    now if only they'll put some damn memory in whatever device they announce. "1 gig of memory!" does not mean 256mb RAM and 768mb swap. that's probably the biggest thing that annoyed me about the n900. it was outdated on release day. (that and the goofy ass 3 row keyboard. guys... splurge for a digit row for christ's sake. let us use something resembling a true qwerty setup. having to pop open a menu or remap the keyboard is a complete fail. use the g1 if you need a reference.)

    i will be thinking very hard before i adopt meego. if the device is anemic i'll probably just save my duckets and end up toughing it out with maemo.

  2. Re:Stop F'ing Whining on Convicted NY Drunk Drivers Need Ignition Interlocks · · Score: 1

    this won't stop the illegal alien on his 4th DWI. (5th?)

    hefty install cost, monthly fees, and a camera? fuck it. if the judge thinks there's a risk just go ahead and leave them in jail -- maybe release a few nonviolent offenders if there's no room.

  3. Re:And this is news? on Java IO Faster Than NIO · · Score: 1

    i believe that the AC was pointing out that "C" as defined by "the standard" (whether that be ANSI or ISO) is pretty thin in terms in built-ins.

    even old hands can find interesting tidbits once in a while though. wanna fuck with someone? include and use this guy: http://en.wikipedia.org/wiki/Iso646.h

  4. Re:The downside: C makes people think naively on Exam Board Deletes C and PHP From CompSci A-Levels · · Score: 1

    "I've found these are often the same people who advise C programmers to 'always compile in non-optimized debugging mode' because they cannot comprehend their program's behavior when there isn't a trivial mapping of line/statement to machine instructions in the step debugger."

    usually people advise that because it makes it easier for them to track down shitty bugs that inevitably work their way in due to decisions that were previously made (be that design, time management, or other) and often out of their control.

    C isn't your friend. it won't hold your hand. if someone wants their debugging symbols let them have them. once the code is mature and stable then you crank on -O and remove -g

  5. Re:TFA paints a more complete picture on Against Unknown Viruses, Avira AntiVir the Winner For Now · · Score: 1

    i realize they do, i just disagree with that decision. a 10 false positive difference over 46,000 samples does not justify a 20% less overall detection rate.

  6. Re:TFA paints a more complete picture on Against Unknown Viruses, Avira AntiVir the Winner For Now · · Score: 1

    It's worth pointing out that when you take false positives into account Eset Nod32 becomes the only AV solution to achieve the "Advanced+" rating.

    it's also worth pointing out that avira's 17 false positives when looking at 46,000 files is pretty damn small. i think i'll take the 17 false positives over the 7 false positives knowing that it caught 20% more of the REAL threats any day.

    so what if you miss out on that "legit" ecard.exe your grammy mailed you because avira thought it was fishy...? nod32 has a higher chance of letting the real malware through while avira is more likely to stop it.

    i wonder which company is employing real researchers and which company is riding on the output of virustotal.com.

  7. Re:You're propping up a straw man here on Mozilla 1.8b1 Released, Firefox Growth Slowing · · Score: 1

    wachovia's site works great with firefox...

    as long as you don't try to do online bill pay. i haven't checked in on it in several months, but i couldn't get my father to switch "all-the-way" because of it.

  8. Re:Software without security issues: on Latest Version of MyDoom Exploits New IE Flaw · · Score: 1

    i know you're just gleefully trolling, but on a serious note...

    his code is guaranteed to return 0 as per iso99 - 5.1.2.2.3.1 -- "...reaching the } that terminates the main function returns a value of 0."

  9. Re:$265? on Halo 2 Retail Date Broken in Midwest · · Score: 1

    fyi, any recent xbox modchip will happily play PAL games in NTSC. remember, it's a computer. changing something like resolution and refresh rate is trivial.

  10. Re:How about a Free Software Friendly Audio Card? on Free Software Friendly Graphics Card? · · Score: 1

    the biggest gain MCGA had was in colors... with 256 colors usable on screen, it was approaching vga. it didn't have the extensive resolutions of vga, but...

    320x200 with 256 colors and a soft palette is better than 320x200 with 4 colors and a hard palette. mcga still beats the tar out of cga any day.

    hell, the c64 was doing better than cga colorwise. =/ little hard to explain, but the gist of it was that you could use 320x200 with 2 out of 16 colors in any 8x8 square. alternatively, there was also 160x100 with 4 out of 16 colors in any 8x8 square. hard palette of 16 colors at half the resolution, but at least you could tell what you were looking at.

    and then there was the fact that there were non-native routines to get around the color limitations... they ate cpu on the commodore like ravers on candy, but it allowed for some pretty screens.

  11. Re:How about a Free Software Friendly Audio Card? on Free Software Friendly Graphics Card? · · Score: 1

    you realize that MCGA and CGA _ARE_ different, right?

    CGA was horrible. MCGA was closer to VGA.

  12. Re:riiiight on Ballmer - Xbox 'Can Take Sony' In Next Generation · · Score: 2, Interesting

    well, that carries two implications. #1 -- xbox didn't have japanese companies making their games. well guess what... it certainly wasn't for lack of trying. #2 -- microsoft was attempting to recruit developers and couldn't. why? no one expected the xbox to be worth the development time as it hadn't sold like crazy and just didn't have the numbers.

    chicken+egg problem. it doesn't help that if you go to almost any japanese department store the ps2/nintendo/gba/etc section is enourmous and the xbox section is _itty-bitty_. just trying to find the ps2/gamecube title you're looking for can be excrutiatingly painful. why? too many titles all over the place! finding the xbox title you're looking for is a pain in the ass too. why? no one carries it. =]

  13. Re:I have a plan... on IBM Moving Developer Jobs Overseas · · Score: 1

    my girlfriend works for an oncology center in georgia. she calls blue cross/blue shield every day to verify insurance claims. they moved their lines to jamaica a few months ago.

    she says it's very difficult to understand, mon.

  14. Re:I disagree 100% on Do Scripters Suffer Discrimination? · · Score: 1

    regardless, at that point, you're no longer passing a Foo, you're passing a Bar.

    fool, c++ is strongly typed. casting is merely a method of acknowledging that types disagree, but also pointing out that you don't care. ...and why the hell would you cast to a Bar *, take the address of, and THEN dereference?

    baz((Bar)foo); would have done the same thing.

    i suppose you're one of those guys that does this number: printf("%d", &somearray[4]); someone teach these people pointer arithmethic.

  15. telnet://tirtairngire.net on Remembering the BBS · · Score: 1

    hell, man. i still run a bbs. it's telnet only now, and *NO DOOR GAMES*, but it's still a bbs. i have custom ansi artwork and some nice posting still goes on.

    telnet to tir tairngire (name means land of promise in gaelic), just make sure you use an ANSI client (go to http://tirtairngire.net for directions if you need one).

    telnet
    webpage

  16. Re:Moslo on Intrinsity Claims 2.2 Ghz Chip · · Score: 1

    i tried moslo, but it has(had?) the problem of running semi-jerky in most games that i was interested in. example: it worked fine with wing commander ii, but the game was so jerky that it was unplayable anyway.

  17. Q3 on Intrinsity Claims 2.2 Ghz Chip · · Score: 3, Funny

    alright! another 2 fps in quake3!

    *sigh* i want a turbo button on my computer. except, instead of halving my speed, i want it to drop down to 33MHz so i can play all my old games properly under dos.

  18. news? on Taming the Web · · Score: 1

    anyone who's been following the news for longer than a day or two realizes that the internet is moving towards regulation (whether we like it or not). i just hope it won't become so regulated that it's unusable. a lot of this article is just review, pointing out conclusions that most of us have already come to.

  19. Re:TM laws side with AOL on More Trouble With AOL And GAIM · · Score: 1

    I would point out the case Brookfield v. West Coast Entertainment.

    http://www.cyberights.com/html/Cases/cases.html

    name disputes are ugly.

  20. and next... on Should Voice-over-IP Be Regulated? · · Score: 1

    and next they'll be regulating web cams. how silly can the ideas get?

    i liked the internet more when it was kinda like the old west... lawless.

  21. Re:Yup on Will Americans Have Trouble Finding IT Jobs, Overseas? · · Score: 3

    www.engrish.com -- and that's all i have to say about that.

  22. Re:Dolby 5.1 on What Do You Think Of The Delux DVD? · · Score: 1

    Dolby Digital does not mean 5.1 sound. Dolby Digital is a method of encoding. It even comes in a mono variety. While I wont claim that the SMS thing is legal -- it's entirely possible to have the game sound output to Dolby Digital.

  23. hell yeah on 5GB portable MP3 Player · · Score: 1

    now that's what i call storage. it's about damn time they used a drive instead of solid state stuff.

    and since it's got that much space, we just have to convince 'em to drop a vga card in so we can use our winamp plugins. =)

  24. i'm having flashbacks to the days... on E-Mail, Privacy and the Law · · Score: 2

    i'm having flashbacks to the days when bbs operators used to leave posted notices that your email was not private and was subject to being read by the sysop at any time.

    creepy, huh?

  25. Re:Tera => Cray? on Tera Will Buy Cray Research · · Score: 1

    cray used to be a nifty company.. but are any of the people which were originally there still with them? i thought i heard somewhere that one reason the company failed miserably when the purchases started was because they canned all the good people.