
Search In
Module is one of the most important tool in the Ruby toolbox. They are generally used to namespace ruby classes.
module Test
class Hello
end
end
The class Hello will be wrapped in the Test namespace which means that if we want to create an ins
GCM(Google Cloud Messaging) registration token is a kind of id given by the GCM connection server to user/client that allow user to receive messages. To get registration token first we have to generate a unique number, it can be created while configu
In some of the cases in our application we have to set our devices in Mute/Unmute mode. To get this functionality we have to add few lines of code. I have added two buttons one is for Mute and another one is for Unmute our device described below.
/
Hello Readers !!
Today we are going to discuss the very important part of our game i.e. Monetization.
We create games to earn some money and this can be done only by selling the game or by adding some sort of monetization in the game.
We c
Checkit allows you to validate full javascript object, defining custom rules and message, I supports both asynchronous and synchronous validations. The validations by checkit works for both on browser and server.
Sample code:
1. Async:
va
Hi,
Normally when we push to a ViewController it show the animation from left to right.
But we can change this to animation from to top to bottom.
here is the code to push a view controller from top to bottom.
- (void)pushFromTop:(UIViewControll
Hello Readers !!
Today I am going to explain about the Feed Sharing on Facebook with Unity.
Feed Sharing is the simplest way to implement the Facebook Share with any App. With this feature, you no need to Implement the Facebook Login in the
Hi Friends,
Today i will tell you about how we can convert a list to array. We can use 2 methods to convert list to array
Method 1:
//Create a list object
List<string> objList = new List<string>();
//Add Items
Hi Friends,
Today i will talk about the exception we usually get while uploading a large size file in file uploader in asp.net. The exception we get is shown in below image
To get rid of this exception you need to configure the web.config file an
I want to use another if statement in below mail function with failure message.
so when mail will not sent it can display failure message on the screen
<?php
if(isset($_POST['submit'])){
$to = "Test@gmail.com"; // this is your Emai
