Slashdot Mirror


User: cerberusss

cerberusss's activity in the archive.

Stories
0
Comments
2,867
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,867

  1. Please stop shedding light on Venus Probe Set to Reach Target · · Score: 1
    If all goes well, it could shed important light on climate change here on Earth

    The problem is too much light, damnit! If those idiots keep shedding more, all will not be well.

  2. Re:Wall-mounted stuff. on Making Modifications to Your Computer Workspace? · · Score: 1

    It wasn't meant sarcastic though, I just thought it should be modded funny.

  3. Re:Perhaps the most important thing of all... on Making Modifications to Your Computer Workspace? · · Score: 2, Funny
    Perhaps the most important thing of all... The chair

    I disagree. The most important thing for me is the three hot blonde Swedish girls that welcome me every morning when I enter my cubicle. Every few minutes, they massage my legs, fetch me a coffee or otherwise make sure I'm comfortable.

  4. Re:Wall-mounted stuff. on Making Modifications to Your Computer Workspace? · · Score: 1
    Wall-mounted shelves are the best thing since crucifixion.

    Modded insightful. Only on slashdot...

  5. Re:Keyboard + mouse tray on Making Modifications to Your Computer Workspace? · · Score: 1
    take frequent breaks!

    To add to parent poster: if you're working in X, the xwrits package is great for this.

  6. Re:Dilbert realities of the corporate coder. on Computer Science as a Major and as a Career · · Score: 1
    Partially I'm lucky, but I help the luck by keeping an eye on the jobs advertisements.

    Of course, you could be the type that likes to complain but nevertheless rather watch Lost instead of spending five minutes scanning through jobs advertisements.

  7. Re:Unlike you, most of us were not born rich on Computer Science as a Major and as a Career · · Score: 1

    I'm not one of those "you can do whatever you want" type of guys, I'm just putting the balance back. The only thing my parents gave me, was a good education.

  8. Re:Dilbert realities of the corporate coder. on Computer Science as a Major and as a Career · · Score: 1

    Heh, maybe 'bribable' is a better word.

  9. Re:Dilbert realities of the corporate coder. on Computer Science as a Major and as a Career · · Score: 5, Insightful
    Why the flying fuck did you allow the Man to kill your working pleasure?

    Let me describe my work:

    • Fun projects, combining software and hardware which get sent off on a balloon 40km into the atmosphere
    • Intelligent colleagues, telling how they built a 50 watt long-wave radio transmitter
    • A Linux workstation with friendly sysops
    • A nice manager with which I talk about his sailing ship

    You've become a mindless work drone. And the most stupid thing is, YOU DID IT TO YOURSELF.

  10. Raw nerves? on MySQL Team Wins Golden Penguin Bowl · · Score: 1

    UUh, raw nerves? Oracle has a history of buying and killing off products. If Jeremy could hit Sleepy Cat team's raw nerves at this moment, what were they thinking of when selling off to Oracle?

  11. Re:Waste on New "Dark" Freenet Available for Testing · · Score: 1
    So... Your posting on /. with a C64 then?

    WELL ACTUALLY YES

  12. Re:Block by default. on Security Fears Prod Firms to Limit Staff Web Use · · Score: 1
    It's fine to block, as long as IT remembers that there's obviously some need. So provide an alternative, if the need is in the interest of the company.

  13. Re:Good plan on Security Fears Prod Firms to Limit Staff Web Use · · Score: 1
    it's a rock-solid security policy

    You're completely right. However, IT is there to provide security as well as services. And IMHO, you and the ABN AMRO guy are forgetting the latter.

  14. Re:Some Good Advice on RIAA Recommends Students Drop out of College · · Score: 1
    1. Dropping out of MIT is a great idea. I did it twice.

    And would you like to elaborate why is it a great idea?

  15. Re:Hello?! Accountability? This is WINDOWS! on Microsoft's Not So Happy Family · · Score: 1
    ANY delay in the next version of windows will have ZERO effect on Microsoft's market.

    Zero effect on its market, I agree. But it's affecting the employees. But have you had the "pleasure" of working under a manager who kept delaying the release? They can have all sorts of reasons, but the bottom line is that this really, really sucks for morale.

    For a development team, it enormously helps to have this date to which you can work to. And if it's rescheduled time and time again, you start to get sick and tired.

  16. Re:MiniMSFT is a punk coward on Microsoft's Not So Happy Family · · Score: 2, Insightful
    C. Try to change the company from the inside [...]

    That's a recipe for a burnout.

  17. Re:aterm? on Sysadmin Toolbox Top Ten · · Score: 1
    what could possibly be better than that

    Tabs. Seriously, tabs rock in a terminal.

  18. Re:Check out FindBugs for finding bugs in Java on Debugging Expert Wins ACM Dissertation Award · · Score: 1
    Now I just have to push it to the other people in the company.

    You can try, but you'll succeed anyway using it yourself. I used it on a piece of the codebase and in the next teammeeting, said I'd "found some potential bugs with this new tool". People will get interested. That's actually how I found out about FindBugs, because of a colleague who was impressed with me using PMD.

  19. Re:Check out FindBugs for finding bugs in Java on Debugging Expert Wins ACM Dissertation Award · · Score: 1
    Yeah, you can install both. However, they work somewhat different. FindBugs works on the whole codebase. You can run it as a plugin, but it doesn't really integrate. It just starts up in a different window. PMD works on the file level and sits in the context menu of the Java source editor.

    Since they have a different field of analysis (directory vs. file), you get completely different findings...

  20. Re:Well Duh on Dismantling the Myth of IT Being a Dead-End Career · · Score: 1
    This is pretty funny: it looks like those three all replied!

    All three slashdotters who are married do not need to reply and tell me I'm wrong. [ Reply to This ]

    * 3 replies beneath your current threshold.

  21. Re:Check out FindBugs for finding bugs in Java on Debugging Expert Wins ACM Dissertation Award · · Score: 1

    I tried FindBugs as well as PMD. Although the latter only examines sources per file, I found it much easier to use because it had so much less "false positives". Also, I found the PMD Eclipse plugin is better integrated. The author is also a slashdot user, by the way.

  22. Re:Talking out of both sides of his mouth on Father of Wiki Speaks on Collaborative Development · · Score: 1
    The conundrum is that end users want to consume something that is already available [...] Since computer geeks are somewhat stunted in their ability to do the latter due to emotional and mental disabilities, they seek their immortality [...]

    Carrie? Carrie Bradshaw? Is that you?

  23. Re:Macro editing on OpenOffice 2.0 vs. Microsoft Office · · Score: 2, Interesting
    This reflects in OpenOffice its API as well. A few years ago, I tried to create a document programmatically using the Java UNO api. It ran up to thirty lines, when all I wanted was something like:
    Document doc = new Document();
    doc.setText("Hello World");
    This thing is so freaking baroque, with all sorts of nifty objects, interfaces, patterns and god knows what. It's really overengineering at its best.
  24. Re:Oracle Metalink - A good example on Coding Communities - What Works? · · Score: 1
    I worked at Oracle and then you get a more privileged account: you could also read the special comments (starting with percent sign) that other employees entered.

    Sometimes in support notes, there would be pretty funny things.

    Support:
    Have you restarted the Oracle server?

    Customer:
    Yes, and it still doesn't work.

    Support:
    % He freaking didn't restart it
    Can you reboot the whole server?
  25. Re:What to teach? Hah... on Refurbishing PCs For Charity? · · Score: 1
    I'm abusing my children by showing them Linux, right?

    Yes.

    (You must be new here).