Slashdot Mirror


User: cymantic

cymantic's activity in the archive.

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

Comments · 11

  1. Re:How do you do a character literal? on Vim 6.4 Released · · Score: 1

    Ctrl Q Ctrl M will give you ^M.

  2. Re:Pie menus on Mouse Gestures in Javascript · · Score: 1

    Can also be easily done in javascript on a site.... (http://www.beatthesystem.co.uk for one I wrote as a test a couple of years ago) works with the left mouse button like a standard menu, but with the right mouse button the menu will dissapear as you let go. You can still drag and select text, and click on links, and yes I know there is no other accessible option, but it's only something to play with)

  3. Re:I read the article! on Microsoft Tracking Behavior of Newsgroup Posters · · Score: 1

    As google already indexes the microsoft sites better than microsoft can, first point of call for any ms software problem is google; and then if you really want to know what is causing your problem and how to fix it I've always found looking on google groups the quickest and most reliable.

  4. Get a Powerbook and use Virtual PC... on Apple-Quality Intel Laptops? · · Score: 1
    I develop stuff for windows and use Virtual PC on a powerbook, it's not lightening quick, but it's usable. I haven't used Visual Studio (.Net Framework/Vim is all you really need, SharpDevelop runs ok) but others have used some intensive apps...

    Reading around it even looks like there are those at Microsoft who've considered getting a powerbook too

    With a wireless network, RemoteDesktop/VNC you can access any other PC resources you need.

    Now you only have to convince your boss. Good Luck!

  5. Working at home.... on Teleworking in the UK? · · Score: 2, Informative

    Watch out - if you work from home the employer is responsible for making sure that the environment is suitable for working in. This might not mean a saving for the employer if they have to kit you out with chair/desk etc at home as well as at work (if you have to come in every now and then), they will at least have to send someone round to check out your _office_ space.

    I'm currently managing to work from home ok, even though it's my three kids holiday.

    Advantages for me are plenty (especially for avoiding pointless commuting), advantages for work..... well as a programmer I get disturbed less at home so can get more work done, it also means I'm available to do any work any hour of the day/night.

    Broadband connection, VPN is essential though. I have done bits from home over 56kbps and it's not fast enough for real work, although using citrix might help you there.

  6. Re:A question for those who have switched... on Why is Everyone Still Stuck in QWERTY? · · Score: 1

    I tried switching and with a printout of the dvorak layout nearby it was quite easy to type out text/code......

    the problems came with keyboard shortcuts for apps... vim became so much harder to use, and I had similar problems with other programs that are designed for QWERTY.

    In the end I gave up and went back to QWERTY. dvorak is nice to use for simple typing, but as soon as you want to (power) use an application the learning curve was just too painful.

  7. C# Coding Standards on Coding Standards for C#? · · Score: 4, Informative

    To work out some standards use what you know from Java, Python or any other language with a C based syntax.

    The guys at ICSharpCode (http://www.icsharpcode.net/TechNotes/) have some nice documents on coding styles/standards for coding for #Develop (you don't have to follow them when coding using #Develop)

    Also have a look at something like FX Cop from MS (http://www.gotdotnet.com/team/libraries) to help enforce coding standards.

    t

  8. Re:No NTLM? on Mozilla.org Launches Mozilla 1.3 · · Score: 1

    Try using apserver from http://apserver.sourceforge.net/

    It's a python program that will allow you to set up a proxy for wget, mozilla or whatever to go through NTLM authentication.

  9. Re:Multiple Homepages on Friday Morning Release Party · · Score: 1

    Opera will remember previous tabs you have opened.

  10. Re:What's the big deal? on Why We Refactored JUnit · · Score: 1

    I thought the whole point of Unit Testing was to design your tests first. Then build your system to meet those tests.

    By automatically generating your tests based on your existing API, don't you just show that your API does what you programmed it too? Not necessarily what your design intended?

  11. Re:Best implementation of pie menus on Pie-Menus in Mozilla · · Score: 1

    It may not be the best, but it does work in Mozilla (and IE) in pure dhtml....

    it's still kind of in progress, (but I don't get a lot of time to work on it),

    have a look here http://www.beatthesystem.co.uk/

    tell me what you think.