"bus speed", "rated bus speed", "stock bus speed"

1,458

Stock Bus Speed 200 MHz

Default Speed at which Front Side Bus aka FSB aka bus runs at.

Bus Speed 200.0 MHz

Speed at which Front Side Bus aka FSB aka bus runs at.

Rated Bus Speed 800.1 MHz

Effective speed of the bus ( recent Intel chipsets are quad pumped, hence 200MHzx4 = 800 MHz)

Stock Core Speed 1600 MHz

Stock speed of your processor core.

( If you're wondering why "stock speed" v/s just "speed" - speed would refer to the overclocked speed ).

Share:
1,458

Related videos on Youtube

Lado Lomidze
Author by

Lado Lomidze

Updated on September 17, 2022

Comments

  • Lado Lomidze
    Lado Lomidze over 1 year

    I'm having a little trouble with calling function after including/loading 3rd party widget on my web-site.

    Consider this scenario. I load a script, which generates widget from 3rd party library like this.

    <script>
    var element= document.createElement("script");
    element.src = 'http://example.com/script.js';
    document.body.appendChild(element);
    </script>
    

    After finishing loading it then creates #someElement div tag, which has style attribute with some rules and appends it to body element.

    What I want to do, is to remove that style attribute and add some CSS class.

    So, the question is, how can I check, when that file is loaded, or that element created and call my function after that?

    Thank you!