Tagged Questions
The space tag has no wiki summary.
10
votes
1answer
383 views
How to reason about space complexity in Haskell
I'm trying to find a formal way to think about the space complexity in haskell. I have found this article about the Graph Reduction (GR) technique which seems to me as a way to go. But I'm having ...
10
votes
5answers
2k views
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
8
votes
1answer
182 views
Fixing a particularly obscure Haskell space leak
So after having squeezed the last bit of performance out of some Haskell I am using to break tweet data into n-grams, I'm running up against a space leak problem. When I profile, the GC uses about ...
8
votes
4answers
299 views
Internals of Python list, access and resizing runtimes
Is Python's [] a list or array. Is the access time of an index O(1) like an array or O(n) like a list, and is appending/resizing O(1) like a list or O(n) like an array, or is it a hybrid that can ...
7
votes
6answers
1k views
Why does Windows reserve 1Gb (or 2 Gb) for its system address space?
It's a known fact that Windows applications usually have 2Gb of private addess space on a 32bit system. This space can be extended to 3Gb with the /3Gb switch.
The operating system reserves itself ...
7
votes
2answers
2k views
How to set Emacs tabs to spaces in every new file?
I would like to have an .emacs setting so that tabs are always formed by consecutive spaces. Preferably in each possible mode. In other editors it never seemed a problem, but in .emacs I'm a bit ...
6
votes
6answers
4k views
How to check space in string?
How can i check if a string contains a white space or empty space or " ".
looking for Java example.
example String = "test word";
Thanking you.
6
votes
4answers
5k views
Spaces in java execute path for OS X
On OS X, I am trying to .exec something, but when a path contains a space, it doesn't work. I've tried surrounding the path with quotes, escaping the space, and even using \u0020.
For example, this ...
5
votes
5answers
65 views
a tag taking some extra space in html
I put an image inside the a tag. but when i gave border to the image and a tag. The A tag taking some extra space. it is not surrounding the image.how to overcome those extra space by 'a' tag. i am ...
5
votes
1answer
248 views
Do NULLs take up space within postgresql indexes?
While it is readily documented that NULLs take up only 1 bit in the postgresql tuple header for the row, how much space does NULLs take up in the INDEX of a nullable column (not the tuple, but the ...
5
votes
2answers
467 views
Bash escapes tilde and wildcards but not space
(EDIT in solution with sed)
I have a list of filenames and directories, including tilde and wildcards. E.g.:
~/docs/file.*
~/my docs/*.txt
...
I read the rows and pass them to a command (e.g. ...
5
votes
3answers
2k views
How to check if text is “empty” (spaces, tabs, newlines) in Python?
How can I test if the string is empty in Python?
For example,
"<space><space><space>" is empty, so is
"<space><tab><space><newline><space>", so is
...
5
votes
6answers
4k views
Regex - Match only letters, numbers, and one space between each word
How can I create a regex expression which will match only letters and numbers, and one space between each word?
Good Examples:
Amazing
Hello Beautiful World
I am 13 years old
Bad Examples:
...
5
votes
6answers
2k views
Make a space between paragraph (x)html, css
I want space between my <p>content</p> tags. Not before and not after <p> tags. Fx my code is:
<div>
<h1>A headline</h1>
<p>Some text</p>
...
5
votes
4answers
3k views
How to show/reveal hidden or invisible characters in NetBeans?
How can you show/reveal hidden characters in NetBeans? In other editors, if this feature is turned on, a space might be shown as a small centered dot, and a tab as a right arrow. (This feature is ...
4
votes
6answers
488 views
CSS white space at bottom of page despite having both min-height and height tag
I am unable to get the white space at the bottom of this page to disappear. I have both min-height and height tags in body. Any suggestions? Thanks!
http://womancareolympia.webs.com/
4
votes
3answers
518 views
Empty space(or white space) shown in between cells in ajax fetched data fed to table in ie9 browser only,
As the title suggest, I have a table which is loaded from database. First only 15 rows are fetched. Later there is way to make it show 15 , 50 and 100 records to show using dropdown list. Which is ...
4
votes
2answers
479 views
Why the space complexity of this algorithm is O(1)
Hi all:
i read the algorithm below to find the lowest common ancestor of two nodes in a binary search tree.
/* A binary tree node has data, pointer to left child
and a pointer to right ...
4
votes
4answers
1k views
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 ...
4
votes
5answers
881 views
LaTeX blank after number and before text
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
3
votes
5answers
82 views
How exactly does space work with scanf?
I am a math student, and I'm learning the very basics in programming in C. I need a program to read an input consisting in an array, the components of which must have certain requisites; I would like ...
3
votes
3answers
91 views
Using SSH, what is the best way to remotely execute a perl file from another perl file and pass arguments that contain spaces?
Here is what I have-
A CGI script on server A gets the parameters entered in a webform, creates a remote ssh command that calls another perl file on server B and passes all parameters as arguments to ...
3
votes
4answers
73 views
Override toString to remove spaces between elements
As you know, the toString() method called on a Vector output this
[foo, bar, item, item4]
This is pretty basic but, how could I get this instead (removing white spaces between elements)?
...
3
votes
2answers
139 views
What is the difference between   and  ?
I have written one XSLT to transform xml to html. If input xml node contains only space then it inserts the space using following code.
<xsl:text> </xsl:text>
There is another ...
3
votes
4answers
189 views
What's wrong with putting spaces in $_GET variables
If I for example have my url looking like index.php?category=IT%20&%20Soft. Then i try to print "$_GET[category]" i only get "IT" and not "IT & Soft". What the hell is wrong here?It's ...
3
votes
4answers
132 views
What actually the meaning of “-n” in sed?
According to http://linux.about.com/od/commands/l/blcmdl1_sed.htm
suppress automatic printing of pattern
space
I've tested with or without -n, sed will produce same result
I dont understand ...
3
votes
3answers
209 views
VIM: Add spaces at cursor position
I would like to know if it is possible to add spaces (30 spaces) at cursor position
(I tried to do it with regex but I don't know how to represent the actual cursor position in regex.)
3
votes
1answer
279 views
How to place components beneath tabs in right oriented JTabbedPane
So I just stumbled across placement of tabs in a JTabbedPane to the right and left (i.e. setTabPlacement(JTabbedPane.RIGHT)) which I love the look of. What I need is to utilize the space this leaves ...
3
votes
2answers
418 views
HTML5 LocalStorage: How Much Space Do I Have Left?
Any idea how to check the remaining storage space in an HTML5 localstorage data store?
3
votes
2answers
363 views
Weird bug in PHP, Spaces in Paths and Windows
I've got to fix this little bug. First, let's talk about a small fact:
In CLI on Windows, you can't run a program with a space in its path, unless escaped:
C:\>a b/c.bat
'a' is not recognized as ...
3
votes
1answer
360 views
Set form input value to “” doesn't clear spaces
Recently I've been trying to implement a command line in JavaScript.
I want the space-bar to act as Enter (submit, clear command line).
In this post, let's represent a space as an underscore, so _ ...
3
votes
1answer
256 views
LaTeX: Finding width of a given text and adding a horizontal space of that width
I would like to add a white space of exactly the width of a given text. I could use \hspace{}, but then I need the width that given piece of text is going to use in my LaTeX document.
Another idea ...
3
votes
3answers
2k views
HTML pressing spacebar moves page down?
I have a problem that I'm not even sure what to search for in order to fix. When I press the spacebar my entire page moves down (I don't want this to happen). My BODY tag is styled to ...
3
votes
2answers
351 views
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 ...
3
votes
2answers
397 views
True tablespace size in oracle
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 ...
2
votes
2answers
22 views
CSS/HTML: Alignment issue in IE9 + jsFiddle
I have an odd alignment issue where an extra space is being added. Here is the code: http://jsfiddle.net/aVdGE/1/
I'm using IE9 with both my project and jsFiddle. Here is a picture of the jsFiddle ...
2
votes
2answers
57 views
How to add spaces between number and word in a string in Java?
i have a lot of string which contains also number like : LOD140IXAL COMP 1X240GG
I would like to put whitespace between numbers and word if there isn't.
the number could be every where in the string.
...
2
votes
3answers
60 views
Why the input breaks after a space character
Hello guys!
Here:
#include <stdio.h>
char* getStr( char *c ){
scanf( "%s" , c );
return c;
}
int main(){
char str[ 100 ];
getStr( str );
printf( "%s" , str );
return ...
2
votes
1answer
40 views
How to show the remaining space of the localStorage?
I'm creating a webapp which uses the localStorage.
I would like to show something like: X % is used over Y Megabytes
How to calculate that?
Regards.
2
votes
2answers
175 views
jQuery Mobile - White space when switching orientation
Having an issue with jQuery Mobile when using an iPhone. When I load the page first it loads fine but as soon as I switch orientation it adds white space to the bottom of the background image.
In the ...
2
votes
2answers
178 views
How to insert specific amount of space between listbox item in wp7?
How can I place listbox item separated from each other or leaving some space in between.
2
votes
2answers
147 views
mySql PHP - return object value with space in key
just come across something I've never came across before.
I have a value in my table "Device Vendor" and i am returning the data os an object.
usually I would call $ob->var_name but obviously ...
2
votes
1answer
223 views
How to calculate remaining space in local storage?
How do I find remaining/total space on the local storage?
Can I use StatFs for this (as in - How to Check available space on android device ? on mini sd card ?)
2
votes
4answers
269 views
Replace comma + space with “,” but not spaces without commas
I've been looking for a way to replace ", " with ",". I don't want to replace spaces when they don't have a comma in front of them e.g. " ".
Been looking for a solution but can only find replace ...
2
votes
2answers
287 views
ASP.net MVC Razor render multiple spaces in var
I am trying to add multiple spaces in my var but it get's cut down to one space or it renders out & nbsp; as is. I have tried using & nbsp; and %20 and one have any other ideas?
...
2
votes
1answer
317 views
How can I convert 3D space coordinates to 2D space coordinates?
I'm using a Lua API. I'm trying to transform 3D space coordinates to 2D space coordinates. I've asked google but I can't find anything apart from snippets using OpenGL function. I don't need source ...
2
votes
2answers
439 views
Spaces in filenames using forfiles and 7zip
I am writing a script to zip up old files, using forfiles for the looping and 7za for the zipping. I have been struggling with how to deal with spaces in the filenames, and although I have found a ...
2
votes
2answers
79 views
Why should we store log files and bin-log files on different path or disks in mysql
I have replication setup mysql databases....the log file location the bin-log file all are at one path that is default my data directory of mysql.
I have read that for better performance one should ...
2
votes
1answer
91 views
Removing the padding between inline elements
I have two span tags that contain content. The first span tag will hold content from the client and the second acts like a "blipping-cursor" (I'm using JavaScript to turn its "display" style from ...
2
votes
3answers
560 views
C++ cin input with spaces?
#include <string>
string input;
cin >> input;
The user wants to enter "Hello World". But cin fails at the space between the two words. How can I make cin take in the whole of Hello ...