|
Doing a rewire at the mo where customer has requested down lighters to be fitted.
Above the room is an empty loft space but leads to a room.
Do fire rated spots still need to be fitted or are non standard fittings ok?
Where can i get info on this? I always...
Started by egginyourface on
, 13 posts
by 7 people.
Answer Snippets (Read the full thread at electriciansforums):
When you say no dwelling above do you mean a separate flat? As this place is a bungalow with a loft space....
It's a single dwelling without a dwelling above difference in price after all.
But now I'm here I'll play the game.
Rated down lights.
|
|
Have my calories set at 1450 for 1lb a week weight loss and my BMR is 1241 according to fat2fitradio.com using their miltary body fat % calculator.
So I should eat back my exercise calories to ensure my net calories are over 1241, yes?
I know there are...
Answer Snippets (Read the full thread at myfitnesspal):
To find....
Edited the Cunningham formula.
You don't have to eat back all your exercise calories but the common advice is to eat back enough to have a net above BMR.
Net above your BMR.
Eat above your BMR, below your TDEE.
Metabolism.
|
|
How can I put a question mark above a less-than-or-equal-to symbol( \leq ) in LaTeX?
Started by Mike on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
When you say 'question mark above \leq' do you mean a custom accent symbol? Or just a question mark above the \leq?
The latex docs have a section on accent symbols which may be useful, but don't.
|
Ask your Facebook Friends
|
I am trying to user header() to direct to a page above the document root. I'm running XAMPP so I'm trying to call a script above htdocs.
My problem is it gives me the 404 error and can't find the document.
My question: can you use header() to call a script...
Answer Snippets (Read the full thread at stackoverflow):
The reason you put all the password files above use header to redirect to anything ....
You want to use an include in a file below the root .
Anything above the document root does not have a URL, so therefore it is impossible.
No you can't.
|
|
I've tried setting the zIndex for my OBJECT and it seems that I cannot place any content above it. Is this an IE issue? Any workarounds? I'm trying to display a lightbox type dialog directly above the OBJECT.
Started by Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
More information on the IFrame Shim....
Try adding this parameter to the object:
<param name="wmode" value="transparent" />
Since you've specified that it wasn't flash, the other way to fix this problem is by using a technique known as an IFrame Shim .
|
|
If I have a Winforms control, is it possible to tell if there are windows (from any application) above it? Basically, I need to know what parts of my control are actually visible on screen.
Started by NotDan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Having said that, either of the two techniques above would work - I think I'd prefer.
Focus.
|
|
Are there good tools to detect dead code in DELPHI2007 or above? That can integrate with the IDE? The option to look at blue dots is just time consuming, so it’s ruled out.
Started by Jlouro on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
But if you want to optimize functions and procedures and look for bottlenecks and leaks, then AQtime may be a good tool or the less complex and free SamplingProfiler... .
I don't know a better way to detect dead code (Delphi does a fairly good job itself?!) .
|
|
Is it possible to make JavaScript retrieve a file that is above the web root?
function sendurl(url) { if(document.images){ (new Image()).src="../recieve_url.php?url="+url; } return true; }
Started by Mark on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Whether or not such a directory traversal attack is possible has absolutely nothing... .
By definition, web servers do not normally serve anything behind the main document root .
JavaScript is able to retrieve whatever the web server is capable of serving .
|
|
For example, I want to inherit from a class in a file that lies in a directory above the current one.
Is it possible to relatively import that file?
thanks!
Answer Snippets (Read the full thread at stackoverflow):
When a module or package is contained within another package it is possible to ... .
Inside a package hierarchy, use 2 dots, as the import statement doc says:
When specifying what module to import you do not have to specify the absolute name of the module .
|
|
I want to copy the line above the cursor, but just from the current column to the end of that line.
Here's an illustration:
This was my attempt, but it doesn't work so well :-(
(defun dupchar() (save-excursion (line-move (-1) nil nil nil) (setq mychar...
Started by leedit on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
(defun dupchar () (interactive) (let ((char-above (save-excursion (line-move -1) (following-char)))) (unless (eq char-above ?\n) (insert char-above)))) (define-key global-map () (interactive) (let ((line-....
Try something like this.
|