
Search In
Hello Readers !!
Today we are going to discuss the most new topic i.e VR. VR is known as Virtual Reality.
It quite interesting and simple thing. You must have seen VR box below:-
If you want to create your game for this extra ordinary de
CONVERT() function is basically used to converts an expression of one data type to another data type. This function display date/time data in different formats.
Syntax:-
CONVERT(data_type(length),expression,style)
data_type(length):-
DELEGATES IN UNITY:
A delegate is a reference pointer to a method. When it is called, it gives notification to all methods that reference the delegate. It allows us to treat a method as a variable and pass method as a variable for a callback. The ba
Cryptography is based on the calculation and manipulation of data streams and the process to decrypt the data. It will allow you to store the sensitive information and then send it to the network so that the data cannot be read by anyon
Capybara provides some methods to navigate the application through links or buttons:
Click_link_or_button
Click_link
Click_on
Capybara do not uses the fixed strategy to locate elements. It uses its own “best guess” pat
In this article, I am going to share with you, "how to add REYES EFFECT" in photoshop on the image and how to play with the brightness/contrast.
Step 1 : Decrease the contrast on the image :-
Go to: Layer>New
What is wordwrap() Function in php ?
wordwrap() Function wrap a string into incipient lines when it reaches a concrete length.
So,basicaly use of wordwrap() wraps a string into new lines. wordwrap() include space also.
You can take reference fo
If you want to increase the volume of iphone in a specific app and then reduce it to it's current volume. The following code might get helpful:- (NOTE:Include FrameWork: MediaPlayer.framework )
-(void)exampleFuctionSample{
NSLog(@"");
[self increa
Here I am writing few differences between UnBound Service, UnBound Service and IntentService.
UnBound Service:
1.Basically used for long repetitive task.
2.startService() is the method use to start unbound service.
3.stopService() is the method
What happens when you use a printf() function inside another printf() function.
To understand this lets see the following example:
#include<stdio.h>
int main() {
int number = 1234;
printf("%d", printf("%d", printf("%d", number)));
return