Tuesday, 2 June 2009

Maine Coon Cat Health in Europe

This is a post about Maine Coon cat health in Europe and is based on an email from a concerned Maine Coon cat breeder in Italy, Max. This is his email. One or two bits have been amendeed as his email was written in English and Max is Italian. I therefore tidied it up a bit. He writes pretty good English though.


…..Hi I am Massimo (Max). I run a Maine Coon cattery in Italy. It is called Trillo Team (new window). We are first and foremost 'cat-lovers' and then breeders. We also have two rescue cats who were condemned to death and we had bottle feed them to complete their weaning. If you look at our website, which is unfortunately only in Italian (sorry), you'll find lots of information relating to the health of the Maine Coon.

We are currently fighting a tough battle against many Italian breeders to isolate and eliminate the HCM gene from our breeding lines, but unfortunately the situation between breeders in Italy and in Europe is very serious, especially for what I reluctantly consider to be their irresponsible behaviour, that I'll try to explain below. I am sorry to say this but I feel that I must. In Italy there are breeders who continue to reproduce cats that HCM test for p / p (homozygous) and more so cats that test for n / p (heterozygous) not caring to only breed with cats that test negative n / n. But in doing so, in a litter, for example, of 6 puppies, 20% of the pups could be n / p, and therefore bearers of HCM.

I consider this irresponsible behaviour, because thinking about the reproductive life of a cat of at least 5 years with 2 litters per year, for an average of 6 pups at a time, this means that a cat that is n / p, gives the world at least 20 baby carriers of HCM ... Can you tell me, if you know, how the breeders in the U.S.A. are doing? Is it the same? We, as a breeder, unfortunately in these 4 years of activity, took cats from other breeders with the assurance that the examinations had resulted in negative HCM testing resulting in n / n. But the re-test on these cats indicated that they were n / p. I think it is irresponsible behavior. There are only 3-4 breeders in Italy who breed Maine Coon cats under rigorous testing and removing carriers of HCM from the reproductive cycle.

So we are looking the U.K. for instance to see if we can find a guaranteed cat, n / n, from a line that is not present in Italy, for at least 6 generations. We would like to found a Quality Maine Coon Club, bringing together Italian and foreign breeders, that pursue a rigorous selection in its breeding.

Another problem has occurred in relation to laboratories in Italy that perform analytical testing of HCM. In Italy there is a laboratory at the University of Milan (Vetogene) running this test that is connected to the University of Michigan, where the gene was identified and isolated. Otherwise we turn to a laboratory in Germany (LaboKlin) or France (Antagene). But what has happened is that the same cat resulted in, n / n in Italy was found to be n / p in Germany. So we no longer know what to do.

I've read with interest the study of HCM made in Stockholm, Sweden, but I've seen that they didn't talk about HCM's genetic analysis. I think that there is a lot to do to in generating awareness in people about this problem. For me, it is really a nightmare to think of selling a kitten, that after 2 or 3 years is dead of HCM. A cat is not a computer or a radio, for example, so that I can say “this cat is under warranty and can be replaced with another puppy”. When a cat becomes part of the family he or she becomes the object of attention and love from all, and when he dies you can not replace this companion just like a broken TV ...

I would welcome any input or comments from breeders or concerned people who might be able to assist in eliminting the curse of HCM from Maine Coons in Italy.

Max.

From Maine Coon Cat Health in Europe to Maine Coon Cats

Monday, 1 June 2009

CSS Background Image

The CSS Background image is quite popular for Blogger users. There is a website dedicated to providing them as you might know. It is a successful website (I’m jealous!).

But if you want to put your own background image onto your Blogger blog it is easy to do and it will be all yours and of your making, which I think is better for you (achievement) and the visitors (more personal and unique, which is very important on the internet).

Blogger code is css code (cascading style sheets). Css code is code that dictates the look and feel of the whole website (usually) although it can be used to affect a single page (i.e. the code is on the page in question as opposed to on a separate sheet and then referred to).

This short post tells you how to put a background image into a Blogger blog. First prepare the image. I carelessly use a large rather “heavy” (large file size) image for a background that I use on my YouTube Home Page for example. I also use it for one or two pages of the main website but my main site is not written in css but straight Html.

By default the background image is placed in the top left corner of the page and then repeated vertically and horizontally. Small images will therefore create a kind of wallpaper effect and are generally recommended but a dramatic large image that fits the page well can look outstanding. Some of the best background images are ones that are formulated to knit together seamlessly. Perhaps the best website for this is: DINPATTERN . The patterns are extremely slick and elegant but a bit gothic and flock wallpaper like. Bottom line; try and produce your own image. A large image on a black background can work well but this is about taste!

background-image-blogger

These are the steps to take to add a css background image to your Blogger blog:

  1. Get to the Edit HTML page of your blog. You can do that from Dashboard>Layout>Edit HTML tab
  2. Make sure that you have an up to date downloaded copy of the template on your computer and if not simply click on “Download Full Template” at the top of the page. The small file that is downloaded (XML file) can be uploaded to renew the altered template if it all goes pear shaped. But if you review your work at each stage this shouldn’t be necessary.
  3. Press Ctrl F and a search box comes up bottom left of the screen.
  4. Copy this code (in red) into the search box: body { . It will find the code automatically and quickly painted in green.
  5. Just below this line of code place the code highlighted in red below (over write what is already there which should be background:$bgcolor;). This is how it will look (note: the image URL in the example is not a real image URL but the code is correct. Just replace the URL with your own. Make sure all the code is in place.

body {
background-image:URL(http://www.pictures-of-cats.org/images/Maine-Coon-white.jpg);
margin:0;
color:$textcolor;
font:x-small Georgia Serif;
font-size/* */:/**/small;
font-size: /**/small;
text-align: center;
}

With the above code the image scrolls up and down with the website. I prefer it when the background stays still and the blog moves over it; it can look nice. This is the modified code to achieve a static background:

body {
background-image: url(http://www.pictures-of-cats.org/images/Maine-Coon-white.jpg); background-attachment: fixed; background-position: center;
margin:0;
color:$textcolor;
font:x-small Georgia Serif;
font-size/* */:/**/small;
font-size: /**/small;
text-align: center;
}

You can see how this looks on this site: 3 Stray Cats

How do you know what the URL of the image is to put into the block of css code? Well, you will need to upload an image of your own making to a server. It might be a server that hosts your other website (this is the case for me). If Blogger is your only website, you can upload your background image to various free servers:

  1. Google Picasa Web Albums (as a Google member/subscriber you can open an account easily). This is my preference.
  2. Photobucket
  3. There are numerous image hosting sites
  4. I see no reason why you can’t use Blogspot, the host for your Blogger blog. You can upload the image in the usual way in compose mode as if you are creating a new post and then go into Edit Html mode and dissect out the URL of the image. I explain this further below:

This is an example of the Blogger image code as uploaded:

<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEha-wcIvuHLujkpx2Bh4wYUmnyn8wpivcJ57keLD1OSaWnY88mo8a9_qa5uPfeFY0RZHdKlJFEuODHbD8yyeEwtvYod5-VaOZb-Wf38wz1QbvQkAEJSG2D89myOcHLUlHvmKfV1mcsunBxC/s1600-h/website-info.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 80px; height: 15px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEha-wcIvuHLujkpx2Bh4wYUmnyn8wpivcJ57keLD1OSaWnY88mo8a9_qa5uPfeFY0RZHdKlJFEuODHbD8yyeEwtvYod5-VaOZb-Wf38wz1QbvQkAEJSG2D89myOcHLUlHvmKfV1mcsunBxC/s320/website-info.png" alt="" id="BLOGGER_PHOTO_ID_5342224703109077538" border="0" /></a>

It looks complicated because the image is linked to a page on which just the image is seen so the URL is mentioned twice. I have highlighted in red the URL of the image. Do this for your own image and then copy and paste it into the css background image code mentioned above.

Preview your work before saving and viewing the website. That is it…..

From css background image to Home Page

Sunday, 31 May 2009

Somali Cat Chase

This is a very short post about a Somali cat called “Chase”. He is an extremely handsome cat.

somali-cat-chase-1

Page Rank Toolbar

I use the PageRank™ toolbar all the time. I think that it is worth knowing what Google thinks of a website and the PageRank™ is in effect just that.

I use PageRank™ and Alexa ranking combined to assess the success of a site. These are not conclusive, though, far from it. A site can be excellent and have poor PageRank™ and Alexa rankings if, for example, it is new. It can take months and years in fact to get a decent PageRank™. Indeed it seems that some websites have acquired a good PageRank™ (above 3) through simply being around a long time. Just keeping a website going for a long time counts provided the content has some value.

The PageRank™ toolbar comes with the latest Google Toolbar, which, as far as I can tell, is Toolbar 5, at the date of this post. It requires Firefox 2 (the most recent version is, I believe, version 3). I would always recommend the Firefox browser over Internet Explorer. It is known to be better (however some people prefer other browsers – can’t see why though, probably habit). You can download Firefox from here (very easy):

http://www.mozilla.com/en-US/firefox/personal.html

And download the Google Toolbar that contains the PageRank™ tool from this webpage:

http://www.google.com/tools/firefox/toolbar/FT5/intl/en-GB/index.html

In addition to seeing a webpage’s PageRank™ in the Toolbar (at the top of the page) Alexa provide some applications that show the PageRank™ as well as their own rankings. The Alexa toolbar is called “Sparky” and can be download from their website from this page:

http://www.alexa.com/toolbar

alexa-sparky

It shows at the bottom right hand corner of the page as a Google Page Rank & Alexa traffic ranking combined. It also puts a tool in the header tool bar (related links, but I never use it, maybe I should). This I find very useful as it probably gives you all the information that you need to know about the site while visiting it. As far as I am aware, Sparky doesn’t work with Google Chrome at the date of this post. It works with IE though.

In addition to these tools, that show you the Page Rank of the page that you are visiting, Sparky puts the Page Rank underneath the Google search result listing of each website listed. It shows like this:

pagerank-shown-in-google-search-results

I have forgotten how I installed this so I am going to stick my neck out and say that when you install Sparky and use Firefox 2 you will get this to show up as well as the other indicators in the bottom right hand corner of the page.

Hope this help with a search for Page Rank Toolbar.

From Page Rank Toolbar to Home Page

Saturday, 30 May 2009

Blogger Website Building Site Map

Please remember things change fast in the world of Blogger. These posts were written some time ago and some are therefore less useful now as Blogger constantly upgrades its software. They are still of use though. Look for the label "building a website" in the right hand column for more recent posts.

Some are timeless however: How to publicize your blog is one example.

Google Blogger Guide for Dummies
Gothic Background Image
Submit Blogger Site Map to Windows Live
Add Background Image to Your Table
Add TwitThis Button to Blogger Post
Embedding Google Adsense in Blogger Post
Twitter Helps Blogger Traffic
Embedding a Spreadsheet into a Blog
Do Subdomain Hits Improve Alexa Ranking?
Creating Blogger Blog Subdomain
Flip Camera Problem
Flickr Photostream for Your Blog
Write Blogs with Windows Live Writer
How to Get Traffic to Your Blog
Fitting the Header Picture into Border
Speed up Blogger Blog Load Times
Most Companies use Internet Explorer
Pictures with Captions in Blogger
Google Image Search builds Traffic
Back Up Blogger Blogs
Delete Images with Caution
How to Publicize Your Blog
Is Site Sell Site Buildit a Scam
SEO Blog Software
Page Rank Improvement
Speed Blogging and Efficient Blogging
Make Easy Money on the Internet
Html Table Codes Building a website
Free Html Blog Templates
Align Blog to Left
Summary of Blogger Terms and Conditions
Showing Code on Your Webpage
Google Docs to Create Blogger Post
Add Third Column to Minima Template
Creating Tables in Blogger Blogs
How Useful are Keywords?
Alexa Measures Page Views Inaccurately
Change the Title Tags for Your Blog
What are Keywords?

Featured Post

i hate cats

i hate cats, no i hate f**k**g cats is what some people say when they dislike cats. But they nearly always don't explain why. It appe...

Popular posts