This blog is in continuation to our previous blog. The focus of this blog is to enable AWS professionals to change pem of running servers or to add a new user with sudo privileges to an EC2 server farm using Puppet. Similar use case of performing the same task using CHEF has been discussed here. […]
Monkey Patching The Monkey patching is a concept which is used to extend the behavior of a function without changing its original source code. We can add some extra functionality which can work a long with the original functionality(Before or after depends on the use case). The original function may be from third party module […]
Recently, I was working on a micro-service using Ratpack framework. I wanted to deploy it to Heroku. I had tried to find good documentation for deploying on Heroku but couldn’t find as such. After much trial and error, I finally managed to get a working configuration for successful deployment. As Heroku has very good support for […]
To Send email from AEM , follow the steps written below: Gmail SMTP Server could also be used to relay messages from your device or application. If you connect using SMTP, you can only send mail to Gmail or Google Apps users; if you connect using SSL/TLS, you can send mail to anyone. If your […]
It is very important for a test engineer to draft good and complete test cases as it shows how comprehensively a test engineer has understood the application requirements. With the following Do’s and Don’ts a test engineer can develop an effective test case with little efforts and save a lot of time. Do’s: Identify and […]
Comments, reviews & feedbacks are some of the vital functionalities required in almost every website these days. Leveraging the comments section is very important. All those comments made by the vistors cannot be published. You may have to select the comments that are to be published according to your content and its purpose. An AEM […]
Adding vanity URL to pages/nodes, is a great way to get user friendly URLs. All you need to add is “sling:vanityPath” property to the node. For example, “www.mysite.com/content/mysite/en/home.html” doesn’t seem to be a very user friendly URL. If you want this page to have a simple and concise URL like “www.mysite.com/home”, you can do it […]
Automation TestingGrailsJava/JVM
Recently while working on selenium I have come across in a situation where browser dialog box are the show stopper to validate ‘Login/Registration/Forgot Password etc.’ modules, though we are considering such cases as design issues. However we need to deal with it to learn something new, fortunately I have got the solution to handle browser […]
Hi all, I have a use case where I need to migrate the code base from svn to git while preserving all the commits of different committers. For migration I have used an utility tool git-svn. In order to install git-svn we can use below command in linux box : sudo apt-get install git-svn After […]