How to Play HLS Videos on Android Playing videos/audios is a popular activity on Android devices. Its framework provides MediaPlayer API as a quick integration to play media files with minimal effort. What is HLS HTTP Live Streaming (HLS)... 24 June, 2016 / 0 Comments
How to Develop a Custom WordPress Plugin “Hello World!” Plugins act as add-ons & additional functionalities to a website without touching the core files, facilitating to install future updates without losing any of the customization. During the development phase, you... 23 June, 2016 / 0 Comments
CakePHP: Cross-Site Request Forgery (CSRF) Test Cross-site request forgery (CSRF), also known as one-click attack or session riding is a type of malicious exploit of a website where unauthorized commands are transmitted from a user that the website trusts. Unlike cross-site scripting (XSS), which exploits the trust... 22 June, 2016 / 0 Comments
Material Design in Android What is Material Design? It's a comprehensive guide for visual, motion and interaction designs across platforms and devices, with introduction of new features like Material Theme, New Widgets, Custom Shadows, Vector... 20 June, 2016 / 0 Comments
CakePHP: How to have Consistent SMTP Connection It's necessary to configure an SMTP server that will take care of your email deliveries while setting up a mail client. The process is easy - just add the right... 13 June, 2016 / 0 Comments
SQL Injection (SQLi); How to Fix it in Ruby on Rails What is SQL Injection Vulnerability? SQL injection is vulnerability where an attacker can manipulate some value used in an unsafe way inside a SQL query. The bug allows SQL injection through... 11 June, 2016 / 0 Comments
Working on LungoJs? Know the Basics About Lungo LungoJs is a HTML5 framework for developers to design, build & share cross-device applications. It supports open web standards, such as HTML5, CSS3 & JavaScript, bringing a consistent browser... 10 June, 2016 / 0 Comments
How to Use ‘Contain’ Method in CakePHP 3.0 Query Builder A basic query in CakePHP 3.0 is different than the ones used in CakePHP 2.0. In 3.0, the ORM (Object-relational mapping) used for database management related operations has completely changed. For... 06 June, 2016 / 0 Comments
How to make Patch Request to server on Android What's a Patch request? On Android, we generally use 4 types of HTTP requests during server side communication; POST, GET, PUT and DELETE. PATCH isn't one of them. It requests a set of changes described... 30 May, 2016 / 0 Comments