Have you ever heard of OG-TAGS?

Posted on Thu 30 November 2017 in Web Development • Tagged with HTML

Ever noticed how Facebook shows an excerpt from a website with its image, or how a tweet with just a URL changes into a short window to the actual website? It's because of og-tags. Let's understand more about it!

Open Graph Protocol Logo

Overview of OG Tags

The Open Graph Protocol is what works …


Continue reading

How to Recover Deleted SMS from Samsung Galaxy Phone

Posted on Wed 18 October 2017 in How To DIY • Tagged with Android, Recovery

How to recover deleted SMS from Samsung Galaxy has always been one of the frequently asked on the forums and the internet by Samsung users. No matter how wise and cautious person you are, still once in a while you will end up deleting some important message and will instantly …


Continue reading

Introduction to React Native - Part 1

Posted on Sat 07 October 2017 in JavaScript • Tagged with Android, Application, iOS, JavaScript, Mobile, Native, React, React Native

Introduction to React Native - Part 1

What is all the fuzz about Hybrid Apps?

React Native is a framework build over the native development kit of both Android and iOS with which you can create mobile apps for both the platforms by just using JavaScript.

React Native was developed by some group of people working in …


Continue reading

How to Make Bootable Linux Pendrive

Posted on Fri 01 January 2016 in How To DIY • Tagged with Linux, USB

Well, you may not realize today, but it is very essential to have a Bootable Linux Pen Drive with you. Many times, your system may crash unexpectedly, or even your DVD ROM faces some problem or you might just want to dual boot Linux with Windows to give it a …


Continue reading

Understanding Complete Boot Process In Linux

Posted on Thu 11 September 2014 in Linux • Tagged with Boot, Linux

Ever wondered, what happens behind the scenes to boot Linux? Knowing about what happens from the time you press the power button to the time when you get the login screen on Linux, i.e. boot process in Linux is very important. It can come very handy when you're debugging …


Continue reading

How To Save Logs In IRC using XChat

Posted on Sun 24 August 2014 in How To DIY • Tagged with FOSS, IRC, Logging, xChat

Howdy Readers! Wonder if you're facing any problem regarding any FOSS project, the first thing you'll do is Google it to solve your problem. But sometime it can happen, you couldn't find it on the net, may be you discovered a bug? or let's say you just want to contribute …


Continue reading

Structures And User Defined Data Types (Part - I)

Posted on Tue 05 August 2014 in C • Tagged with C Programming, structures, User Defined Data Types

Howdy folks, hope you're doing well. We've already discussed about 1D Arrays and their memory organization and further about 2D arrays and multidimensional arrays. In case you missed it, read them first. Coming to this tutorial, we'll be discussing the way to develop our own data types in the C …


Continue reading

Learning About 2D And Multidimensional Arrays

Posted on Thu 24 July 2014 in C • Tagged with 2D, Arrays, Multidimensional Arrays

Well, I'm glad you reached at this point, we've already discussed about 1D arrays and the memory organization, and in this post, we'll know about 2D arrays and Multidimensional Arrays. They are not very much different from 1 D arrays as we looked in the last tutorial. So, let's start …


Continue reading

ASP.Net Basics : Populate checkboxlist from database using C#

Posted on Sat 19 July 2014 in ASP.NET, C# • Tagged with ASP.NET, CheckboxList, Database

In this tutorial we will be discussing how to populate data in checkboxlist or radiobutton list from the values taken from database and display them on the screen.

Populate checkboxlist from database using C#

Let us assume a database with following table definitions (from my next project) and table values.

populate checkboxlist from database using c# and .net

and the output should be

populate checkboxlist from database using c# and .net

Various …


Continue reading

Android Activity LifeCycle

Posted on Fri 18 July 2014 in J4A (Java for Android) • Tagged with Activity, Android, Lifecycle

Activity is the base class of an Android Activity (package android.app). An Activity represents a view to the user. For eg. When we open Messaging app to write a new message, it is an Activity. After writing the message, when we open contacts to select the person, it can …


Continue reading