Tag: HelpTips

  • Run batch-files without getting console popup windows

    If you want to run batch files then you obviously will not want to get any popup windows of command prompt. Well here’s what you need to do. Copy the following code into a notepad and save it by a name with a .VBS extension. Set WshShell = CreateObject(“WScript.Shell” ) WshShell.Run chr(34) & “C:\Users\Dinesh\Documents\batfilename.bat” & Chr(34),…

  • Put the printer in the Network | General process applicable for Windows 7/8/8.1/10 | Make a printer accessible to many computers

    Please follow the following steps: 1. Install printer’s driver in all the computers you want to put in a network. 2. All the computers must be on a network. 3. To make it sure, you can go to Network (click on start and then, search Network). 4. Make each computer accessible to the main computer…

  • Before you start learning Laravel

    Laravel, a PHP framework is nowadays widely being used to develop web applications. Those who are new to PHP may find very difficult to learn Laravel because of it’s poor documentation. I would recommend you to learn CodeIgniter before learning any other PHP frameworks. The MVC concepts and object oriented PHP can be easily understood…

  • Create a shared WiFi (hotspot) | Ubuntu | Linux

    There are many ways to create a hotspot in Ubuntu. But I want you to know the easiest way to create a hotspot in Ubuntu. Follow the steps: 1. Download kde5-nm-connection-editor from your software center. 2. Press Alt+F2 and type kde5-nm-connection-editor, click enter   3. You will see: 4. Click add and select Wi-Fi (shared) options:…

  • Easy 4 steps to re-install a grub | Ubuntu 14.04 | 15.04 | Fix Grub in Linux

    Install bootable Ubuntu 14.04/15.04 (may be applicable to other versions too) in your pendrive. Try Ubuntu, open terminal and type the following commands. 1. sudo add-apt-repository ppa:yannubuntu/boot-repair 2. sudo apt-get update 3. sudo apt-get install boot-repair 4. boot-repair Finally a window will come up showing that the repair has been completed.