Translate

Sunday, August 18, 2013

How to auto hide left panel in Ubuntu


HOW TO HIDE LEFT-PANEL IN UBUNTU

DEFINITION:
Ubuntu is an operating system based on the Linux kernel and the Linux distribution Debian, with Unity as its default desktop environment. It is distributed as free and open source software. It is named after the Southern African philosophy of ubuntu, which often is translated as "humanity towards others" or "the belief in a universal bond of sharing that connects all humanity".  for more visit: Wikipedia

Ubuntu

HERE ARE THE STEPS:

 GO to System Settings --> Appearance --> Behavior --> Switch-OFF

Thank You!

Hope this was a helpful for you...



Saturday, August 10, 2013

How to show line numbers in Eclipse SDK



You should know:
Eclipse is a multi-language software development environment or IDE (Intergrated Development Environment) that allow software developer to build robust applications by targeting many devices such as  mobile, tables and desktop. Java is the main language used.

NOTE:
Eclipse sdk is set to default after downloaded from Google site: download sdk.
However, to add a line numbers you have to open your eclipse and go to:

Windows ---> Preference ---> General --> Editors ---> select Show line numbers.



Hope this is helpful.
However, if you have any questions about how to download  eclipse sdk and start coding in java please let me know.

Thank You :)

Wednesday, August 7, 2013

html5 templates

BASIC HTML5-CSS3 LAYOUT

Your layout should look like this:

HTML CODE

<!doctype html>
<html lang="en">
<head>
           <meta charset="utf-8" />
           <title>   Your site title  </title>
           <style>  Put your style here</style>
           <script> Put you script here</script>
</head>

<body>

       <div id="container">
        
            <nav>
                    <ul>
                          <li> <a href="#"> Home</a> </li>
                          <li> <a href="#"> News</a> </li>
                          <li> <a href="#">Video</a> </li>
                    </ul>
             </nav>

            <header>
                   Put you header code here...
            </header>

            <div id="content">
                  Put your content code here...
             </div>

             <footer>
                 Put your footer code here...
            </footer>

      </div>

</body>

</html>

Here is the basic html5 page layout. You can also customize by adding more content.
Thank You!