
Search In
Hello readers if you using a long Angular JS app and want to make it's performance better you can see here how to make your app efficient
There are two ways of achieving this for a developer namely 1. disabling debug data and 2. enabling strict DI
Enabling caching .
Caching is enabled in three step.
1) Create a writable directory on your server where you want strored the cache files.
2) Set the path to your cache folder in your application/config/database.php file.
3) Enable the cachi
To find out the country of the user please use the code below:
1- Add the coreLocation Framework to your project and import #import <corelocation corelocation.h="">
2- Set the CLLocationManagerDelegate as UIViewController
@interface Locatio
If you want to Extend the default Header in OpenERP(Odoo) follow the below mentioned code in your .xml file:
<template id="snippet_testimonial" name="Testimonial snippet">
<section class="snippet_testimonial">
<div class="contai
Inheritance in java is concept by which one class can have the method of the other class.
The class that is being inherited is called Base or Parent class and the one which derive is called the Derive or child class.
Inheritance can be of the two typ
Simplification of bug report data:-
The sequence of actions that are applied on the software to reproduce the defect or bug, actually defines the way to get to the problem. A tester may detect a number of bugs during the testing session, however, if
Memory Management In Java
The memory management is done in Stack and Heap in java. whenever the java command is triggered it divides memory in two parts(Stack and Heap) for the program, the Stack is used for the execution purpose and Heap is used fo
In Javascript , setFullYear ( ) method set the full year for a for a given date based on local time . It return a new timestamp .
Syntax ->
setFullYear( yearValue , monthValue , dayValue ) <br>
Parameter ->
yearValue -> It specify t
The ServletRequest interface have many methods to handle client requests to access a servlet. It is used for access client requests in servlet. HttpServletRequest extends to ServletRequest.
Below example will help you to batter understand :
we
Collection in java can be called as a container, or an object which binds multiple elements into a single unit.
Collections in java is a framework used to store, and manipulate group of elements. They represent data items that form a group on which
