Quotes help make search much faster. Example: "Practice Makes Perfect"
Showing posts with label Capacitor. Show all posts
Showing posts with label Capacitor. Show all posts
Saturday, December 15, 2012
Codecademy Sample Solution: Codeyear Tweaking Margins and Paddings
/* sample solution to style.css */
/* Layout */
body {
font:normal 12px/1.6em Arial, Helvetica, sans-serif;
color:#2a3845;
background:#ffffff;
margin: 0px;
padding: 0px;
}
p {
margin: 0px;
padding: 0px;
}
#wrapper {
margin: 0 auto;
width: 632px;
}
#nav {
background:#06a;
text-align:right;
color:#f6dde3;
padding: 10px 20px 10px 20px;
}
#header {
margin: 0px 1px 0px 1px;
}
#bg {
height:36px;
background:url('http://img840.imageshack.us/img840/9886/87926428.gif') repeat-x;
}
#main-content {
margin: 0 auto;
}
#main-image {
text-align: center;
}
#left-column {
float: left;
width: 300px;
padding: 0px 30px 0px 30px;
}
#right-column {
float: right;
width: 270px;
}
.sidebar {
background:url('http://img404.imageshack.us/img404/3092/shadowh.jpg') no-repeat top;
float: right;
margin: 0 auto;
padding: 10px 25px 10px 25px;
width: 218px;
}
#footer {
background-color:#f7f7f7;
clear:both;
padding: 10px 15px 10px 15px;
}
/* Global Styling */
a:visited, a:link {
color:#a43b55;
text-decoration:underline;
background:none;
}
a:hover {
color:#a43b55;
text-decoration:none;
background:none;
}
h1 {
color:#7a2e40;
margin:0 0 10px;
padding-bottom:10px;
font:normal 17px Georgia, serif;
border-bottom:1px solid #efece7;
}
h2 {
color:#7a2e40;
margin:20px 0 10px;
padding-bottom:10px;
font:normal 17px Georgia, serif;
border-bottom:1px solid #efece7;
}
h3 {
color:#7a2e40;
margin:10px 0;
padding-bottom:10px;
font:bold 14px Arial, Helvetica, sans-serif;
border-bottom:1px solid #efece7;
}
ul {
padding:0;
margin:0 0 0 17px;
list-style:square url('http://img525.imageshack.us/img525/1890/bulletr.gif');
}
.box {
background:#f7f7f7;
border:1px solid #f0e9eb;
padding:15px;
}
#nav a {
margin: 0 10px;
}
#nav a:visited, #nav a:link {
text-decoration:none;
color:#f6dde3;
}
#nav a:hover {
text-decoration:underline;
color:#f6dde3;
}
#logo {
margin-bottom:20px;
font:normal 18px Georgia, serif;
color:#fa7393;
}
Monday, December 10, 2012
Codeyear: Naming Your Document
<html>
<head>
<title>Whatever you like</title>
</head>
</html>
Saturday, June 16, 2012
RC Source-Free DC Response
The resistance is ohms.
The capacitance is farads.
The time constant (tau) is seconds.
The voltage function is . The capacitor is acting as a temporary voltage source.
Labels:
Capacitor,
Resistance,
Responses,
Source Free RC Circuit,
Tau,
Voltage Waveform
Friday, June 1, 2012
Question: How is maximum power transfer attained in AC circuits?
Answer:
Maximum power transfer occurs when the impedance Z is purely resistive. This is achieved by utilizing capacitors for power factor correction.
Labels:
Answers to Problems,
Capacitor,
Maximum Power Transfer,
Power
Subscribe to:
Posts (Atom)
This is an example of scrolling text using Javascript.
Popular Posts
-
//Sample Solution const gameState = {} function preload() { this.load.image('codey', 'https://s3.amazonaws.com/codecademy-...
-
//sample solution function guessNumber(number, clue) { // Prompt the user for a number using the string value of clue guess = promp...
-
//sample solution //Here is the original card object var card1 = {"suit":"clubs", "rank": 8}; //Create a...
-
#sample solution def colorful_conditions(): color = "blue" if color == "red": return "firs...
-
function checkAnswerWrongPlace(ans, realanswer){ // This method compares two input strings representing a player's guess ("an...
-
Instruction: Find the id of the flights whose distance is below average for their carrier. Sample Solution: SELECT id FROM flights AS f...
-
# note: The instructions state to use "text.txt" but an error comes up stating that the file does not exist # as a work around, ...
-
# Sample Solution # Import packages import numpy as np import pandas as pd # Read in transactions data transactions = pd.read_csv(...
-
# Sample Solution from song_data import songs import numpy as np q1 = np.quantile(songs, 0.25) #Create the variables q3 and interquarti...
-
/*sample solution for style.css*/ body > p { background: green; } p { background: yellow; }