
Search In
Colliders and its events-
Colliders work with Rigidbodies to bring physics in Unity to life.Rigidbodies allow objects to be controlled by physics. Colliders allow objects to collide with one another.
It is necessary that when two bodies with collide
has_and_belongs_to_many association is used in rails where we don’t need a third joining model to establish the relation between the two model. There will be no additional columns (except the foreign keys) of the third joining table.
For example I h
Many times there is a requirement in the test step to move to a specific link, keyword, etc. So, we have two methods through which we can directly scroll to the desired element. The two methods are as follows:
scrollTo(String text)
scrollToExact(St
How to swap two variables in one line in Java?
// Java program to swap two variables in single line
class Demo
{
public static void main (String[] args)
{
int a = 6, b = 11;
a = a ^ b ^ (b = a);
System.out.println("After Swa
cakePHP have by default FlashComponent which provides notification messages to be displayed in the website or application after processing a form .
FlashComponent in cakePHP writes flash messages to be rendered in a ctp file in view fold
While sending or receiving data from the source or destination the one common and important thing you need is the transmission media.
Magnetic Media
One of the legacy source of saving data is to store it the magnetic media like flop
Concurrency Control
when multiple users accessing a same database at the same time, If any change made by any one of the user do not adversely affect work of the other users.
Locking technique in concurrency control means use a lock variable with eac
Updation in CakePHP is basically based on knowing the primary key(Id) of the records one wants to change/edit.
You can update a field in CakePhp by two ways:-
a)By using saveField method
$this->ModelName->id=$id;
$this->ModelName->
Hi, guys I need a help to merge different layout's as one layout. I am including google maps layout in one layout and it having some buttons at bottom and one horizontal scroll view at top of the page. Now, I am displaying the google maps&nb
Bundling in Asp.Net MVC
What Bundling is actually:
It is a process of grouping files into a Bundle,
so that they can be loaded through one HTTP request and can be referenced by a unique Bundle Name.
Need of Bundling:
