
Search In
Hello all,
Below is an example, how to create 3D mockup to create this you should know about css Transfrom and about pseudo class.
CSS:-
div{height:240px;width: 160px;background: #ccc; position: relative;
top:40px;padding:5px;box-sizing:bo
If you want to import the customer data through csv file in OpenERP(Odoo) follow the below mentioned steps:-
Step-1 Go to Sales Menu and Click it.
Step-2 Go to Customer button and Click it.
Step-3 Click on Import Button and file will be uploaded to
There are some specific variables accessible to make template reports.
1. docs : records for the current report
2. doc_ids : list of ids for the docs records
3. doc_model : model for the docs records
4. time : a reference to time from the Python stan
Yon can flip image with css please check the code below
img {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "Fli
Deletion of item from double linked list st known position takes O(1) complexity while deletion at some specified position takes O(n) time complexity.
In deletion we basically removes the pointer of that item. First of all check the reference node v
To replace any character from a String, we generally use replaceAll() method of String.
Below is the example
String Str = new String("Hello + world +");
System.out.print("Output Value :" );
System.out.println(Str.replaceAll("[+]",
This code packet will help you to authenticate to O365 using Client Side Object Model(CSOM). It uses the SharePointOnlineCredentials class to get clientContext of SharePoint. Let try it yourself.
// Namespaces
using System;
using Syste
Hello friends,
Today we will learn how to compile and run a C program in Ubuntu using the following steps:
Step 1. Open your terminal.
Step 2. Now type the following command:
gedit cprg.c
The above command open a text editor in which you will wr
How can I divide an circular array into k group of contiguous element such that difference between maximum sum and minimum sum is minimum. Each group have contiguous element of array.
For e.g If the array is as follow.
[6 13 10 2] and k=2 then o/p s
Some general purpose SQL queries syntax
1) To get text of stored procedures, views and triggers
sp_helptext 'Object_Name'
2) To get all stored procedures of a related database
Select * from sys.obje
