How do you fix holes on a bedroom door?
It depends on the size of the hole, the type of door, and the finish on the door. Small holes could be filled with color putty or spackle. Larger holes may require auto body filler. Extremely large holes may require slab replacement.
Why do people live in mud huts?
because they are to lazy to get of their sofas and stop watching 90210 on their 42" flat screen tv's to build anything better. Even if they did get up they wouldnt have enough money to build anything as they spent it all on there tv!!!
Can you put tongue and groove on to concrete floor?
It's always best to follow the manufacturer's recommendations but in general, solid tongue and groove hardwood flooring should not be installed on concrete. Many of the laminated tongue and groove pre-finished products can be glued down to a concrete slab.
Actually (I am simply improving this question I didnt want to delete the first response) I manufacture hardwood floors, If you are installing floors in a basement the question should be if the floor is solid or engineered. Typically solid wood flooring should not be installed in a basement because the sub-terrain environment is more susceptible to humidity. The moisture then causes the floors to warp. Engineered wood, however is recommended for basements and they often come as tongue and groove.
See : Related Links
George Washington's closet... no, really it is from the cherry tree. Cherry trees come in several varieties and grow throughout the U. S. but most easily in climates with noticeable seasons. The fruit bearing tree needs a little cold weather to thrive. Cherry trees produce beautiful hardwood but the trees do not grow very big and some varieties are quite knarled so a long, straight, wide cherry board is unlikely. That is why most of this wood is used for things like chair spindles.
If a deck is 18 ft long by 10 ft wide what is the linear feet?
Hmmmm, the answer depends on what you mean by "what is the linear feet?". Linear feet is a straight measurement, which in this case is 18 ft long by 10 ft wide. If you are trying to find the perimeter (the distance around the deck) add the length and the width and multiply by 2: (18 + 10)x2 = 56 ft around. If what you want is the area (the space of the surface of the deck), multiply the length by the width: 18 x 10 = 180 sq ft.
How does heat affect caulking?
What type of caulking as lead caulking expands when heater other laytex shrinks PLEASE be more discriptive
yes
What is the average length of a shower in the US?
I would say at least 45 minutes. MAybe a hour or so.
185 centimetres = 6.0695538058 feet (I would settle for 6.07 feet)
Why is a tall building called a skyscraper?
Because the building is built so high, that it can touch the sky, thus giving it the name SKY SCRAPER.
Will a twin size box spring fit a queen?
Your question is missing one key element: a queen what?
If you are trying to place a queen mattress on a twin-sized box spring, the answer is a definite no.
If you'd like to use a queen sized headboard with a twin box spring, the answer is "probably", with some modifications. Depending upon the construction of the headboard, and whether or not it can rely upon a nearby wall for support, you can use a headboard you love with an existing bed, even if the sizes aren't exactly the same. You can remove non-decorative legs from the headboard and hang it on the wall at the head of the bed, like a piece of art. You can attach the headboard as intended to the bed frame and disguise the exposed legs with an extension of the bed skirt, or paint them to match the wall. You can use the headboard along the long side of the twin bed, as the back to a daybed arrangement.
If, however, you are considering using a twin-sized box spring on a queen-sized bed frame, you will have to discover whether or not the frame is made to be adjustable, and, if not, you'll need to install some sort of supportive decking material into the frame, for the box spring to set upon. This arrangement will leave dangerous exposed corners sticking out beyond the mattress, which have to be dealt with, perhaps with a padded cover all around the frame. My advice would be to skip all this retrofit effort, and purchase a new bed frame to fit your box spring. They are generally less than $100.
What is the price difference between quartz and granite countertops?
Quartz is usually a little more expensive than granite. Quartz is harder than granite and less likely to ship or stain, though I have had granite for over a year now in my kitchen and love it!
The height of a refrigerator is about 2?
Most are about 65-70 inches high. There doesn't seem to be a standard.
In what year was wallpaper invented and why?
wallpaper was invented during the reinassance so u can find the date on another website thanks have a nice day
What is a roommate floor plan?
Roommate plans are where the bedrooms are not next to each other. They are normally on opposite sides of the apt/home for maximum privacy.
Oak wood is used for flooring, cabinets, furniture, pallets, firewood, and everywhere a strong attractive wood is required.
Design a State machine for Traffic Control at a Four point Junction?
/************************************************************** * This is main module for state machine of TrafficLight **************************************************************/ module TrafficLight(state, RedLight, GreenLight, YellowLight, clk, reset, malfunction, ready); input clk, reset, ready; //ready is high when maintenance of TrafficLight finished input malfunction; //system input malfunction when error occured output [1:0] state; output RedLight,GreenLight,YellowLight; //active-high output for Lights reg [1:0] state; //register to store current state reg RedLight,GreenLight,YellowLight; //define parameter or name of each state parameter redstate = 2'b00; parameter greenstate = 2'b01; parameter yellowstate = 2'b10; parameter maintenance = 2'b11; always@ (posedge reset or posedge clk) begin RedLight = (!state[1] & !state[0]); GreenLight = (!state[1] & state[0]); YellowLight = (state[1] & !state[0]); if(reset) begin state = redstate; //default state is RedLight on end else case(state) redstate: begin if(malfunction) state = maintenance; else state = greenstate; end greenstate: begin if(malfunction) state = maintenance; else state = yellowstate; end yellowstate: begin if(malfunction) state = maintenance; else state = redstate; end maintenance: begin if(ready) state = redstate; else state = maintenance; end endcase end endmodule /************************************************************** * This module is for testing and display outputs. **************************************************************/ module test_module; // declare test module reg clk, reset, malfunction, ready; wire [1:0] state; wire RedLight, GreenLight, YellowLight; parameter clockDelay = 50; TrafficLight myTrafficLight(state, RedLight, GreenLight, YellowLight, clk, reset, malfunction, ready); always begin #(clockDelay/2) clk = 0; #(clockDelay/2) clk = 1; end initial begin //$dumpfile("Trafficlight.dump"); //$dumpvars; $monitor ("stat= %b, RedLight = %b, Green = %b, YellowLight = %b",state, RedLight, GreenLight, YellowLight); $shm_open("db1.shm"); // Open a directory to store waveforms $shm_probe(state, RedLight, GreenLight, YellowLight, reset, malfunction, ready); // Specify any signals you want waveforms for #(clockDelay) reset = 1'b1; #(clockDelay) reset = 1'b0; #(clockDelay) malfunction = 1'b1; #(clockDelay) reset = 1'b0; #(clockDelay) malfunction = 1'b0; #(clockDelay) #(clockDelay) #(clockDelay) ready = 1'b1; #(clockDelay) ready = 1'b0; #(clockDelay) #(clockDelay) #(clockDelay) #(clockDelay) reset = 1'b1; #(clockDelay) reset = 1'b0; #(clockDelay) #(clockDelay) malfunction = 1'b1; #(clockDelay) malfunction = 1'b0; #(clockDelay) #(clockDelay) #(clockDelay) ready = 1'b1; #(clockDelay) ready = 1'b0; #(80*clockDelay) $finish; end endmodule
This calculation is simple geometry:
To figure the area for either the floor or ceiling surface, simply multiply the length of the room by the width (16' wide x 24' long = 384 square feet).
If you require the square footage of the wall surfaces, you turn your calculations vertically; that is, two walls measure (16' wide x 8' high = 128 square feet) each, and two walls measure (24'w x 8'h = 192 ft2) each. Notice the abbreviations in that last formula.
Added together, the total area of all four wallsis (128 x 2) + (192 x 2) = (256 + 384) = 640 ft2.
Add the wall total to the total area of the floor and ceiling to calculate the total area of all six surfaces in the room. That can be written as (384 x 2) + 640 = (768 + 640) = 1408 ft2.
What does a 1 on 2 pitch mean in terms of a roof?
In general, talking about roof pitch, I have never heard or read about this term being used. Roof pitch is measured when you start at the leading edge of a roof and measure
towards the center of the house too 12 feet. Pitch is measured from a imaginary
parallel level line at the 12 foot mark, how many feet high the roof is at 12 feet is the pitch of a roof. If your roof is at 4 feet high at the 12 foot mark then the phrase would be- a 4/12 pitch.
How many one-eighth of an inch are in 8 inches?
Well, there are 8 one-eighths in an inch. So in 8 inches there are 8*8 one-eighths = 64
Will a queen size goose down duvet fit into a twin size duvet cover?
Well, you could put in in there, but it will not lay flat. The queen sized comforter will be at least 20 inches wider than a twin. The length would be approximately the same.