Clivern

A Software Engineer and Occasional Writer.

How To Add Custom Rewrite Rules In WordPress

21 April 2014

Wordpress rewrite API used to convert URLs from something programmatically convenient to something user and search engine friendly. This article will give you some background information about wordpress URL rewriting principles and API.

Read More

Kick-Starting MySQL

12 April 2014

Today MySQL is one of the most popular open source databases as it supports millions of web applications. We will discuss the basics of MySQL like creating databases and tables and interacting with data.

Read More

Working With Laravel Filters

10 April 2014

Laravel filters are a set of rules that can be applied before and after routes to change application actions. Also there is global filters that executed before and after every request. Let's explore laravel filters.

Read More

Working With Laravel Caching

10 April 2014

Caching is a temporary data storage used to store data for a while and can be retrieved quickly. It is often used to reduce the times we need to access database or other remote services. It can be a wonderful tool to keep your application fast and responsive.

Read More

Learning Wordpress Users API

03 April 2014

Wordpress powers many large websites with thousands of users like blogs, applications, social networks and much more. You will deal with many cases in which you need to work with users and fortunately wordpress has many functions to handle users.

Read More

Working With Roles and Capabilities of WordPress Users

30 March 2014

Wordpress ships with a powerful roles and capabilities system which control users permissions. Roles enable plugin developers to group users, each group has its own permissions. Understanding roles and capabilities is important aspect of plugin development.

Read More

How To Create Custom Validation Rules With Laravel

27 March 2014

You don't need laravel built in validation rules and wish if you could create your own validation rules. Well, fortunately laravel is very flexible as it allows you to build your own validation rules and with a bunch of ways.

Read More