Symfony 3.4 Cache Example

Symfony has a very powerful built-in caching. You can use it directly by calling the default app cache and use it. You can use this a lot in your application in places where you access databases or accessing the web services. Have a great day 😊

Messaging SDK and Chat API for Mobile Apps and Websites

Couple of days ago I was doing some research to build / integrate chat module for one of our client’s app. The client wanted a simple chat application for their enterprise where each employee can chat easily with others in the company. Reinventing the whole wheel would cost a big fortune for developing and maintaining… Continue reading Messaging SDK and Chat API for Mobile Apps and Websites

To create rounded rectangular views using iPhone SDK

To create view with rounded corners is really simple in iPhone SDK 3.0 in just 2 steps Step 1: Include QuartzCore #import Step 2: You can now add corner radius to any view //Create a Imageview UIImageView * imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 100, 300, 225)]; //Load some image [imageView setImage:[UIImage imageNamed:@"candle.jpg"]]; //Enable maskstobound so… Continue reading To create rounded rectangular views using iPhone SDK