Slashdot Mirror


User: elmartinos

elmartinos's activity in the archive.

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

Comments · 128

  1. my first program on On This Date in 1964, the First BASIC Program · · Score: 1
    I have learned programming with Basic, on an old Green-screen computer. I clearly remember my first program, which was something like this:

    10 GOTO 60
    20 PRINT "L"
    30 GOTO 100
    40 PRINT "E"
    50 GOTO 80
    60 PRINT "H"
    70 GOTO 40
    80 PRINT "L"
    90 GOTO 20
    100 PRINT "O"
    I was overjoyed and amazed that it was possible to create something that is completely incomprehensible by humans, yet does something useful. Fortunately, my programming style has changed a bit over the years :-)
  2. Re:Solid State, Fast Disks... all for wimps on Western Digital's VelociRaptor 10K RPM SATA Drive · · Score: 1

    Ever tried to reboot a system where *all* its data, including the operating system itself, is stored in RAM?

  3. Re:Finally. on Computer Games Make Players Less Violent · · Score: 1

    Its very interesting how different cultures such a problem:

    * Americans sue the school, lots of money is involved and afterwards a few individuals might be richer and most people have to suffer ridiculous consequences.
    * Here in Europe he will be properly treated in a quality hospital immediately, will be back in school the next day, and be able to play again in a week.
    * In Africa he might never be able to walk properly again because there's no money for a treatment.
    * Japanese would blame the kid for beeing stupid and dishonoring the school, and build a robot to replace him.

  4. Re:Not necessarily introverts on Instant Messaging For Introverts · · Score: 1

    That's why I strongly believe jamming devices should be legal and everybody should have one.

  5. Re:not to slam Google but... on Google Scoops Microsoft w/ Mesh Applications · · Score: 1
    Google's spreadsheet has done quite a bit to expand its functionality lately. E.g. Offset, Percentile, Standardize are all there. You can even use web queries like

    =GoogleFinance("MSFT"; "price")
    which is pretty cool. You also can write your own "gadgets", which are kind of a replacement for Macros.
  6. Re:Some journals are still milking both ends on Physics Journal May Reconsider Wikipedia Ban · · Score: 1

    what about a slashdot or digg like system. Everybody can submit, everybody can vote about the documents quality.

  7. Re:For those interested in performance numbers on Mozilla Releases Firefox 3 Beta 4 · · Score: 1

    I hate to say it but performance in Linux sucks, especially for tab switching. In windows pressing Ctrl+Tab is almost instantly, in Linux (Ubuntu 7.10) it takes almost a second!

  8. Re:The only problem... on Particle Swarm Optimization for Picture Analysis · · Score: 1

    You are right that a specialized optimization usually produces better results than a PSO. But there are many cases where it is very time consuming to develop such an algorithm when it is good enough to just use the plain PSO. Compared to other metaheuristics, PSO does not not need lots of fitness evaluations, and it is very robust because it has few parameters. When it is good enough to use a simple off-the-shelf PSO, why develop a specialized optimizer?

  9. Re:Not going to work outside of individual systems on Honeybees Might Prompt Faster Internet Server Technology · · Score: 1

    the individuals don't necessarily need to work toward the good of the swarm. In fact they usually just act selfish, but the resulting emergent behavior is good for the whole swarm. For example, when huge locust swarms run out of food, they begin to eat each other. The effect is that each bird tries to fly away from its followers and eat the one flying before him, which results in the whole swarm moving to a new area where they can find more food.

  10. Re:is webmail to blame on Thunderbird in Crisis? · · Score: 1

    Decent integration with -other- applications is non-existent.
    In Gmail you can easily import mail from any POP3 account. There are a lot of tools available that check for new messages on gmail or any other webmail.

    When I decide to just quit all windows of my web-browser to clean up my desktop I hate that the mail gets closed too.
    How often do you really have to restart your browser? Also, you don't loose any data when closing & reopening your webmail so I don't see a problem here.

    No offline functionality.
    Compare this to "Always accessible, on any computer, anywhere". I much prefer being able to read & search all my mail wherever I am. Besides that, you can have both. Its easy to download your mail using POP3 too in case you really have to.

    Large Attachments have to be 'downloaded' when I need them.
    You don't need a mail client for that, just a harddisk where you can store downloaded attachments too. When you leave your attachment online too it does not really matter when your harddisk breaks.

    PRIVACY. You can't rely on that with webmail.
    You can't rely on any privacy when sending mails around in plain text. It also is a matter of who you can trust. I feel more save with gmail having my data than having it unencrypted on my local harddisk which might possibly get stolen by someone I don't want it to have.

    User experience. Gmail is 'comparable' to a real application, in the same way that a mock-up looks like a real product. From 4 feet away it might even look the same, but start using it and its immediately obvious you are using a web based application.
    Of course webmail has different properties than real applications, but I find that the added features like fast full text search, not having to delete any email, no worries with backups are killer features that no desktop application can provide.

  11. Don't buy CDs, they are copied so they are stolen. on Sony BMG Says Ripping CDs is Stealing · · Score: 1

    That must mean that Sony is the biggest thief of all. How did they manage to create all the CD's that you can buy everywhere without copying/stealing? I don't belief each and every CD is hand-crafted by the artist.

  12. Re:Imagine if the World Trade Center... on The Next Fifty Years In Space · · Score: 2, Informative

    I highly doubt that. Do you know where the asteroid came from? Who cares, it clearly was an act of terrorism! Iraq has terrorists, so the only conclusion can be that we have to invade Iraq.

  13. User Driven Scheduler on The Really Fair Scheduler · · Score: 3, Funny

    Writing a fair scheduler is difficult. Why not let the user decide? I propose a popup message for each context switch: "Hello, it seems the CPU is doing a context switch. Which application to you want to allow to run this time?".

  14. Neutrinos massless = timeless, but change state? on Low-Energy Neutrinos Detected In Real Time · · Score: 2, Insightful

    Last time I have heard something about the Neutrinos, there was an unresolved problem: Neutrinos do not have mass, therefore travel at the speed of light. But since they travel at the speed of light they have no sense of time, and therefore it should not be possible for them to change their state as they are practically frozen in time. This and earlier experiments confirm that despite that they change state. Are there already theories why this is possible?

  15. Somebody please think about the children! on Teen Hacks $84 Million Porn Filter in 30 Minutes · · Score: 1

    Watch this timeless masterpiece of sexual education. We have to save the children!

    http://www.ludzer.com/2007/07/22/anti-porn-psa-fro m-the-1960s/

  16. rewritten application on Any "Pretty" Code Out There? · · Score: 1

    I have rewritten unp, which is a simple extraction utility, just to see how a clean implementation would differ from it. The result is a much shorter, and easy to comprehend application called e.

    The main difference between the two implementations is a clear separation of concerns. While unp looks like one large blob of code with no clear structure, e has all the rules in one place, and application logic in another place. In unp this lack of separation has already led to duplicated code.

  17. Re:Bombula on Deathbed Confession Says Aliens Were at Roswell · · Score: 1

    it just doesn't make sense that a civilization advanced enough to cross interstellar space would crash in New Mexico

    We are advanced enough to travel around the world, yet somebody crashed into our friendly neighbor's grocery store yesterday.
  18. Re:Missed the real potential breakthroughs on Five Ideas That Will Reinvent Computing · · Score: 1

    In which way does this reinvent computing? From a users' perspective, the only change is that the computer is a bit faster. It certainly changes a bit of the operating systems code, special file systems etc, but thats not a revolution.

  19. there are ways to get him on Bush Causes Cell Phone Ban · · Score: 1

    This does not help against my most favourite weapon, the water balloon. Unseen by metal detectors, blast radius 1m, approximate range 2-10m. Can surpass fences and walls through clever use of gravitational effects. Very effective as a drop weapon as it explodes on impact. Transforms kinetic energy into splash damage. Unfortunately, anybody that uses it will most likely be killed by a paranoid American.

  20. pair programming on Microsoft Invents Split Screen PC · · Score: 1

    Combined with the pair programming chair, this invention will mark a new era in extreme programming.

  21. for a GNU dawn! for freedom! on SCO Wanted To Gag Torvalds, Moglen · · Score: 4, Funny

    What about Richard Stallman? According to this trustworthy news source he was attacked first.

  22. Re:Hardness, stiffness, and toughness on Easy-to-Make Material Scratches Diamond · · Score: 1

    In subsequent emails, he was begging me to come up with a solution (e.g. diamond sword, coated with steel, etc.?).

    How about the good old deus ex machina, it worked for the ancient greeks. Just let one protagonist say something along this line:
    "thanks god they invented the nanofluxdiaconplexor, which transforms diamonds into the toughest material in the universe!"

    problem solved.

  23. Livecd goodness on Ubuntu Feisty Fawn Released · · Score: 3, Informative

    I am posting this from the same computer on which currently Ubuntu is installing. Beat that, windows!

  24. Re:Wii Games Need More Selection on January Game Sales Explode, Wii Dominates · · Score: 1

    you can be pretty sure that the number of games for the Wii will increase dramatically. The enormous success of the Wii was not expected, and the new controller was a quite risky idea. Because of this many game studios did not have big plans for the Wii, but with such good sales they have to change their strategy and develop cool Wii games. After all they want to make money, and lots of Wii consoles means lots of money.

  25. Re:Face it on How Do You Advocate Linux in 5 Minutes? · · Score: 1

    Sorry, Linux is definitely ready for customers like grandpa. My parents are almost completely computer illiterate, and they are now happily surfing away with Linux. Installing and explaining Windows would have about the same effort to me, but now my maintenance effort is almost zero.

    Linux is already good for very unexperienced users. The problem are users who were once introduced to windows, they are spoiled. It is about the same as when programmers are spoiled with the GOTO statement, it is possible to unlearn this mess but it takes a lot of effort.