Slashdot Mirror


User: BotnetZombie

BotnetZombie's activity in the archive.

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

Comments · 313

  1. Re:Great an cool tech that will windows suck more on Memristor — 4th Basic Element of Circuits · · Score: 1

    This topic is old enough and long enough. Didn't we agree that in such circumstances, Microsoft bashing should be modded informative?

  2. Re:While we're at it... on Average Web Page Size Triples Since 2003 · · Score: 1

    If you want to make it fit, you can take notice of the phone's useragent string and use that to return an image that fits, either prescaled or scaled on-the-fly. But that's of course a PITA, at least it was when I was in the mobile biz some years ago.

  3. Re:bandwagonism on Are C and C++ Losing Ground? · · Score: 1

    Just one question, do you have a car analogy for that?

  4. Re:Python+Fortran or JAVA+Groovy on Are C and C++ Losing Ground? · · Score: 1

    Here's something interesting:
    http://www.math.ucla.edu/~anderson/JAVAclass/JavaInterface/JavaInterface.html

    I've never considered combining this before, but now it seems like it could be a good idea.

  5. Re:Are we SO sure? on Humans Nearly Went Extinct 70,000 Years Ago · · Score: 1

    coming back from the brink to reunite and populate the world Huh, and I read that as urinate and populate the world. Guess that with old age comes insanity. How intelligent is that design?
  6. Re:Damn I'm good on Dilbert Goes Flash, Readers Revolt · · Score: 1

    It sounds like a cool feature. And it seems like one that can easily be implemented with a traditional post form (of course I haven't gone and checked how they're doing this, that would be like RTFA).

  7. Re:Thanks for furthering your agenda! on Before the Big Bang: A Twin Universe? · · Score: 1

    Son! How many times have we told you not to mess with the heads of the primates from this era? Now get back to your own time and universe, your mother is worried sick! Oh, and can you bring some brain-snacks on the way home?

  8. Re:In BC we sink old ships to make habitats... on Old Subway Cars As Artificial Reef · · Score: 1

    What is BC? Are you posting from the distant past?

  9. Re:That's not a brick! on Apple Error Leaves iPhone Developers In the Lurch · · Score: 1

    It must be either the Linux or BSD bashing that flamed you. The first two have seemed like fair targets here. Try two new bashings, and skip Linux in the first one and BSD in the second. Then we'll see which one is holy and not to be made fun of.

  10. Re:Researches on /. find article similar to this on Astronomers Locate Solar System Very Similar To Our Own · · Score: 1

    I'm not sure if I'm in the good or evil system - my dupe got rejected?

  11. Re:Space sperm on Meteorites May Have Delivered Seeds of Life On Earth · · Score: 1

    And the seeding isn't over yet. Take a look at this article:
    Man 'targeted by aliens'

    Looks like invasion of the body snatchers to me...

  12. Re:Two? on Two Totally Unique Star Systems Discovered · · Score: 1

    In fact, the proper term is twonique, or tonic as it's more commonly known.

  13. Re:Smalltalk is the answer. on Study Shows Males Commonly Mistake Sexual Intent · · Score: 1

    boolean goodsDelivered = false;
    while(!goodsDelivered) {
    goodsDelivered = pretendToListenAndAgree();
    }
    Happy now? But yes, the gotos might be considered harmful when they turn into stalking...
  14. Re:unlikely - the country's in a bad economic stat on Iceland Woos Data Centers As Power Costs Soar · · Score: 1

    The currency is irrelevant. Many of the bigger companies here have Euros as their main currency, for accounting, income and costs. And what does the local bank rate have to do with anything? You think Microsoft will take a loan at 15% in an Icelandic bank? As far as political stability, business freedom, education status etc, look up any recent UN charts - we usually score quite well there, in many cases better than the US for example.

  15. Re:OT somewhat- A beautiful country on Iceland Woos Data Centers As Power Costs Soar · · Score: 1

    People from Iceland are known for speaking English very well.
    Well, though I'm sometimes grammatically correct, I never make much sense (and not in icelandic either). Not sure where your definition of very well fits in there.
  16. Re:Won't work on Iceland Woos Data Centers As Power Costs Soar · · Score: 1

    I think two things will stop these datacenters from going to Iceland: restrictive immigration laws and submarine data cable capacity.
    I think you're wrong on both accounts. Iceland is a part of the EU common workforce/finance market - and has similar immigration laws as the rest of Europe. It also hasn't been any problem in the companies I've worked for here to get people from e.g. USA and India to come and work/live for longer or shorter periods. The data cable capacity thing is a real issue right now, but it is being worked on and we will have more bandwidth relatively soon. If you're planning something big that should stand for a long time, by the time you've made the necessary deals and plans, this problem will be already solved.
  17. Re:Smalltalk is the answer. on Study Shows Males Commonly Mistake Sexual Intent · · Score: 2, Funny

    Way too much info to be remembered. Much simpler:
    1. Pretend to agree with whatever nonsense she says
    2. Don't give up before the goods are delivered
    3. Goto 1

  18. Re:Software as a Service != Parallelism on Is Parallelism the New New Thing? · · Score: 1

    Threads in a web server might as well be entirely separate programs
    The reason you can say this, is that most web servers/containers do a decent job of isolating one request from the other. All that's saying is that the hard part is mostly taken care of beforehand. That's not to say that I haven't seen people screw up, e.g. by using instance variables on re-entrant code...
    I know that what you're getting at is that the single-threaded/synchronized/serial request/response model doesn't require the dev to think much about parallelism. That's not the only way to do the background work of SaaSes though. You can e.g. have multiple asynchronous processes communicating through message queues, adding jobs and doing those jobs as they see fit. Again, if done correctly, each process can do its work pretty much in isolation so it may not change your view. IMO it's still massively parallel even if the hard part is mostly taken care of.
  19. Re:Software as a Service != Parallelism on Is Parallelism the New New Thing? · · Score: 1

    SaaS can be great and so can parallelization. But they're not related.
    Really? You say yourself:

    A typical SaaS provider has a few dozen to a few thousand servers running a few hundred to a few million instances of his software. Since typically a single server will run many instances of the software, parallelization will "just happen" for free.
    If that's not massively parallel, I don't know what is and someone has to code this end too. Even if you're mostly thinking about the client end, who's to say that you necessarily have to go through the typical browser as is most common now? Or that browsers can't be enhanced to do more work, more efficiently?
  20. Re:1% of programmers on Is Parallelism the New New Thing? · · Score: 1

    You don't even need to work in a place that does parallel programming to find that number low. It may also depend a bit on the programming languages used. I don't know many people that are good at C++ multithreading, while the majority of Java devs I know have at least some experience with it. That's not to say all of them are good, but many are - at least a much higher portion than 1%.

  21. Re:From the Fine Article on Why OldTech Keeps Kicking · · Score: 1

    My understanding is that, the personal computers of insane, evil, world domination plotters - are not included in that 0%.

  22. Re:Methane - Big Deal on Molecular Basis for Life Found on Extrasolar Planet · · Score: 1

    I blame silly english pronounciation for this joke problem. In my language (Icelandic), we say it like oor-an-ush. If you say it really fast and are lucky, it can sound like "you're an ass", which is way cooler than "your anus". And no, I'm not saying that the OPs are anii (that would be the plural form, similar to virii which I also know is wrong).

  23. Re:Specialization Versus Breadth on What Programming Languages Should You Learn Next? · · Score: 1

    Java & C++

    I think you meant Java && C++, I'm too scared to imagine what the bitwise AND outcome is :/
  24. Re:I agree on Visualizing the .NET Framework · · Score: 1

    I dunno how this is in .net, but another big plus for core Java is that if you find the documentation ambigious or lacking, you can just view the source code and see for yourself what happens inside whatever you're looking at.

  25. Re:Compulsive? on Discussion of Internet Addiction as Mental Illness Resurfaces · · Score: 1

    I guessed as much, was just nitpicking. I'm addicted to that kind of shit.