Site Audit

How to identify website pages with long Title Tags and fix it ?

Most search engines truncate titles containing more than 70 characters. Incomplete and shortened titles look unappealing to … Read more

Important gerrit commands

This post list the details of some of the important gerrit commands which we have tried, (This … Read more

How to call Assembly function from C code ?

In this post, we use ARM are reference architecture for writing the assembly code but the basic … Read more

Meaning of “CONTENTS, ALLOC, LOAD, READONLY, CODE” in ELF sections

Once we disassembled the ELF to check the sections using “objdump” command, we can see the lines … Read more

How to check sections and its memory map of Binary / ELF using GDB ?

In this post, we hope you already have GDB debugging setup already done for your development or … Read more

How to add category cloud in single post / page in WordPress

Category cloud can be added by using the taxonomy argument to cause a cloud of categories to … Read more

How to use custom meta description for every page in Open Classifieds / Osclass, the free classifieds script

osclass ( formarly known as openclassifieds ) is a php script that allows you to quickly create and manage your own free classifieds site. osclass is an open source project that … Read more

How to create Arrays in PHP ?

PHP provides simple function to create an array using “array()” API which creates an empty array. In … Read more

How to Add Your Facebook Page to Your Website Using the Page Plugin

Adding a Facebook Page plugin to your website is a powerful way to increase engagement and connect … Read more

Solved: System.out: android.os.NetworkOnMainThreadException

In Android application, if you are doing some network operations like download from some external website or … Read more

How to implement stack in C programming ?

In continuation of demonstrating simple implementation of data structures, as we shown in our last post “How … Read more