Technology

Integrate Twitter API in Asp.net

Introduction In this Blog I will explain how to integrate Twitter API with C# Asp.net. Before Going to start twitter API integration we should do following steps: – You should have twitter account. 1) Authorize your account in twitter and open https://apps.twitter.com/,create new app button 2) Provide application name should be unique, description and website URL can be dummy: […]

Mohit Kumar
Mohit Kumar
Read

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

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 […]