
Search In
Hello
This section will detail out some insight on how to set up the database system for PIM.
PIM Database Pre-Installation Checklist
During database installation:
Create a new schema
Create a user with full read/write access to
I am creating two spinners: One for City and the other for Area in that particular city. As per the selection made by the user in the above spinners, a ListView will be displayed which will be different for different combinations of selections made b
Description:
Given a string of integers, count how many times that integer repeats itself, then return a string showing the count and the integer.
Example: countMe('1123') (count_me in Ruby)
Here 1 comes twice so <count><integer
#include<stdio.h>
int maxDiff(int a[], int n)
{
int maxDiff = -1; // Initialize Result
int maxRight = a[n-1]; // Initialize max element from right side
for (int i = n-2; i >= 0; i--)
{
if (a[i] > maxRight)
In Odoo-8 first, we create the own module and then create fields and make these fields a functional fields. Ones we create functional fields after this the functional field is replaced by computed field.
Like, first create a computed field and after
There are so many different file extensions out there. What is a CSV file? What is a PNG file? And how can you tell the difference? This guide will teach you the six major file extensions you'll come across on the internet.
TIFF Files
Encryption is the process of encoding plain text data(plaintext) using an encryption algorithm and generating some random and meaningless data (ciphertext) which can only be read after decryption. Decryption is the process of converting ciphertext ba
Description:
A variation of determining leap years, assuming only integers are used and years can be negative and positive.
Write a function which will return the days in the year and the year entered in a string. For example, 2000, entered as an i
Hello, if you are using pagination with cakephp framework and want to change the view of pagination just like twitter bootsrap then you can do this by doing follow changes in you view and css.
We can do it by writing some custom classes in view and y
Here in this blog i have shown a simple example how to use AJAX to send and retrieve data from a PHP page and then populate the result from a PHP page in a HTML element.
The example here shows when I select a country a request is send to PHP p
