Articles by Dmitriy Sukharev

  1. Bugzilla: error which isn't error

    The local XML file './data/bugzilla-update.xml' cannot be created. Please make sure the web server can write in this directory and that you can access the web. If you are behind a proxy, set the proxy_url parameter correctly.

    If you got this error and you are sure that the ...

  2. Code highlighting in Vim

    To enable code highlighting in Vim add text "syntax on" to file ~/.vimrc or execute the following command:

    echo "syntax on" >> ~/.vimrc
    

    If you want to enable highlighting only once, you can execute the following command from Vim (press Esc before typing to exit from insert/replace mode):

    :syntax on
    
    Tagged as : Linux Vim
  3. Configuring warnings in Eclipse

    It's possible to tell Eclipse which code should lead to warning, which to error and which should be handled as normal.

    You need to do the following two steps for this purpose:

    1. Open Window -> Preferences -> Java -> Compiler -> Errors/Warnings.
    2. Change properties in the way you want.

    My settings are ...

    Tagged as : Eclipse
  4. Fix Skype's crashes while answering calls in Linux

    Skype crashes when you answer a call in Debian-like Linux operating system? But you can initiate call without crashes at the same time? Install package libasound2-plugins if so

    sudo apt-get install libasound2-plugins:i386
    

    Don't ask why it couldn't be installed as dependency. And why it causes ...

    Tagged as : Linux
  5. Force cmd.exe to see PATH again

    Did your command line stop seeing files inside PATH? Do you think it's a virus or a bug and just wanna pull down your system? Don't hurry up if so. I had the same problem and finally I fixed it today. I'm not sure why did this ...

    Tagged as : Windows
  6. Gnome 3. Disabling suspend when the lid is closed

    For some reason there's no way to change standard behaviour when the lid is closed in Gnome3 via System Settings. Fortunately it's possible to do in terminal. For this execute the following commands (NOT as root):

    $ gsettings set org.gnome.settings-daemon.plugins.power lid-close-ac-action "<action>"
    $ gsettings set org ...
    Tagged as : Linux Gnome

Page 1 / 3