Google Code Hosting is Closed March 12 2015

Google has decided to close the project Google Code. On August 24, 2015 the site goes into read-only, will be opened read-only acquaintance with the code and comments.

Read More

A New Font for Programming Input

Company Font Bureau has developed a new font family Input for programming input, the most important of which for us is the font Input Mono.

Read More

How to Embed Flash Movie Video in Web Page?

For those who tried to find a solution for embedding any Flash (SWF) Movie or Video in your web page and have  not found a good solution, the source presented below have always worked for me. I combined my research into one simple solution presented below. It works for me and I hope it will work for you.

All you need to do is insert this code anywhere within the <body>…</body> tags.


<object classid=“clsid:D27CDB6EAE6D11cf96B8444553540000″
width=“650”
height=“530”
id=“FlashID”
title=“Your Flash Movie Title”>
<param name=“movie”
    value=“http://www.yourdomain.com/your_flash_movie.swf” />
<param name=“quality”
    value=“high” />
<param name=“wmode”
    value=“opaque” />
<param name=“swfversion”
    value=“9.0.45.0” />
<! Next object tag is for nonIE browsers. So hide it from IE using IECC. >
<![if !IE]>>
<object type=“application/xshockwaveflash”
    data=%20www.yourdomain.com/your_flash_movie.swf”
    width=“650”
    height=“530”>
    <!<![endif]>
    <param name=“quality”
value=“high” />
    <param name=“wmode”
value=“opaque” />
    <param name=“swfversion”
value=“9.0.45.0” />
    <! The browser displays the following alternative content for users with Flash Player 6.0 and older. >

    <div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>

<p><a href=“http://www.adobe.com/go/getflashplayer”

    rel=“nofollow”
    target=“_blank”><img src=
    “http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif”
    alt=“Get Adobe Flash player”
    width=“112”
    height=“33” /></a></p>
    </div><![if !IE]>>
</object> <!<![endif]>
</object>

Read More