Blog

Insights, tutorials, and thoughts on web development and technology.

FIX: You do not have the SUPER privilege (Amazon RDS)

FIX: You do not have the SUPER privilege (Amazon RDS)

Open the RDS web console. Open the “Parameter Groups” tab. Create a new Parameter Group. On the dialog, select the MySQL family compatible to your MySQL database version, give it a name and conf...

Jul 29, 2015 · Tushar
Check which process is using port 80 in OSX

Check which process is using port 80 in OSX

You need to run these commands as root to show other users' processes, for example: sudo lsof -i ':80' If you want to close any particular process you can kill the process by executing below comma...

Jul 16, 2015 · Tushar
How to get value of URL parameters into Controller (Laravel)

How to get value of URL parameters into Controller (Laravel)

1. If you have your parameter attached to the URL after the question mark like http://www.yoursite.com/controllerMethod?key=value Your route for this controller will look something like this Ro...

May 17, 2015 · Tushar
Selenium Webdriver ( Junit ) Tips and Tricks

Selenium Webdriver ( Junit ) Tips and Tricks

I have started working with Selenium Web Driver to Automate testing for a web application that I have been working on. Selenium is a great tool to Automate testing for your software when there are man...

May 10, 2015 · Tushar