Top "Size" questions

Size in computing can refer to various dimensions: size in bits, in bytes, in pixels, in memory, in disk space, etc.

How to correct delete catalina.out?

I couldn't restart Tomcat webserver. But catalina.out get very big. I have tried delete on test server and created …

java tomcat size delete-file catalina.out
SQL Azure table size

In mssql2005 when I want to get size of table in MBs, I use EXEC sp_spaceused 'table'. Is there …

azure size azure-sql-database
How to set font size of Entry in Tkinter

I am a newbie in Python and I would like to set font size in Entry widget. I tried to …

python tkinter fonts size tkinter-entry
Converting from 1Mbyte to Hex

I am having problem understanding the following text, 8088 supports 1 Mbyte of external memory. This memory space is organized from a …

binary size microprocessors
Cursor size limit in Android SQLiteDatabase

I download a db from internet. I save it in my datases folder and I open it. Inside the db …

android cursor size blob limit
In C, why is sizeof(char) 1, when 'a' is an int?

I tried printf("%d, %d\n", sizeof(char), sizeof('c')); and got 1, 4 as output. If size of a character is …

c size char int sizeof
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!

latex fonts size font-size
How do you make the area of hover in css larger

I have a list in html that I am formatting as a drop down menu in CSS, however, when I …

css menu hover size area
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 …

html css browser size pixel
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 …

c++ arrays templates size