Tagged Questions
A CSS property which governs what happens if content overflows it's containing box
54
votes
7answers
3k views
CSS: Truncate table cells, but fit as much as possible
Meet Fred. He's a table:
<table border="1" style="width: 100%;">
<tr>
<td>This cells has more content</td>
<td>Less content here</td>
...
27
votes
3answers
4k views
Why do C++ streams use char instead of unsigned char?
I've always wondered why the C++ Standard library has instantiated basic_[io]stream and all its variants using the char type instead of the unsigned char type. char means (depending on whether it is ...
20
votes
13answers
1k views
Why would you want an integer overflow to occur?
In this question the topic is how to make VS check for an arithmetic overflow in C# and throw an Exception: C# Overflow not working?
One of the comments stated something weird and got upvoted much, I ...
18
votes
4answers
755 views
Why [float.MaxValue == float.MaxValue + 1] does return true?
I wonder if you could explain the Overflow in floating-point types.
float.MaxValue == float.MaxValue + 1 // returns true
18
votes
8answers
11k views
Stack overflows from deep recursion in Java?
After some experience with functional languages, I'm starting to use recursion more in Java - But the language seems to have a relatively shallow call stack of about 1000.
Is there a way to make the ...
17
votes
4answers
15k views
CSS Max Height Property
Is there a good cross-browser way to set a max-height property of a DIV and when that DIV goes beyond the max-height, it turns into an overflow with scroll bars?
16
votes
2answers
16k views
IE6 + IE7 CSS problem with overflow: hidden; - position: relative; combo
So I have created a slider for a homepage, that slides some images with a title and teaser text using jQuery. Everything works fine, and I went to check IE and found that IE 6 and 7 kills my slider ...
15
votes
5answers
283 views
Does INT_MIN % -1 produce undefined behavior?
gcc generates floating code that raises SIGFPE for the following code:
#include <limits.h>
int x = -1;
int main()
{
return INT_MIN % x;
}
However I can find no statement in the standard ...
14
votes
3answers
322 views
How to find (all) integer overflows in a C program?
I am working on a large project that generally works just fine, but shows serious issues once the input data size exceeds some limitations.
These issues are (suspected) only due to signed integer ...
14
votes
4answers
7k views
CSS: How to have position:absolute div inside a position:relative div not be cropped by an overflow:hidden on a container
I have 3 levels of div:
(In green below) A top level div with overflow: hidden. This is because I want some content (not shown here) inside that box to cropped if it exceeds the size of the box.
(In ...
14
votes
5answers
1k views
No overflow exception for int in C#?
I had this weird experience with problem number 10 on Project Euler (great site by the way). The assignment was to calculate the sum of all the prime numbers below two million.
I used an int for the ...
13
votes
4answers
8k views
Jquery - Check: If scrollbar visible (div with overflow:auto)
is it possible to check the overflow:auto from a div?
for example
HTML
<div id="my_div" style="width: 100px; height:100px; overflow:auto;" class="my_class">
* content
</div>
JQUERY
...
13
votes
9answers
4k views
How to detect possible / potential stack overflow problems in a c / c++ program?
Is there a standard way to see how much stack space your app has and what the highest watermark for stack usage is during a run?
Also in the dreaded case of actual overflow what happens?
Does it ...
12
votes
4answers
142 views
CSS “overflow” culls “background-color”
I'm trying to style blocks of code for a website. The container div is set to overflow both vertically and horizontally. The problem is when it overflows horizontally, the zebra-striped ...
12
votes
5answers
3k views
Check whether HTML element has scrollbars
What's the fastest way of checking whether an element has scroll bars?
One thing of course is checking whether element is larger than its viewport, which can easily be done by checking these two ...
12
votes
13answers
933 views
Average function without overflow exception
.NET Framework 3.5.
I'm trying to calculate the average of some pretty large numbers.
For instance:
using System;
using System.Linq;
class Program
{
static void Main(string[] args)
{
...
10
votes
3answers
210 views
Type of integer literals not int by default?
I just answered this question, which asked why iterating until 10 billion in a for loop takes so much longer (the OP actually aborted it after 10 mins) than iterating until 1 billion:
for (i = 0; i ...
10
votes
4answers
400 views
Know what overflow:hidden has hidden
I wat to know if there is any way you can call and use what the overflow:hidden has well hidden.
To clarify what I mean, in this example I would like to know that "This is hidden" is the hidden part ...
10
votes
1answer
479 views
C# Overflow not Working? How to enable Overflow Checking?
I was working around with C# and noticed that when I had a very large integer and attempted to make it larger. Rather that throwing some type of overflow error, it simply set the number to the lowest ...
10
votes
5answers
925 views
Java Integer: what is faster comparison or subtraction?
I've found that java.lang.Integer implementation of compareTo method looks as follows:
public int compareTo(Integer anotherInteger) {
int thisVal = this.value;
int anotherVal = anotherInteger.value;
...
10
votes
8answers
977 views
How can I check if multiplying two numbers in Java will cause an overflow?
I want to handle the special case where multiplying two numbers together causes an overflow. The code looks something like this:
int a = 20;
long b = 30;
// if a or b are big enough, this result ...
10
votes
2answers
938 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 ...
9
votes
4answers
307 views
C: avoiding overflows when working with big numbers
I've implemented some sorting algorithms (to sort integers) in C, carefully using uint64_t to store anything which has got to do with the data size (thus also counters and stuff), since the algorithms ...
9
votes
5answers
196 views
python and overflowing byte?
I need to make a variable with similar behaviour like in C lanquage.
I need byte or unsigned char with range 0-255.
This variable should overflow, that means...
myVar = 255
myVar += 1
print myVar ...
9
votes
4answers
1k views
How do I detect overflow while multiplying two 2's complement integers?
I want to multiply two numbers, and detect if there was an overflow. What is the simplest way to do that?
9
votes
4answers
859 views
Windows: avoid pushing full x86 context on stack
I have implemented PARLANSE, a language under MS Windows that uses cactus stacks to implement parallel programs. The stack chunks are allocated on a per-function
basis and are just the right size to ...
9
votes
3answers
4k views
Overflow to left instead of right
I have a div with overflow:hidden, inside which I show a phone number as the user types it. The text inside the div is aligned to right and incoming characters are added to right as the text grows to ...
8
votes
5answers
137 views
On integer multiplication, overflow, and information loss
I'm reading through Chapter 3 of Joshua Bloch's Effective Java. In Item 8: Always override hashCode when you override equals, the author uses the following combining step in his hashing function:
...
8
votes
3answers
161 views
How to judge an overflow when adding signed to unsigned
I'm trying to detect the overflow when adding a signed offset to an unsigned position
uint32 position;
int32 offset; // it could be negative
uint32 position = position+offset;
How can I check ...
8
votes
3answers
189 views
How do I make an image start at the bottom of it's container?
I have a tall image inside a short container with overflow: hidden;. The bottom of the image is cut off. How do I make the top get cut off instead of the bottom?
8
votes
3answers
124 views
What do you do when your primary key overflows?
We have a table, with an auto-increment int primary key, whose max value is now at the limit for the T-SQL int type. When we try to re-seed the table (because there are large gaps in the keys, nowhere ...
8
votes
2answers
750 views
LINQ to SQL Conversion Overflows
I'm really stuck on this one. I have an extensive background in SQL, but I just started a new job and they prefer to use LINQ for simple queries.
So in the spirit of learning, I tried to re-write ...
8
votes
3answers
494 views
How can I make text appear on next line instead of overflowing?
I have a fixed width div on my page that contains text. When I enter a long string of letters it overflows. I don't want to hide overflow I want to display the overflow on a new line, see below:
...
8
votes
4answers
139 views
Why won't int variable come before char array in terms of addressing no matter how I code it in C?
I'm reading Hacking: The Art of Exploitation (2nd Edition), and I'm currently on the section about buffer overflows.
In the first example, the variables are declared/initialized in this order:
int ...
8
votes
4answers
1k views
Best way to handle Integer overflow in C#?
Handling integer overflow is a common task, but what's the best way to handle it in C#? Is there some syntactic sugar to make it simpler than with other languages? Or is this really the best way?
int ...
7
votes
1answer
281 views
disabling bouncy scrolling only for html but maintaining for elements with overflow:scroll
I am creating a full screen web app which will have some modules/widgets which make use of the new iOS 5 overflow:scroll features.
What I want is to disable that 'bouncy' effect when scrolling the ...
7
votes
3answers
162 views
How do promotion rules work when the signedness on either side of a binary operator differ?
Consider the following programs:
// http://ideone.com/4I0dT
#include <limits>
#include <iostream>
int main()
{
int max = std::numeric_limits<int>::max();
unsigned int one = ...
7
votes
1answer
122 views
Can overflow:hidden affect layout?
There's no way for me to explain this except to refer to the following example on JS Fiddle- in it, the last BLUE box does not extend to 100% of the width as expected after I introduce an ...
7
votes
3answers
137 views
Overflow in bit fields
can I trust that the C compiler does modulo 2^n each time I access a bit field?
Or is there any compiler/optimisation where a code like the one below would not print out Overflow?
struct {
uint8_t ...
7
votes
4answers
644 views
C# creating buffer overflow
I'm trying to create a buffer overflow with C# for a school project:
unsafe
{
fixed (char* ptr_str = new char[6] {'H', 'a', 'l', 'l', 'o', ','})
{
fixed (char* ptr_str2 = new char[6] ...
7
votes
3answers
682 views
CSS: Why is vertical-align: baseline stop working on Firefox when using overflow: hidden?
You can reproduce this by running this test case. The results are shown in the screenshot below. The issue is that on Firefox, when adding a overflow: hidden on the "block" (with grey background in ...
7
votes
6answers
510 views
Example of a buffer overflow leading to a security leak
I read many articles about unsafe functions like strcpy, memcpy, etc. which may lead to security problems when processing external data, like the content of a file or data coming from sockets. This ...
7
votes
6answers
362 views
What's a buffer?
As far as my understanding of languages goes, a buffer is any portion of memory in which a data is stored like an int,float variables, character arrays etc.
However, I was reading buffer overflows and ...
7
votes
8answers
2k views
How does Java handle integer underflows and overflows and how would you check for it?
How does Java handle integer underflows and overflows?
Leading on from that, how would you check/test that this is occurring?
7
votes
4answers
2k views
Checking for underflow/overflow in C++?
Is there a general way to check for an overflow or an underflow of a given data type (uint32, int etc.)?
I am doing something like this:
uint32 a,b,c;
... //initialize a,b,c
if(b < c) {
a -= ...
7
votes
1answer
3k views
Silverlight: Canvas overflows
I have created a Canvas, and within it I placed a StackPanel. The StackPanel is horizontal, and it accepts a list of thumbnailed images. The Canvas has a fixed size. When I put more thumbnails than ...
6
votes
4answers
107 views
Permutation with Repetition: Avoiding Overflow
Background:
Given n balls such that:
'a' balls are of colour GREEN
'b' balls are of colour BLUE
'c' balls are of colour RED
...
(of course a + b + c + ... = n)
The number of permutations in which ...
6
votes
1answer
176 views
Need to exploit buffer overflow. Can't figure out how to uncorrupt the stack after executing exploit code?
Basically the function I am exploiting is this:
int getbufn()
{
char buf[512];
Gets(buf);
return 1;
}
When I run the main program the function executes 5 times and each time the ...
6
votes
3answers
142 views
Why does my program not overflow the stack when I allocate a 11MB char array while the stack upper limit is 10MB?
I have two simple C++ programs and two questions here. I'm working in CentOS 5.2 and my dev environment is as follows:
g++ (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50)
"ulimit -s" output: 10240 ...
6
votes
5answers
113 views
Reversing multiplication operation that has overflowed
Given the code:
uint Function(uint value)
{
return value * 0x123456D;
}
Inputting the value 0x300 yields the result 0x69D04700. This is only the lower 32 bits of the result.
Given the result ...