space

Dreamweaver CS4; space to right of page

White space problem in Dreamweaver CS4 this time. I designed a page with a background image of 1024 x 1024. The page looks fine in the design window. When I preview in browser or upload to server the page has about 200 px of white space to the right. I've set the margins to '0' for the top, left, right and bottom. The space remains. N...

How to know how many words a paragraph contains using Jquery or Javascript? What function?

How to know how many words a paragraph contains using Jquery or Javascript? What function? For example, the sentence How to know how many words a paragraph contains using Jquery or Javascript? contains 13 words. How to count using Jquery or javascript? ...

Is there an elegant way to make/generate spaces instead of &nbsp?

I need to generate spaces in a HTML file. ...

MySQL query to replace spaces in a column with underscores

I have a MySQL database table 'photos' with a column 'filename'. I need to replace the spaces in the filename column values with underscores. Is it possible with a single/multiple query? If so how? ...

Windows Shell Scripting: Check for batch options containing double quotes...

Greetings, dear Experts! I want to check the existense of parameter (or argument) sting at all in my batch script: if "%*"=="" findstr "^::" "%~f0"&goto :eof This works fine if none of parameters is enclosed in double quotes. For example: test.bat par1 par2 ... --- works but test.bat "par 1" par2 ... --- fails My question are: ...

Set a path variable with spaces in the path in a Windows .cmd file or batch file

I'm new to script writing and can't get this one to work. I could if I moved the files to a path without a space in it, but I'd like it to work with the space if it could. I want to extract a bunch of Office updates to a folder with a .cmd file. To make the batch file usable on any computer, I set a path variable which I only have t...

LaTeX blank after number and before text

Hello, how could i make a blank after the number in my footnotes? In a general way, means for ALL footnotes! Thanks for helping! Example: good: 1 Hello World bad : 1Hello World ...

browser url encoding different that java's URLEncoder.encode

I have a url like this: product//excerpts?feature=picture+modes when i access this url from browser, the backend receives the request as: "product//excerpts?feature=picture+modes" At the web server end, i am using + as a separator. so feature=picture+modes means there are 2 features: picture and modes I have created and automated scri...

detect color space with openCV

how can I see the color space of my image with openCV ? I would like to be sure it is RGB, before to convert to another one using cvCvtColor() function thanks ...

Added Space Below Divs

I have a layout in which the navigation is a set of divs stacked on top of each other. Typical stoy, "It works with every browser ever except the worst ones, IE." I want it to not have any space in between the divs in IE. Here is the URL: http://www.drmsmaggio.com/ I had this problem before when I didn't declare the doctype, but that i...

DatagridView: Remove unused space ?

I was wondering whether it is possible to remove the unused space ( the gray space ) of the DataGridView control in C#. I have to make the DataGridView display the white table only. Any suggestions ? ...

Java/Graphics: Plotting 3d coordinates?

hi, I'm coding a programm, that will produce 3d coordinates for a rocket and I would like to do a rudimentally graphic output for this. it just has to be scaleable and rotationable, so that you can change the view manually. the postions should be connected by lines and it ould be nice to have spheres for earth and moon ( and perhaps ad...

jQuery 1.4 .html() problem with IE

Hi, I have a box displaying my shopping cart amount. When the customer adds a new product I make a ajax request and send back the amount of products in the cart. This looks like this: ... success: function(data) { $("#basket div a").removeClass().addClass("active").empty().html(data +' Article'); } ... I started using jQuery 1.3 ...

True tablespace size in oracle

Hello, I need to know true tablespace size in Oracle. I have some tablespace and I need to know how many space it uses now and how many space is free (and maybe percent of free space). I found in web some sqls but all of them showed size based on water mark... which is not true space allocated now but as far as I know the highest value...

Simplest way to get a complete list of all the UTF-8 whitespace characters in PHP

In PHP, what's the most elegant way to get the complete list (array of strings) of all the Unicode whitespace characters, encoded in utf8? I need that to generate test data. ...

Problems with space within parameters of a php function

Hey, Sorry for not formatting my code. the toolbar was gone... I want to insert some data into a mysql db. I've wrote a function in php: function add_ID($ID, $token) { $add = "INSERT INTO ids (ID, token) VALUES ('$ID', '$token')"; mysql_query($add); echo 'added successfully'; } if(isset($_GET['addDeviceID'])) { add_ID($_GET['...

How can I free chipmunks space?

Helo, I am using chipmunk as a physics engine in my game. The problem is I now want to free all the children and then the space itself, so I can create a new space for the new level. I tried this: cpSpaceFreeChildren(space); cpSpaceFree(space); But it does not work and fails in: cpHashSetReject(cpHashSet *set, cpHashSetRejectFunc ...

WPF: How do I disable the SystemMenu shortcut 'Alt+Space'?

I have a borderless window and created the chrome but I need to disable the 'Alt+Space' shortcut. Any thoughts? ...

CSS for hiding a HTML element, keeping its with and height?

I need a CSS snippet for hiding a HTML <div class="my"> (with quite a lot of contents, including text and other divs), but still reserving space for it. Is there something better or faster than div.my{opacity:0;}? ...

Implementing search engine into website

Hi, I want to develop a website with its own search engine. I would like to use some sort of web framework for all this development, like Django or Rails. The search would be based on vector space model (data is represented as term-by-document matrix). Everything would be running on one server, there would be no extra server for informa...