
Search In
Need a help in appactivity crash issue My code is:
package wallet.ask.com.abcd;
import android.app.ProgressDialog;
import android.graphics.Color;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle
In this tutorial we will have a look on Draper gem, which helps us decorate our views more like in object oriented approach. Its a great gem and provides us lots of options to decorate single object and collection of objects. We discussed presenter/d

While studying MVVM architectural pattern in WPF you might have come across INotifyPropertyChanged interface and wondered the need of using it. Following MVVM architectural pattern in WPF application, we used binding to access data in the view and it
I want to make requests to an api that returns a response like so:
{
totalRecords: 30,000,
data: [{...}],
links: {
selfLink: 'http://example-api.com/data?api_key&page=0&size=10',
nextLink: 'http://example-api.com/data?api_key
Optimistic locking is used to restrict updation of a record by multiple user at the same time . For example we have two user u1 and u2 and both of them is trying to edit the same record from a model City . While u1 is editing the record u2 comes
Hello Readers!
The below code is an example of Keyframe animation using CSS3-
HTML-
<div class="parent">
<div class="circle bulge"></div>
</div>
CSS-
.parent {
display: flex;
justify-content: center;
align-item
The general idea for playing an audio file in iOS 6 was to create an object of AVAudioPlayer and pass the file path to it as follows:
NSURL *fileURL = [NSURL fileURLWithPath:audioFilePath];
player = [[AVAudioPlayer alloc] initWithContentsOfU
If we have to find duration or difference between two times of same date then
Let we have $dtime and $atime as two times of same date then
$dep=EXPLODE(':',$dtime);
$arr=EXPLODE(':',$atime);
$diff=ABS(MKTIME($dep[0],$dep[1],0,DATE('n'),DATE('j'),
With the help of jQuery, its easy to remove any html within a single click. jQuery is having 2 methods to remove html elements.
remove() - Removes the selected element (and its child elements)
empty() - Removes the child elements
jQuer
In Python variables in a program which may not be accessible at all locations in python program. This depends on where you have declared a variable and value.
The scope of a variable determines the portion of the program using which we can access a p
