Posted in 21 mai 2009 ¬ 3 h 50 minh.
admin
Comments Off
The qustion is whether or not you can have more than three slots per page enabled for AdSense price optimization on a page, versus how many AdSense ads can actually serve. You can have more than three ad slots enabled for AdSense on a single page if the following criteria is met:
1. The ad slots [...]
Read the rest of this entry »
Posted in 21 mai 2009 ¬ 3 h 38 minh.
admin
Comments Off
The navigation of a website is important to help search engines understand what content the webmaster thinks is important. Although Google’s search results are provided at a page level, Google also likes to have a sense of what role a page plays in the bigger picture of the site.
All sites have a home or “root” [...]
Read the rest of this entry »
Posted in 21 mai 2009 ¬ 2 h 53 minh.
admin
Comments Off
This few lines will let you find a number in astring.
Regex re = new Regex(@”\d+”);
Match m = re.Match(txtFindNumber.Text);
if (m.Success)
{
lblResults.Text = string.Format(”RegEx found ” + m.Value + ” at position ” + m.Index.ToString());
}
else
{
lblResults.Text = “You [...]
Read the rest of this entry »
Posted in 20 mai 2009 ¬ 0 h 02 minh.
admin
Comments Off
The Mythical Man-Month: Essays on Software Engineering is a book on software engineering and project management by Fred Brooks, whose central theme is that “adding manpower to a late software project makes it later“. This idea is known as Brooks’ law, and is presented along with the second-system effect and advocacy of prototyping. The work [...]
Read the rest of this entry »
Posted in 18 mai 2009 ¬ 6 h 47 minh.
admin
Comments Off
Modifications fct
— The lines in range f of the first revision were replaced with the lines in range t of the second revision.
For example, in the change command 8c8,9 tells us that line 8 of revision 1.11 was replaced by lines 8 and 9 in revision 1.12.
Additions lar
—The lines in range r of the second [...]
Read the rest of this entry »
Posted in 14 mai 2009 ¬ 23 h 18 minh.
admin
Comments Off
I’ve been using excel a lot these days and I needed to write a lot of formulas, the one u drag along hundreds of lines. sometimes I needed to refer a single cell value that should not change while dragging my formula.
This must be pretty normal for people who are using Excel every day, but [...]
Read the rest of this entry »
Posted in 10 mai 2009 ¬ 1 h 09 minh.
admin
Comments Off
Yahoo!-specific REP directives that are not supported by Microsoft and Google include:
* Crawl-Delay:
Allows a site to delay the frequency with which a crawler checks for new content
* NOYDIR META Tag:
This is similar to the NOODP META Tag above but applies to the Yahoo! Directory, instead of the Open Directory Project
* Robots-nocontent Tag:
Allows you to identify [...]
Read the rest of this entry »
Posted in 9 mai 2009 ¬ 13 h 44 minh.
admin
Comments Off
What is a 404 page ?
A 404 page is what a user sees when they try to reach a non-existent page on your site , because
-they’ve clicked on a broken link,
-the page has been deleted,
-they’ve mistyped a URL.
Why is it called like this?
A 404 page is called that because in response to a request for [...]
Read the rest of this entry »
Posted in 9 mai 2009 ¬ 13 h 02 minh.
admin
Comments Off
As stated in the last article, writing a robots.txt file is important for SEO. It helps tell spiders what is useful and public for sharing in the search engine indexes and what is not.
Not all search spiders will follow your instructions left in the robots.txt file.
A poorly done robots.txt file can stop the search spiders [...]
Read the rest of this entry »
Posted in 6 mai 2009 ¬ 4 h 13 minh.
admin
Comments Off
Creating descriptive categories and filenames for the documents on your website can not only help you keep your site better organized, but it could also lead to better crawling of your documents by search engines.
Also, it can create easier, “friendlier” URLs for those that want to link to your content.
Visitors may be intimidated by extremely [...]
Read the rest of this entry »