Roy’s Blog: a blog about tech and other stuffs
-
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…
-
My first impression on Kathmandu Valley
First time when I was on the way to this city, the way was very beautiful. I could see the view of beautiful plains with green planted crops in the fields, but as we drove up, through the mountains the views were much more beautiful. Watching all these views I had expected a beautiful Kathmandu…
-
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…
-
Root access in Ubuntu | Open default file browser with admin privileges
If you want to install any application in Ubuntu, then don’t forget to get administrative privileges by writing “sudo” before the code to install. Most importantly, you may frequently need to copy, make a link, move the directories in Linux, for that you can use “sudo nautilus” to open default file browser with administrative privileges.…
-
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:…