TO THE NEW Blog PAGES

Technology

10 key basic things before starting development on a new ASP.NET web forms application

Nowadays, most of us are choosing for ASP.NET MVC for their new web applications. However, this may not be always possible and we might be required to use Web Forms for our new projects. In these kind of  cases few of us have this confusion – If I develop my project using Web Forms and […]

Technology

Creating derived fields in json schema (version – draft -04)

Sometimes we need dynamic forms where some field’s visibility/values are dependent on values of other fields. Json schema provides a good option for creating dynamic forms but has very little documentation. Json schema provides fairly coarse grained mechanism for conveying what elements needs to be present. Using anyOf condition, a property can be validated by […]

Haider Ali
Haider Ali
Read

Automation TestingTesting

Easy approach to handle authentication window in selenium webdriver

Before we get started, on how to handle authentication window in Selenium WebDriver. Let’s discuss what authentication window is & why it is used in applications? What is Authentication Window? Authentication is a process which is required to access some applications in which HTTP authentication is used for security purpose. These are server side validations […]

Shilpa Ranjan
Shilpa Ranjan
Read

AndroidMobilityTechnology

Introduction to Android Smart Watch

Introduction Android Wear is a way to connect your smart phone to watch through blue-tooth. It runs on Android OS and provide syncing to your Android smart device. You can see incoming calls, sms, calendar notifications, app notifications, Settings etc. Usability The Use of android wear is not too much out of box, It depends […]

Suchit Kapoor
Suchit Kapoor
Read

AWSTechnology

Using Encryption with AWS Aurora

Encrypting RDS provides additional security by encrypting the underlying storage of your RDS data. Amazon uses AES-256 encryption algorithm to encrypt your RDS data on the devices on the servers hosting your database instances.The performance impact of the encryption is minimal on your DB instance. Your end application does not require to implement any changes […]

Rahul Jaiswal
Rahul Jaiswal
Read

Technology

Making Dropbox Documents Available in AEM

Use Case Consider a scenario where a company uploads thousands of document related to its policies or some other stuff in AEM. It would be an overhead for AEM to manage those documents resulting in the degradation of performance since AEM is already managing a lot of tasks. Solution One way of managing documents and […]

Jatin Gupta
Jatin Gupta
Read

Technology

Using definitions internal to json schema and external to json schema (version – draft -04)

There could be times when you end with a generously large schema with lots of redundant properties due to certain business requirements. Json schema comes with a good feature named as definitions. It is used to contain repeating properties in one place and then referencing these using $ref and also overriding some property if needed. […]

AWSDevOpsTechnology

Migrate Subdomain without Migrating Parent Domain

I had a use-case where I needed to use a subdomain and its Parent Domain already had a lot of DNS entries. So, it was very hard to manage 100+ DNS entries in a single account where you need to play with a single Subdomain. I found a solution wherein we could migrate a single Subdomain […]

Technology

Building ES6 React Component from ES5 Components

We are in a growing technology world and ES versions are evolving very fast. I was working in a react project with ES5 but we had to revamp our ES5 components into ES6 components and I have faced so many problems at each point. So in this blog I am trying to cover some basic steps for […]

MarketingTechnology

How to Create a Landing Page on Hubspot

As we all know HubSpot is an inbound marketing software platform that helps companies attract visitors, convert leads, and close customers. In inbound methodology, when we talk about the convert stage, landing pages comes into the role. A landing by definition; a web page which serves as the entry point for a website or a […]

Samson Gill
Samson Gill
Read

Manual TestingMobilityTesting

Introduction to Rapid Software Testing

Rapid Software Testing introduced by James Bach, a well known human personality in software testing industry. RST is a growing need for software development, it is all about early, and efficient testing in today’s fast-paced software development environment. RST is a unique and complete methodology of testing. As the name suggests some of us may […]

Rohit Ojha
Rohit Ojha
Read

Grails

Hooking into the Instance methods of the GORM API

In my grails plugin I was needed to add some fields that were common to a set of domains. For eg: for some domains we wanted to store fields like createdBy and lastUpdatedBy to keep track of users who created and last updated each record in that domain. Grails framework provides timestamping using which we […]

Services