Slashdot Mirror


User: ZeroZenith

ZeroZenith's activity in the archive.

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

Comments · 19

  1. WASD? on Slashdot Keybindings, Dynamic Stories · · Score: 1

    Do people really use WASD for navigation and games? I know that's the default configuration for a lot of things but to me it seems very unnatural, unless you hitting the W with the ring finger and even that it strange. Using ESDF if a much more natural since your fingers are at home position and the middle finger is appropriately used for UP.

    What's the history behind the silly WASD choice?

  2. Awesome on Tribes 1 Returns In-Browser At GDC Next Week · · Score: 1

    I've played all versions of Tribes and without a doubt these games are best games of all time. There is a bit of a learning curve to them but once you get it the fun is endless especially if you play with group of friends or a good team. If you like FPS and you have not played them you have not lived.

  3. Re:Wow. on RIAA vs Linux and DVDs · · Score: 1

    LOL, my exact feeling.

  4. Remember MS is evil on Inside Visual Studio 2005 Team System · · Score: 1


    If you just remember that M$ is evil and they want to be the only ones that makes and sales profitable software for windows you'll quicky realise that the purpose of any tool that M$ makes for developers is to hinder the developers.

  5. Re:The IDE Issue... on Java Application Development on Linux · · Score: 1


    Java may not have a preprocessor but that doesn't mean that I can't have something that is not exactly java which will be turned into jave. JSP, XSP are good examples.

    Preprocessor does not mean just #ifdef and #define although there are valid reasons for using cpp with java.

  6. Re:The IDE Issue... on Java Application Development on Linux · · Score: 1

    Now, that's actually useful infomation. I'll look into building a 'builder' for my preprocessor.

    Now if only eclipse included VIM key bindings life would be great.

    Thanks,

    ZZ

  7. Re:The IDE Issue... on Java Application Development on Linux · · Score: 1

    What's at the top? It understands your code. The first thing you'll notice is the incremental compilation. You don't have to ctrl-z (or alt-tab or whatever) and run the compiler and wait. It compiles it as you're typing, and tells you where you've screwed up. That improves your efficiency right there.

    This is all nice and good, but lets say you java source contains preprocessor instructions. How does eclipse handle that? Can I specify to run my preprocessor before the compiler as I'm typing.

    Also, last time I looked at eclipse I couldn't find a way to open a single file without creating some project or something.

  8. Re:The IDE Issue... on Java Application Development on Linux · · Score: 1


    Editing anything is IDEs is a bigest waste of time I can imagine. vi (vim) is the most productive editor by far. IDEs are nice when you starting out but when you need to produce vim + some plugins can't be beat.

    ZZ

  9. Does it run Java? on The Wi-Fi Cameras are Coming · · Score: 0, Offtopic


    Since that would be useful as well ;)

  10. Here the city takes care of composting. on Hardcore Waste Recycling · · Score: 2, Informative

    In Guelph, ON the city takes care of composting.
    You sort your garbage into 3 bags:

    blue - paper, glass, plastic, cans
    green - compostable stuff.
    clear - other (landfill stuf)

    It's a bit of pain in the ass but I think it's worth it.

  11. Re:Bill C-32 already passed? on Bad News From Canada On NetTV And Media Levies · · Score: 1

    I wrote an official letter several months ago.
    I hope it gets read. I wish I could be there but
    Ottawa is just too far for me.

    Do they publish transcripts from the hearings?

  12. Re:What I don't like in vim on Vi IMproved -- Vim · · Score: 1

    > I can't understand how in vi select some block of
    > text and write it to some other file...

    vi: put cursor on starting line of the block,
    do :.,+10w newfile.txt
    this will write 10 lines from cursor positeion

    vim:Shift-V, cursor donwn/up to highligh the block
    do :w newfile.txt (when you do :w it will put
    the highligh range before the w)

    Good Luck...

  13. Use small local stores on Home-Built vs. Store-Bought PCs · · Score: 1


    I just put together a list of exact components
    I want and send it to 2 or 3 small computer shops.
    One with best price/service is the one I
    buy from. When buying from the net you have
    account for shipping cost/time, also it usually
    takes a lot longer to resolve problems.
    Most small shops will "burn-in" your system so you
    don't have DOA componets and you know they work
    together.

    Artur...

  14. Copper cube ? on Tinfoil Hat Linux: A Distribution for the Paranoid · · Score: 5, Funny

    From the readme:
    If at all possible, boot THL on a laptop & disconnect all external
    cables, including the power & mouse. Turn off nearby
    radios, including cell phones and microwaves. Put yourself
    and the computer in a well grounded opaque copper cube. Download
    your tinfoil hat plans from http://zapatopi.net/afdb.html.
    Boot the floppy....


    Where can I get well grounded opaque copper cube? Can't find any on ebay.

  15. Some of these on What Kind of PHB Do You Want? · · Score: 1

    - create a plan and stick with it
    - provide direction
    - ask for opinions of senior people and ask questions until you understand what's going on and why - listen
    - keep your people informed (not spamed)
    - respect, respect, respect
    - micromanage only those who require it
    - trust your people until they screw you over then give them one more chance
    - if you have favorites don't let any of your people know including the favorites
    - reward according to performanc
    - show appreciation for good performance

  16. Re:Demise of IIS? on Apache 2.0 vs. IIS · · Score: 1

    If you thing JSPs are powerful check out Cocoon
    at xml.apache.org

  17. I didn't know hackers wire viruses on £10,000 Prize for Linux Virus Challenge Re-Issued · · Score: 1

    Found on the same site Virus & Hacking

  18. Re:wtf... on Doug Michels & Ransom Love speak pre-Caldera Forum · · Score: 1

    Tribes 2

  19. CVS should do you good. on Version Control for Documentation? · · Score: 1

    CVS should give you most of what you want.
    The only thing that CVS will not do for you
    is diffs but I'm sure there are other programs
    that will do diffs for Word, Excel, etc.
    CVS doesn't mind binary files if you add them
    with the -kb flag. The only thing to remember is
    that CVS will store a copy of each version in
    the ,v file so they might get big with lots of
    revisions.

    We use WinCvs wincvs.[com|org] for our
    non-technical users and they seem like it.
    I also think there is an explorer plugin
    that lets you perform CVS operation from the
    explorer popup menu.

    --
    CVS Rules