1
vote
1answer
49 views
Emacs Lisp: difference between (function (lambda …)) and (lambda …)?
What is the difference between
(function (lambda ...))
and
(lambda ...)
and
'(lambda ...)
?
It seems three are interchangeable in a lot of cases.
0
votes
2answers
63 views
Best way to write an or is equal statement
Hello $mostamazingforumforfastanswersever.
I have a quick silly question; what is the best way to write this :
if ($curpageurl == "www.mysite.com/this" || "www.mysite.com/this/")
{
echo 'this is …
2
votes
10answers
193 views
Find the closest time from a list of times
So, here's the scenario. I have a file with a created time, and I want to choose a time from a list of times that that file's created time is closest or equal too...what would be the best way to …
3
votes
4answers
261 views
Comparison of .NET Validation Frameworks
I was searching for a validation framework for .NET. I saw a few, but I didn't see any comparisons. Which one do you prefer to use, and why?
1
vote
2answers
34 views
Compare the textual content of websites
I'm experimenting a bit with textual comparison/basic plagiarism detection, and want to try this on a website-to-website basis. However, I'm a bit stuck in finding a proper way to process the text.
…
0
votes
3answers
93 views
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true?
I'm attempting to use reflection to determine the result of a call to .Equals on two different but "equal" instances of a type.
My method would be something like:
public static bool …
1
vote
3answers
135 views
Alternatives to userfly.com
During my master thesis I need to study how my users interact with my webapp.
There are alternatives to userfly.com? I want just to know how I can do some usability testing without much hassle.
…
0
votes
2answers
58 views
How to compare groups of tuples in sql
How to compare groups of tuples in sql: consider the following example:
TABLE T1
--------
GROUP VALUE
----- -----
A FOO
A BAR
X HHH
X ZOO
TABLE T2
--------
…
1
vote
3answers
38 views
Basic excel date and time problem
Hi everyone,
Have a list of dates in excel in the format (this comes originally from csv):
23/11/09 07:27:02
23/11/09 08:01:50
23/11/09 08:38:58
23/11/09 09:40:01
What I want to do is count the …
0
votes
2answers
55 views
Compare NSString accounting for articles (i.e. “the” and “a”)
I thought caseinsensitiveLocalizedCompare: would take care of this (that is not including "the" and "a" in the comparison) , but it does not.
(Also, In response to the first answer below, I …
1
vote
4answers
60 views
Python time comparison
How do I compare times in python?
I see that date comparisons can be done and there's also "timedelta", but I'm struggling to find out how to check if the current time (from datetime.now()) is …
0
votes
1answer
52 views
Bitmap (of a signature) comparison in c#
We have a for fun project which require us to compare two black and white bitmaps of two signature and say whether they are the same persons signature. As this is just two loaded bitmaps rather than …
2
votes
6answers
147 views
Is there a way to compare the appearance and/or source HTML of 2 browser tabs?
I'm working on a web based application, and in order to test my changes, I'd like to be able to compare the visual rendering (perhaps by way of overlaying) and the source HTML (diff style) of 2 …
0
votes
4answers
123 views
MDB comparison tool
Is there any other MS Access DB comparison tool like Cross-Database comparator? I want a tool that does a mass comparison like CDB
0
votes
2answers
60 views
Arrays: Counting, Comparing and Increase
Woohoo, I've come to arrays now, thank god.
Now, I've got 2 arrays!
int colorvalues[][] = {{34,255,255,56},{127,204,11,34},{123,98,127,34},{34,34,127,17}};
Imagine it as a 4x4 pixel picture
Now, …
