Etikett: How to

  • 6 ways to reduce disk usage on Window 7

    Are you lacking valuable disk space? Don’t want to, or maybe you cannot, buy more? There are some magic tricks that you can pull out of your magic memory hat to reduce the disk usage. Here are some of these tricks that you can do… Uninstalling applications Reducing the size of the winsxs folder Reducing…

  • How to enable your self for success

    Need some tips for how to prepare your self for success? Awardinternetsolutions.com has created a list of 10 Secret Tips for Success. I’d suggest you have a look at them. It includes tips like becoming a learner, making judgements and stand by them. All worth considering!

  • How to show line numbers in Vim

    Have you ever wondered how to show the line numbers in your vim editor? The solution is quite easy. Find and open your .vimrc file, usually in your home directory. Add the following code snippet to the file set number To remove the line numbering simply write the following instead set nonumber

  • How to implement a module in C

    Introduction Being a programmer, we have all read source code that really hard to understand and follow. Words like spaghetti code instantly pop up in our head when we see it. Files are open in one file, used in a second and closed in a third file. Magic things are happening here and there. Code…