Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

Seo Master present to you:

So what does buffering mean?

          There you are, happily watching the latest 'Vampire Slayer', or whatever the latest viral video is, when it screeches to a halt and the word 'buffering' appears. A buffer is supposed to reduce impact between two things, but 'buffering' is the most annoying aspect of streaming media.

So why is it called that?

The main reason for the confusion is that buffering isn't really what's going on when the message is displayed...

The internet is a messy environment and does not guarantee that data will always arrive in a timely fashion or even in order. To counter this programs that play streaming media queue up a few seconds or more worth of data before starting playback.

That way it there is a problem and something doesn't turn up as expected those few seconds of stored data will provide a breathing space while things get sorted out.

As data comes over the network it goes on the end of the queue and data at the front is decoded and played back to the user. This is the method that provides the buffer - between the distant source and the local playback software.

Buffering is a common technique in computer programming and telecommunications. It comes up anywhere when data is passed from one place to another.

But you can't plan for everything and sometimes the queue of buffered data empties out, there's nothing left to play so the programme has to pause and wait for more data to arrive to refill the queue.

In a way these programs get it backwards. The program is constantly buffering during normal operation and that's what keeps everything running smoothly, it's only when things go wrong that the message pops up. It's waiting for more data to arrive so playback can resume.

But from the user's point of view it is confusing: they can't make any sense of it because it doesn't seem to correspond to any kind of buffering that they know about.

Yet the technical sense of buffering is a lot closer to the everyday sense than most computer jargon.

The buffering of streaming media really lessens the impact of unreliable or slow networks.

We have come to despise it but without buffering there would be a lot more starts and stops whenever we watched the latest movie online - and there are already enough jerks on the internet without that.



Author Bio:
Thank you for taking the time to read my first article. Please visit my blog to see this post at: View Rob's blog here.
2013, By: Seo Master
Seo Master present to you: This navigation bar gets semi-transparent when you scroll down the page and is slightly showing up by fading out and becoming almost transparent. When the user hovers over it, the menu becomes opaque again.

Inside of the navigation there are some links, a search input and a top and bottom button that allows the user to navigate to the top or bottom of the page.


Let's start adding it...

1. Go To Blogger - Template - Edit HTML


 ....and select the "expand widget templated" box:



2. Search (using CTRL + F) for this piece of code:

</head> 

3. Just above/before the </head> tag, add this code:

<link rel="stylesheet" href="http://helplogger.googlecode.com/svn/trunk/html/[www.matrixar.com]Fixed Fade Out Menu.css"/>
<script type="text/javascript" src="http://helplogger.googlecode.com/svn/trunk/html/[www.matrixar.com]jquery-1.3.2.js"></script>
 <script type="text/javascript">
            $(function() {
                $(window).scroll(function(){
                    var scrollTop = $(window).scrollTop();
                    if(scrollTop != 0)
                        $('#nav').stop().animate({'opacity':'0.2'},400);
                    else   
                        $('#nav').stop().animate({'opacity':'1'},400);
                });
               
                $('#nav').hover(
                    function (e) {
                        var scrollTop = $(window).scrollTop();
                        if(scrollTop != 0){
                            $('#nav').stop().animate({'opacity':'1'},400);
                        }
                    },
                    function (e) {
                        var scrollTop = $(window).scrollTop();
                        if(scrollTop != 0){
                            $('#nav').stop().animate({'opacity':'0.2'},400);
                        }
                    }
                );
            });
        </script>

4) Now search for this tag:

<body>  

If you can't find it, search for this one:

<body expr:class='&quot;loading&quot; + data:blog.mobileClass'>

5) Just below/after this code, copy and paste the following code:

<div id="nav">
<ul>
<li><a class="top" href="#top"><span></span></a></li>
<li><a class="bottom" href="#bottom"><span></span></a></li>
<li><a href='URL address'><span>Link 1</span></a></li>
<li><a href='URL address'><span>Link 2</span></a></li>
<li><a href='URL address'><span>Link 3</span></a></li>
<li><a href='URL address'><span>Link 4</span></a></li>
<li><a href='URL address'><span>Link 5</span></a></li>
<li><a href='URL address'><span>Link 6</span></a></li><li class="search">

<input type="text"/><input class="searchbutton" type="submit" value=""/>
</li>
</ul>
</div>
<div id="top"></div>
<div class="desc"></div>
<div id="bottom"></div>
<div class="scroll"></div>

Note: Replace URL address with the URL of your pages and Link 1, 2, 3, 4, 5, 6 with the name of the link that will appear in the menu.

6) Now click on the Save Template button and you're done ;)

Credit goes to the original author. This widget was inspired by David Walsh’s top navigation bar.2013, By: Seo Master
Seo Master present to you:
What is Blogger?

According to the Computer Desktop Encyclopedia, Blogger is:
"A Web site launched in 1999 from Pyra Labs, San Francisco, CA (www.blogger.com) that provides the tools for creating blogs (Weblogs). After users select a pre-designed template or create one with their look and feel, every posting entered on Blogger is published to the Blogger page on their Web site automatically. In early 2003, Blogger was acquired by Google. "


So, in simple terms, Blogger is a free site where you can make blogs (a kind of sites) where you can write about everything you want - from personal life to discussing about your political views, or relating your experience in a topic of interest.

How to create a blogger blog?

Go to Blogger.com homepage and click on the "Get Started" button

blogger tricks, tips, create a blog

Enter your Gmail acount details (your gmail address and pasword) and then press "Sign in"

blogger, create blog, web design

Enter the name you want to appear on your blog - check the "Agree to Terms and Conditions"
Click on the "New Blog" button

web hosting, forum, design, blogger blogspot

Enter your blog title and the address of your new blog, choose a template (Simple Template is more easily to customize, so i recommend you to choose this one) then click on "Create Blog!"

Now that your blog has been created, you can start blogging. That's all :)2013, By: Seo Master
Powered by Blogger.