Quantcast
Channel: The Crazy Programmer
Browsing all 761 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

How to Get the Most Out of Your eCommerce Experience

Most people start their eCommerce sites with the hopes of being a success. Part of that comes with being able to offer a unique experience. Some of the best online shopping carts will offer...

View Article


Image may be NSFW.
Clik here to view.

Android Custom Toast Example

Here you will learn how to create custom toast in android with some text and image. Toast is used to show some information for specific time period. In android we use android.widget.Toast class to make...

View Article


Image may be NSFW.
Clik here to view.

Banker’s Algorithm in C

Here you will get program for banker’s algorithm in C. The banker’s algorithm  which is also known as avoidance algorithm is a deadlock detection algorithm. It was developed by Edsger Dijkstra. It is...

View Article

Image may be NSFW.
Clik here to view.

Android GridView Example

In this android tutorial you will learn about android simple and custom gridview example. In Android, GridView is a ViewGroup that is used to display items in a two dimensional scrollable grid form....

View Article

Image may be NSFW.
Clik here to view.

Android WebView Example

Here you will get android webview example. Android WebView is a UI component used to open web url or show html data inside the activity. Below I have given two examples, one is for opening a web url...

View Article


Image may be NSFW.
Clik here to view.

How to Make Simple Browser in Android

In this tutorial I will guide you to make simple web browser in android. Android provides an awesome UI widget known as WebView. It is used to load web pages and view HTML data. We will use WebView...

View Article

Image may be NSFW.
Clik here to view.

Android Volley Tutorial With Example

This is android volley tutorial. Here you will learn about android volley library and how to use it. What is Volley? Volley is a network library that helps in doing network related operations like...

View Article

Image may be NSFW.
Clik here to view.

Android Button Example

In this tutorial you will get android button example. Button is a very basic and commonly used UI widget of Android. It can be pressed or clicked and we can perform some action on its click event. We...

View Article


Image may be NSFW.
Clik here to view.

Android Switch Button Example

Here you will get android switch button example. Switch is a button which has two states, on or off. The user can on or off by just dragging or tapping finger on the button. This UI widget is supported...

View Article


Image may be NSFW.
Clik here to view.

8 Tips to Choose the Perfect Domain Name

Any website needs a domain name. Without one, your site or blog can not exist. This element can make or break your business. Thus, you need to choose a domain name that is easy to find and promote,...

View Article

Image may be NSFW.
Clik here to view.

Picasso Android Tutorial – Load Image from URL

In this tutorial you will learn how to use Picasso android library to load image from url. Picasso is an open source android library which is developed and maintained by Square. Below are some features...

View Article

Image may be NSFW.
Clik here to view.

How JavaScript and WordPress Interact with Each Other?

Matt Mullenweg, co-founder of WordPress, stated in December’s WordCamp US “learn JavaScript, deeply”. But what does it actually mean and what is the connection between learning JavaScript and using...

View Article

Image may be NSFW.
Clik here to view.

Difference between OOP and POP

Here you will learn about difference between OOP and POP. Object Oriented Programming and Procedure Oriented Programming are two most popular programming paradigms. In this tutorial we will discuss the...

View Article


Image may be NSFW.
Clik here to view.

Android Snackbar Example

In this tutorial you will learn about android snackbar example. Snackbar is a new UI widget introduced in material design. It is an advance version or we can say replacement of Toast widget. Snackbar...

View Article

Image may be NSFW.
Clik here to view.

How to Solve Intel HAXM Error in Android Studio

Here you will get all possible reasons and solution for intel haxm error in android studio. It is the most common problem faced by android developers. We can’t run Android Virtual Device (AVD) without...

View Article


Image may be NSFW.
Clik here to view.

Pointer to Pointer or Double Pointer in C

In this tutorial you will learn about pointer to pointer or double pointer in C. Pointer is used to store memory address of variable. Double pointer is used to store memory address of any other...

View Article

C/C++ Program for Union of Two Arrays

Here you will get C/C++ program to find union of two arrays. For example: First array: {1, 3, 7, 9} Second array: {1, 4, 6} Union: {1, 3, 4, 7, 6, 9}   C/C++ Program for Union of Two Arrays Union of...

View Article


PL/SQL Program for Prime Number

Here you will get a pl/sql program for prime number. A number is a prime number if it is divisible by 1 or itself. For example 2, 3, 5, 7, etc are prime numbers. While numbers like 4, 6, 8, etc are not...

View Article

PL/SQL Program to Find Factorial of a Number

Here you will get pl/sql program to find factorial of a number. We can calculate factorial of a number by multiplying it with all the numbers below it. For example factorial of 5 = 5 x 4 x 3 x 2 x 1 =...

View Article

PL/SQL Program to Print Table of a Number

Here you will get pl/sql program to print table of a given number. You can ask your queries in comment section.declare n number; i number; begin n:=&n; for i in 1..10 loop dbms_output.put_line(n||'...

View Article
Browsing all 761 articles
Browse latest View live