Tagged Questions
Size in computing can refer to various dimensions: size in bits, in bytes, in pixels, in memory, in disk space, etc
63
votes
9answers
103k views
How can I get a file's size in C? [closed]
Possible Duplicate:
How do you determine the size of a file in C?
How can I find out the size of a file? I opened with an application written in C.
I would like to know the size, because I ...
51
votes
12answers
33k views
How to efficiently count the number of keys/properties of an object in JavaScript?
What's the fastest way to count the number of keys/properties of an object? It it possible to do this without iterating over the object? i.e. without doing
var count = 0;
for (k in myobj) if ...
32
votes
8answers
3k views
C programming : How does free know how much to free?
In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to ...
31
votes
13answers
7k views
How many developers are there in the world? [closed]
What is the total number of software developers in the world?
And to respond to the inevitable "How do you define a software developer?" -- I'll answer two ways:
Define it as "Anyone who writes ...
26
votes
5answers
4k views
Why are Oracle table/column/index names limited to 30 characters?
I can understand that many years ago there would be this kind of limitation, but nowadays surely this limit could easily be increased. We have naming conventions for objects, but there is always a ...
24
votes
4answers
778 views
In C, why is sizeof(char) 1, when 'a' is an int?
I tried
printf("%d, %d\n", sizeof(char), sizeof('a'));
and got 1, 4 as output. If size of a character is one, why does 'c' give me 4? I guess it's because it's an integer. So when I do char ch = ...
24
votes
2answers
2k views
23
votes
1answer
1k views
IntelliJ Idea disable font increase/decrease on CMD+scroll
I am using IntelliJ IDEA 9.0.2 on Mac OS X - with the Magic Mouse. Whenever I press the command button and move my finger a micrometer or two on the surface of the mouse, IDEA immediately increases or ...
22
votes
8answers
30k views
How can I scale an entire web page with CSS?
Using Firefox, you can enlarge an entire web page by simply pressing CTRL +. What this does is proportionally enlarge the entire web page (fonts, images, etc).
How can I replicate the same ...
21
votes
1answer
10k views
Using jQuery To Get Size of Viewport
How do I use jQuery to determine the size of the browser viewport, and to redetect this if the page is resized? I need to make an IFRAME size into this space (coming in a little on each margin).
For ...
20
votes
4answers
6k views
how to add multiple widgets in one app?
I've just finished my Android widget. Now I need to have different sizes of this wiget for the user to choose from. for example I need a medium, small and large size widget. so when the user install ...
20
votes
2answers
5k views
std::string length() and size() member functions
I was reading the answers for this question and found that there is actually method called length() for strings (I always used size()). Is there any specific reason for having this method in string ...
17
votes
7answers
563 views
Commonly used pixel sizes for webpages and their pros/cons
What are the most commonly used pixel sizes (primarily widths) and what are there advantages and disadvantages?
How can I best find a happy medium to give a good experience to people with a wide ...
16
votes
4answers
1k views
Can someone explain this template code that gives me the size of an array?
template<typename T, size_t n>
size_t array_size(const T (&)[n])
{
return n;
}
The part that I don't get is the parameters for this template function. What happens with the array when ...
14
votes
4answers
5k views
Calculating usage of localStorage space
I am creating an app using the Bespin editor and HTML5's localStorage. It stores all files locally and helps with grammar, uses JSLint and some other parsers for CSS and HTML to aid the user.
I want ...
14
votes
5answers
6k views
Change font size of UISegmentedControl
Can anyone please tell me how can I change the font type and size of UISegmentedControl?
Thanks,
Aashutosh
14
votes
4answers
6k views
UITableView flexible/dynamic heightForRowAtIndexPath
Case
Normally you would use the cellForRowAtIndexPath delegate method to setup your cell. The information set for the cell is important for how the cell is drawn and what the size will be.
...
14
votes
7answers
4k views
C pointers : pointing to an array of fixed size
This question goes out to the C gurus out there:
In C, it is possible to declare a pointer as follows:
char (* p)[10];
.. which basically states that this pointer points to an array of 10 chars. ...
14
votes
4answers
8k views
WPF/Silverlight XAML Stretch Text Size to Fit container?
I've just started to play with WPF.
Is it possible to have the size of the text of a Label or TextBlock size itself to fill it's parent container?
Thanks,
Mark
13
votes
7answers
794 views
Why aren't arrays expandable?
When we create an array, we cannot change its size; it's fixed. OK, seems nice, we can create a new bigger array and copy the values one by one and that's little slow. What's the technical background ...
13
votes
5answers
1k views
Max length of an openID
I'm planning to add openid support for a web application I'm building. I can't seem to find the maximum length of a valid openid so I can store it in my database. I've seen some vague references to ...
12
votes
4answers
303 views
Is there an easy way to tell if a class/struct has no data members?
Hallo,
is there some easy way in C++ to tell (in compile-time) if a class/struct has no data members?
E.g. struct T{};
My first thought was to compare sizeof(T)==0, but this always seems to be at ...
12
votes
1answer
1k views
Android status bar expects icons of size 25x25dp while guidelines recommend 32x32dp. Who is wrong?
According to android icon design guidelines (here, see table #1), developer needs to provide status bar icons of next sizes:
Status Bar 24 x 24 px (LDPI) 32 x 32 px (MDPI) 48 x 48 px (HDPI)
...
12
votes
5answers
5k views
Calculating a directory size using Python?
Before i re-invent this particular wheel, has anybody got a nice routine for calculating the size of a directory using Python? It would be very nice if the routine would format the size nicely in ...
11
votes
3answers
353 views
Java heap size not entirely used
I'm currently monitoring my running java application with Visual VM: http://visualvm.java.net/
I'm stressing the memory usage by with -Xmx128m.
When running I see the heap size increasing to 128m ...
11
votes
8answers
351 views
C/C++ getting struct size
Today, with my great surprise, I discovered that
When the sizeof operator is applied to a class, struct, or union type, the result is the number of bytes in an object of that type, plus any ...
11
votes
1answer
780 views
Why do my CouchDB databases grow so fast?
I was wondering why my CouchDB database was growing to fast so I wrote a little test script. This script changes an attributed of a CouchDB document 1200 times and takes the size of the database after ...
11
votes
3answers
5k views
C# FileStream : Optimal buffer size for writing large files?
Suppose I'm writing a couple of files to disk, between 2MB and 5GB.
What are sensible buffer values for the FileStream ?
Is it sensible to work with buffersizes of several megabytes, or should I ...
11
votes
11answers
4k views
GCC C++ “Hello World” program -> .exe is 500kb big when compiled on Windows. How can I reduce its size?
I just recently started learning C++ - I am using nuwen's version of MingW on Windows, using NetBeans as an IDE (I have also MSDN AA Version of MSVC 2008, though I don't use it very often).
When ...
11
votes
8answers
8k views
Determine the size of a block device
How can I find out the size of a block device, such as /dev/sda? Running ls -l gives no useful information.
11
votes
6answers
5k views
How Big can a Python Array Get?
In Python,
how big can an array/list get? I need an array about 12000 elements large... is that okay? - will I still be able to run array/list methods such as sorting, etc?
Thanks so much,
Ed
11
votes
4answers
6k views
Filling Browser Window with Silverlight Application
I want my Silverlight app to fill the entire browser window. I've set the plugin object width and height to 100%, and set my LayoutRoot container's height and width to Auto, but still no luck. Any ...
10
votes
1answer
239 views
Delphi XE2: empty application weighs 7 Mb
Why does it happen?
An empty project (application, *.exe) size is 7 Mb, why?
10
votes
2answers
77 views
Smarty Modifier filesize
I am using Smarty and one of my section shows file names, including dates, file size, last access etc...
I want to display the size of the file in K if less then 1024, in Mb if less than 1048576 ...
10
votes
2answers
150 views
Total memory used by Java process and heap size
I wrote an application using Spring Batch. I can see with VisualVM that the heap size is about 22 MB. But, when I use Process Explorer (on Windows) to see how much memory is used by it, the difference ...
10
votes
1answer
294 views
SVG draws outside canvas boundary in Internet Explorer 9
I am using the Raphael Javascript library to do some rudimentary drawing for a web page. I am just drawing some lines that radiate out from a point. In Chrome, Firefox, and Opera, these lines are ...
10
votes
2answers
940 views
scala mailbox size limit
I can see that scala can solve the Producer-Consumer problem using actors. There is a couple of examples on the web but what is worrying me is the unlimited growth of an actor's mailbox.
Suppose the ...
10
votes
3answers
10k views
increase the java heap size permanently?
Is there a way that I can set the default heap size for the jvm on my own computer? I want to set it to 1g, because I'm always running custom programs that always hit the overage point in the default ...
10
votes
8answers
3k views
size() Vs empty() in vector - why empty() is preferred?
While debugging something, I saw the STL vector::empty() implementation:
bool empty() const
{return (size() == 0); }
I believe, whenever we are probing the emptiness of vector it is always ...
9
votes
1answer
197 views
What is the size of a bool in PHP?
What is the size of a bool in PHP?
For an int, it's easy to determine
echo PHP_INT_SIZE;
I got 4 so 8 bytes or 32 bits. What about for a bool type? Thanks.
9
votes
5answers
284 views
Why are generated binaries so large?
Why are the binaries that are generated when I compile my C++ programs so large (as in easily 10 times the size of the source code files)? What advantages does this offer over interpreted languages ...
9
votes
5answers
462 views
How big is too big for a mysql table?
I was finally convinced to put my smaller tables into one large one, but exactly how big is too big for a mysql table? I have a table with 18 fields: Some are TEXT, some are short VARCHAR(16), others ...
9
votes
4answers
274 views
Warn the user a file is too big before the upload
To increase user experience, I would like to warn the user that the file is too big (let's say > 8M) before sending the whole file (which may take some time due to the size and the client connection). ...
9
votes
1answer
1k views
Why Find and Replace window is so Wide in Visual Studio 2010?
Good afternoon
is there anyone who noticed that Find and Replace window each time is getting wider when coding and compiling?
Even when I resize this window in Visual Studio 2010, it gets wider ...
9
votes
3answers
19k views
Java JTable setting Column Width
I have a JTable in which i set the column sized like following,
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
table.getColumnModel().getColumn(0).setPreferredWidth(27);
...
9
votes
2answers
11k views
how to set LaTeX font size in millimeter?
I need to set the font size in millimeters in my LaTeX document. how can I do that?
thank you!
8
votes
3answers
258 views
Bit Size of GHC's Int Type
Why is GHC's Int type not guaranteed to use exactly 32 bits of precision? This document claim it has at least 30-bit signed precision. Is it somehow related to fitting Maybe Int or similar into ...
8
votes
4answers
234 views
c++ passing arguments by reference and pointer
in c++
class bar
{
int i;
char b;
float d;
};
void foo ( bar arg );
void foo ( bar &arg );
void foo ( bar *arg );
this is a sample class/struct and functions
i have some Qs
...
8
votes
3answers
4k views
Android: how to increase heap size at runtime?
I have an image cache in my application which is implemented using SoftReferences. Dalvik starts applications with relatively small heap, and then increases it in case of demand. But I'd like to have ...
7
votes
4answers
127 views
Does clearing a vector affect its capacity?
I instantiate an std::vector foo(1000).
foo.size() is now 1000 and foo.capacity() is also 1000.
If I clear the vector with foo.clear(), the size() is now 0, but what is the capacity()? Does the ...