
Search In
How to crawl many pages at one page hit:
I was facing issues for getting the data from multiple urls by loop. The problem is that in the first loop I was getting the data by function Cron, but when second page was called by Cron function then I was
In OpenERP first we create the form and browse the record of account invoice line and then select to the product in product form and then find to the the current user’s ID for security checks. In account invoice line we check to
return statement in C#
Example to demonstrate return statement:
static int SimpleReturn()
{
return 1;
return 2;
return 3;
}
static void Main(string[] args)
{
Console.WriteLine(SimpleReturn());
Console.WriteLine(SimpleRetu
Boolean vs Tinyint vs Bit
I was using MySQL to design database, and I need to use boolean datatype where two states are required true or false. I find the following differences among them.
TINYINT is an 8-bit integer value, a BIT field can
Help me with the Logic of the question given below:
You will be given a file with two lines. First line will contain two integers separated by commas(say X,Y). In the next line there will be Y number of integers again separated by commas. You should
A string is placed either within single quotes i.e ('') or double quotes i.e ("") whereas on the other hand, a symbol is preceded by a colon i.e (:).
A string has a variety of methods to use but contrary to that a symbol is l
Hello friends,
Today while programming in ruby and I came to know about the yield word in ruby, how important this word is in ruby, I will discuss some example where to use yield in ruby. As while programming in ruby you must have used blocks and mo
Hello friends, I was facing issues while running mp4 videos or songs. It was asking me to install mpeg-4 aac decoder. When I run any mp4 player then I got the following error:
So, to resolve it. Today I am going to tell you how to
Solution to the problem when scaffold inherits the inherited class and not the application controller due to active admin
While creating a web application in rails we always need an admin panel through which we can manage the conte
Hello reader's , Today in my blog I will discuss about multiple ways to create equal height columns using CSS.
As working over some website , I found an issue related to the equal height of columns .
To resolve this , I searched
