So uv forgotten your windows password, and think its the end of the world. No stress, two very simple solutions: While looking at your login screen, press ctrl-alt-del twice in…
Recover/Reset Windows password before login – 100% working
VNC (Remote Access) in Ubuntu 11.10 – 100% working
So you want to remotely access your Ubuntu machine, a couple of easy steps will do the trick for you: Install packages. Code: sudo apt-get install x11vnc vnc-java Set up…
Problem installing Android SDK components, access denied – Android SDK Manager
Sometimes you might get this problem: C:Program Files (x86)Androidandroid-sdktempandroid-14_r03.zip (Access is denied) The reason being that since the SDK manager is located in program files directory, it needs administrator privileges,…
Extending the range of your wireless network with another router – 100% working
You might have two routers lying around at home, and you want to extend the range of your wireless network, but nobody can ever tell you how to go about…
Check disk space in Linux – Ubuntu
check out space on different partitions from the terminal: df -h Enjoy! Cherio!
Schedule script in Ubuntu
If you would like to run the script as Admin/Sudo, then: sudo crontab -e and paste the following at the bottom of the file: 59 23 * * * sh…
Add users to data base from MySQL workbench
One command does it nicely: Grant insert, update, select, delete on DATABASENAME.* to ‘ANY-USERNAME’@’localhost’ identified by ‘PASSWORD’; Have fun! Cherio!
How to open a webpage from C# button – Windows Form
Very simple, a one liner: System.Diagnostics.Process.Start(“http://www.xplodebackup.com”); Cherio!
Login to multiple skype accounts simultaneously
Simple, create a batch file for each skype account you have and put in the following: start /D “C:Program Files (x86)SkypePhone” Skype.exe /username:YOURUSERNAMEHERE /password:YOURPASSWORDHERE /secondary exit thanks to http://tinkertry.com/skypetwice/ for…
Set the default background color of controls in C# – textbox.BackColor
Very simple: youtextboxname.BackColor = DefaultBackColor; have fun! ? Cherio
