Showing posts with label Gilmon D. Bernal. Show all posts
Showing posts with label Gilmon D. Bernal. Show all posts

Wednesday, 18 September 2013

make your usb drive bootable



Step 1: Insert your USB (4GB+ preferable) stick to the system and backup all the data from the USB as we are going to format the USB to make it as bootable.

Step 2: Open elevated Command Prompt. To do this, type in CMD in Start menu search field and hit Ctrl + Shift + Enter. Alternatively, navigate to Start > All programs >Accessories > right click on Command Prompt and select run as administrator.

Step 3: When the Command Prompt opens, enter the following command:

DISKPART and hit enter.
LIST DISK and hit enter.
Once you enter the LIST DISK command, it will show the disk number of your USB drive. In the below image my USB drive disk no is Disk 1.


Step 4: In this step you need to enter all the below commands one by one and hit enter. As these commands are self explanatory, you can easily guess what these commands do.

SELECT DISK 1 (Replace DISK 1 with your disk number)

CLEAN

CREATE PARTITION PRIMARY

SELECT PARTITION 1

ACTIVE

FORMAT FS=NTFS

(Format process may take few seconds)

ASSIGN

EXIT


Don’t close the command prompt as we need to execute one more command at the next step. Just minimize it.

Step 5: Insert your Windows DVD in the optical drive and note down the drive letter of the optical drive and USB media. Here I use “D” as my optical (DVD) drive letter and “H” as my USB drive letter.

Step 6: Go back to command prompt and execute the following commands:

D:CD BOOT and hit enter. Where “D” is your DVD drive letter.

CD BOOT and hit enter to see the below message.

BOOTSECT.EXE/NT60 H:

(Where “H” is your USB drive letter)

Step 7: Copy Windows DVD contents to USB.

You are done with your bootable USB. You can now use this bootable USB as bootable DVD on any computer that comes with USB boot feature (most of the current motherboards support this feature).
Note that this bootable USB guide will not work if you are trying to make a bootable USB on XP computer.


source:[http://www.intowindows.com/bootable-usb/]

Wednesday, 5 September 2012

html navagation basic

<!DOCTYPE html>
<html>
<head>
<style type="text/css">

 <!--note: ul for spacing, li for alingment horizontal or vertical, a for design link font color or size, etc...-->




ul
{
list-style-type:none;
margin:0;
padding:0;
}


li
{
display:inline;
}


a
{ text-decoration:none;
    }

</style>
</head>

<body>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>

</body>
</html>

html float

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>

<div style="float: left; width: 50%; height: 100px; background:#F60"> </div>
<div style="float: right; width: 50%; height: 100px; background-color:#0F0 "></div>

<!--part 2-->

<div style="float: left; width: 600px; background: #F00">
<div style="float: left; width: 300px; background:#F60" > asdasdasd</div>
</div>


<!--part 3-->

<div style="float: left; clear: left; width: 33%; height: 100px; background:#F60"> </div>
<div style="float: left; width: 33%; height: 100px; background-color:#0F0 "></div>
<div style="float: left; width: 33%; height: 100px; background-color: #FF0"></div>




</body>
</html>

html basic

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<!--http://www.w3.org/Style/Examples/011/firstcss-->
<html>
<head>
  <title>My first styled page</title>
  <style type="text/css">
  body {
    padding-left: 11em;
    font-family: Georgia, "Times New Roman",
          Times, serif;
    color: purple;
    background-color: #d8da3d }
  ul.navbar {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 2em;
    left: 1em;
    width: 9em }
  h1 {
    font-family: Helvetica, Geneva, Arial,
          SunSans-Regular, sans-serif }
  ul.navbar li {
    background: white;
    margin: 0.5em 0;
    padding: 0.3em;
    border-right: 1em solid red }
  ul.navbar a {
    text-decoration: none }
  a:link {
    color: blue }
  a:visited {
    color: purple }
  address {
    margin-top: 1em;
    padding-top: 1em;
    border-top: thin dotted }
  </style>
</head>

<body>


<!-- Site navigation menu -->
<ul class="navbar">
  <li><a href="#">Home page</a>
  <li><a href="#">Home page</a>
  <li><a href="#">Home page</a>

</ul>


<!-- Main content -->
<h1>My first styled page</h1>

<p>Welcome to my styled page!

<p>It lacks images, but at least it has style.
And it has links, even if they don't go
anywhere&hellip;

<p>There should be more here, but I don't know
what yet.

<!-- Sign and date the page, it's only polite! -->
<address>Made 5 April 2004<br>
  by myself.</address>


</body>
</html>

html basic 1

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
        <title>my design 1</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <style type="text/css" media="screen">
        html, body {width:100%; height:100%; background-color: #030;background-position:center top;background-attachment:fixed;background-repeat:no-repeat;}
        body { margin:0; padding:0; }
        #flashContent { margin:0 auto;width:900px;outline:0 none; }
        #flashContent object{ outline:0 none; }
       
        a {text-decoration:none; color:#FFF}
       
ul
{
list-style-type: none;
padding: 0px;
margin: 0px;
float:left;
}
body {
    font-family:Arial, Helvetica, sans-serif;
}
body p,ul,li,a{font-size:15px;}
.menu{float:left;width:20%;}
        </style>
    </head>
    <body>
   
    <div align="right"  style="height:333px;" >
      <div  style="height:333px; width:81%; float:left"> &nbsp;</div>
     <div align="center" > demo line</div>
    </div>
   
        <div style=" background-color: #00af34; height:35px; width:100%">

<span class="menu">
 home
</span>


<span class="menu">
 about
</span>

<span class="menu">
contact
</span>


</div>

     <div align="right"  style="height:333px;" >
      <div  style="height:333px; width:81%; float:left"> &nbsp;</div>
     <div align="center" > demo line</div>
    </div>
   
   
    </body>
</html>

Sunday, 5 August 2012

tan X = 2/3

Basic tips:

(sin x)^2 + (cos x)^2=1


sin x /cos x= tan x and cos x/sin x=1/tan x

Tan x = 2/3

cot x = 3/2

from enunciation, the value of  tan x = 2/3.


1 + (cotx)^2 = 1/(sin x)^2
sin x = 1/sqrt[1+(cot x)^2]
sin x = 1/sqrt[1+(3/2)^2]
sin x= 1/sqrt(1+9/4)
sin x = 2/sqrt13 => sin x = 2sqrt13/13


sin x = 2sqrt13/13




[Source 1]

 [Source 2]

Thursday, 26 January 2012

A method of expressing the amplitudes of complex non-periodic signals such as speech.

 A method of expressing the amplitudes of complex non-periodic signals such as speech.


" Volume  "

The reverberation time of a 184.2 cubic meters broadcast studio is 0.84 sec. Find the absorption effect of the materials used in metric sabines.

 The reverberation time of a 184.2 cubic meters broadcast studio is 0.84 sec. Find the absorption effect of the materials used in metric sabines.


"  35.3   "


formula:
 T60 = 0.161xV
STxAave


V-- volume unit m^3

ST-- second unit s

read more tips:
please see the link: http://www.soundonsound.com/sos/sep98/articles/acoustic_3.html


Wednesday, 25 January 2012

A diagram which shows the relationship between RF signal phase and maximum bunching of the electron beam in velocity-modulated devices.

 A diagram which shows the relationship between RF signal phase and maximum bunching of the electron beam in velocity-modulated devices.



" Applegate Diagram  "

Thursday, 17 November 2011

onload

$(document).ready(function () {
        $.fancybox({
            'width': '40%',
            'height': '40%',
            'autoScale': true,
            'transitionIn': 'fade',
            'transitionOut': 'fade',
            'type': 'iframe',
            'href': 'http://www.example.com'
        });
});
 
 
http://stackoverflow.com/questions/807271/how-to-launch-jquery-fancybox-on-page-load
 
 

Tuesday, 13 September 2011

Impact printer..

Impact printer..

"strikes a ribbon against the paper to produce character image"