Where is Google Headed ? – Advertisement hell for business owners

Today I was searching for few keywords which were property and real estate related. Shocked to see most of the top result for the search was an advertisement from property developers. Half of the result in the page was Adwords campaign of few top real-estate companies in Dubai. Google has made it look like a… Continue reading Where is Google Headed ? – Advertisement hell for business owners

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

TinyMCE remove height & width from image

It is so annoying the TinyMCE editor image plugin saving the height and width of the image. You can turn it off in the settings. tinymce.init({ selector: “textarea”, // change this value according to your HTML plugins: “image”, menubar: “insert”, toolbar: “image”, image_dimensions: false }); There are other settings available for the image plugin please… Continue reading TinyMCE remove height & width from image

Symfony: Adding custom route by code during runtime

During development we always come across situation where you need to add custom routes based on some settings based from the user. In this case we cannot use any of the standard methods like annotation and configuration files in symfony. In this case you need to use a services and hooks to inject your custom… Continue reading Symfony: Adding custom route by code during runtime