Wordpress plugins

How To Make Nested Menus in WordPress

Many sites being developed in WordPress need to make multi-level menus also called nested menus. A key requirement in making this nested navigation menu is that the top level menu items should be non-clickable. Nested Menus can be build using the Menu Builder in WordPress. Navigate to the Menu Builder using : Appearance -> Menus…

Read More
GCM Test Tool

GCM Notifications Test Tool

  Here is a nifty little tool to help developers test GCM notifications. While developing GCM or Google Cloud Messaging Notifications in Android applications, it is important to have a simple server to test if client code is working correctly. This free GCM notifications test tool below does exactly that – allows you to easily…

Read More

Mobile CPMs in 2015

While doing research on my mobile apps, I noticed that there isn’t too much guidance on mobile eCPMs compiled at a single place. Hence I thought of making a simple chart for others looking for indicative mobile eCPMs for India and US. eCPM in USD 300×250 320×50 India $0.18-$0.30 $0.08-$0.14 United States $0.45-$0.70 $0.25-$0.45 These…

Read More

Viewing Unpushed Git Commits

You can view changes you have made in your local repository which haven’t been pushed to the origin (remote) repository using the following command: git log origin/<yourbranchname> In case your local branch has been configured with an upstream branch, then you can use the below shorthand: git log @{u}.. or git log @{upstream}.. If you…

Read More