1
vote
5answers
82 views
How would you use AGILE here?
I am a big proponent of agile, but a friend of mine (who doesn't know agile yet - hes a managerial type ^^) asked me how I would go about planning and developing a complex distribu …
1
vote
2answers
66 views
Testing complex datatypes?
What's are some ways of testing complex data types such as video, images, music, etc. I'm using TDD and wonder are there alternatives to "gold file" testing for rendering algorithm …
0
votes
4answers
77 views
Need help to modify this complex regular expression
Hi,
I am using ExtJS. One of the textfield made with ExtJS component should allow comma separated number/opeator strings (3 similar examples) like
1, 2-3, 4..5, <6, <=7, > …
1
vote
2answers
48 views
achieving a complex sort via Linq to Objects
I've been asked to apply conditional sorting to a data set and I'm trying to figure out how to achieve this via LINQ. In this particular domain, purchase orders can be marked as …
3
votes
2answers
113 views
Why is complex<double> * int not defined in C++?
The C++ program
#include <complex>
#include <iostream>
int main()
{
std::complex<double> z(0,2);
int n = 3;
std::cout << z * n << std::endl;
} …
0
votes
4answers
66 views
Iterators at critical logic
In a recent interview one peculiar question has been asked
a[]= { 1,2,3,4,5,6,7,8,9,10}
When an array is given with specified starting index i have to iterate it till i traverse …
1
vote
2answers
43 views
How complex an object can be passed to silverlight from server, using WCF?
hello,
Please note that my experience in Silverlight/.Net and WCF is about two weeks of googling and deciphering tutorials. I need to attempt and provide feedback to a client on if …
0
votes
2answers
163 views
Rails named routes using complex parameter names
I need to create a pretty route for an action that is expecting ugly nested parameter names (this is set and not something I can change at this time).
So instead of
http://domain …
-4
votes
3answers
189 views
Beginner Java working with complex numbers [closed]
I need to write a ComplexNumber class with:
(1) a constructor which does not take any parameters (where the default value of a complex number should be 0 + 0i in this case.)
…
0
votes
2answers
88 views
CSE 214 , Java, complex number help
This is a CSE homework, I was hoping there might be some friendly guys and gals out there that might take a quick look and see if it looks good to turn in, thanks Y'all.
Here are …
0
votes
3answers
171 views
Hibernate Self Join
Background
I have a table with columns id, imageId, propertyId.
There could be many images associated with a single property and there could be many properties associated with a …
1
vote
4answers
163 views
Excel 2003 Charting: Chart Data Too Complex
I have written a macro in excel 2007 to log water-level readings. Once logged, it automatically charts the data for each of the 30 wells. However, when the workbook is opened in Ex …
0
votes
0answers
19 views
(Rails) Visually representing multitiered complex queries…?
Hi All,
So I have a bit of a problem. I need to set up dynamic queries with a particular group of "entities" in Rails. And I need multiple levels for each item. Basically this …
0
votes
4answers
203 views
Alternative to Complex.h in Visual Studio
I know very little about VS, and was surprised when my linux code did not compile on windows. The problem seams from the lack of <complex.h> in VS. My question is this: do pe …
1
vote
4answers
470 views
Perl: Generating Arrays inside a Complex Hash
In the quest to make my data more accessible, I want to store my tabulated data in a complex hash. I am trying to grow a 'HoHoHoA' as the script loops over my data. As per the guid …
