Tagged Questions

9
votes
3answers
149 views

How can you detect if two regular expressions overlap in the strings they can match?

I have a container of regular expressions. I'd like to analyze them to determine if it's possible to generate a string that matches more than 1 of them. Short of writing my own regex engine with this …
8
votes
14answers
3k views

Determine if two rectangles overlap each other?

Hi folks, I am trying to write a C++ program that takes the following inputs from the user to construct rectangles (between 2 and 5): height, width, x-pos, y-pos. All of these rectangles will exist …
3
votes
4answers
415 views

How do I compare overlapping values within a row?

I seem to have a problem with this SQL query: SELECT * FROM appts WHERE timeStart >='$timeStart' AND timeEnd <='$timeEnd' AND dayappt='$boatdate' The time is formatted as military time. …
2
votes
2answers
283 views

Finding the overlapping area of two rectangles (in C#)

Edit: Simple code I used to solve the problem in case anyone is interested (thanks to Fredrik): int windowOverlap(Rectangle rect1, Rectangle rect2) { if (rect1.IntersectsWith(rect2)) …
2
votes
7answers
2k views

Need generic div css that does not overlap (like a table)

I'm trying to use divs instead of tables to style boxes around my content. The content can be any size and needs to allow the browser to be resized to any degree. Need the background color and …
2
votes
3answers
445 views

Overlapping matches in Regex

Hi, I can't seem to find an answer to this problem, and I'm wondering if one exists. Simplified example: Consider a string "nnnn", where I want to find all matches of "nn" - but also those that …
2
votes
5answers
8k views

How would you make two <div>s overlap?

I need two divs to look a bit like this: | | ---| LOGO |------------------------ | |_______________| LINKS | | CONTENT …
1
vote
1answer
96 views

How do I partition datetime intervals which overlap (Org Mode clocked time)?

I have related tasks from two Org files/subtrees where some of the clocked time overlaps. These are a manual worklog and a generated git commit log, see below. One subtree's CLOCK: entries needs to …
1
vote
3answers
251 views

How to calculate the area of multiple overlapping right-angled polygons?

I am looking for a way to calculate the common areas covered by multiple overlapping polygons. The polygons are all right-angled, if that helps makes things easier. So for example: BBBBB …
1
vote
5answers
386 views

Calculating the area(s) of a rectangle that aren’t being overlapped

I've got two rectangles represented by structures that contain the x1, y1, x2, y2 coordinates. One rectangle can be considered the parent, another the child. I already know how to detect if the child …
1
vote
3answers
129 views

Arrange labels for objects in 2D space without overlap

I need to attach text labels to objects that are spread randomly across the screen and keep moving. The default and ideal position for a label is on the right side of the object it refers to. I need …
0
votes
0answers
23 views

itextsharp table text overlapping

Hi, A website im working on creates a pdf document using itextsharp xml but for some reason when content in a table row is split between two pages the content is falling into the next column and …
0
votes
2answers
55 views

JavaScript: Trigger a function when two divs touch / overlap.

The title explains it really. How to do this? Both divs are of differing size. Both divs are moving (I'm making a little Jquery game). If one hits the other, I want stuff to happen. Thanks
0
votes
0answers
15 views

IE7 Overlapping Divs

While working to create a simple module, I ran into an issue with IE7 and its apparent desire to overlap elements. Here is my HTML code sample with CSS: <style type="text/css"> body { …
0
votes
2answers
94 views

How can i check if 2 controls overlap eachother on a canvas in WPF?

I am writing a designer that enables the user to drag controls around the screen. What would be the best way of detecting if a control is overlapping another control while i am dragging the one …

1 2 next
15 30 50 per page