
Search In
Foreman is a gem (aka manager) for managing multiple processes that your rails application is depending upon when running in development environment and also has a option to move it into production environment as well. It is based on a Procfile that
APK uses executable bytecode i.e Dalvik Executable (DEX) files to run an app. The dex file limits the total number of methods in a single dex file to 65,536, including Android sdk methods, library methods, and methods in our code. But sometimes it ex
Hello readers, today we discuss about ""
Q. What is Standalone script?
Ans. Standalone is also consider a new software program, it does not involve almost any computer software in addition to this OS to operate. Consequently nearly all software prog
There are two ways to dynamically access object property:-
1.Dot Notation
2.Bracket notation
var eg = {“first1”: "101", “second”: "202"};
console.log(eg.first1);
var key1 = “first”+1; alert(eg1); // first1
console.log(eg[key1]);
The dot notatio
Welcome to Findnerd. PHP owners modified the zend framework that is zend framework 2. We can simply download the framework setup from github that is known
as zend skeleton application. Below is the link to download.
https://github.com/zendframework
The best way to clone an object in javascript is to use $.extend(). We can use it in two ways:-
1.Shallow copy
2.Deep copy
1.The syntax for shallow copy is: var newObject = jQuery.extend({}, oldObject);
2.The syntax for deep copy is: var newObjec
To apply a CSS Class to a form generated by the Form Helper in CakePHP see the example below
1. To add a class to a form tag:
echo $this->Form->create('User', array('class'=>'form'))
2. To add a class to a input tag:
echo $this->For
WebKit, Blink (Safari, Google Chrome, Opera 15+) and Microsoft Edge are using a pseudo-element: ex- ::-webkit-input-placeholder.
Mozilla Firefox 4 to 18 is using a pseudo-class: :-moz-placeholder (one colon). ex- :-moz-placeholder
Mozilla Firefox 1
This is an html tag which creates popup dialog box on a web page.It represents interactive component like window.
Following is an example of Html dialog box:
<div>
<dialog id="myFirstDialog" style="width:50%;background-color:#F4FFEF;borde
How to make Draw on a Canvas in Android.
If you want to create Draw on a Canvas function check below example. In the below example I have created a Suraface class. Canvas works like as an interface. I have also used onDraw() method for drawing event.
