Tagged Questions
The equivalence tag has no wiki summary.
68
votes
10answers
127k views
How to show loading spinner in jQuery?
In Prototype I can show a "loading..." image with this code:
var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars,
onLoading: showLoad, onComplete: showResponse} );
function ...
26
votes
3answers
586 views
Is JavaScript's double equals (==) symmetric?
There are many cases in which JavaScript's type-coercing equality operator is not transitive. (See, for instance, JavaScript equality transitivity is weird....) But are there any cases in which it ...
24
votes
5answers
4k views
Elegant ways to support equivalence (“equality”) in Python classes
When writing custom classes it is often important to allow equivalence by means of the == and != operators. In Python, this is made possible by implementing the __eq__ and __ne__ special methods, ...
13
votes
8answers
624 views
Are there equivalences between Microsoft and Oracle/Sun technologies?
is it possible to say what are the Microsoft equivalents technologies compared to Sun?
For example:
Microsoft | Oracle/Sun
...
9
votes
1answer
453 views
JavaScript equality transitivity is weird
I've been reading Douglas Crawford's JavaScript: The Good Parts and I came across this weird example that doesn't make sense to me:
'' == '0' // false
0 == '' // true
0 == '0' ...
9
votes
13answers
2k views
What are uses of the C++ construct “placement new”?
I just learned about the C++ construct called "placement new". It allows you to exactly control where a pointer points to in memory. It looks like this:
#include <new> // Must ...
6
votes
2answers
110 views
Trying to find an algorithm which takes 2 regular expressions and tells whether they are equivalent
I'm trying to find out what the algorithm would be by being given two languages L1 and L2 to determine if they are equivalent (L1 = L2).
It's surprisingly difficult to come up with one as I've found, ...
5
votes
1answer
313 views
Equivalence Classes LISP
I need to write a program for equivalence classes and get this outputs...
(equiv '((a b) (a c) (d e) (e f) (c g) (g h)))
=> ((a b c g h) (d e f))
(equiv '((a b) (c d) (e f) (f g) (a e)))
=> ...
5
votes
4answers
768 views
Boxed Primitives and Equivalence
So I was asked this question today.
Integer a = 3;
Integer b = 2;
Integer c = 5;
Integer d = a + b;
System.out.println(c == d);
What will this program print out? It returns true. I answered it ...
5
votes
8answers
522 views
How to reduce a logical statement?
I'm pretty sure I can remember doing something like this in one of my college level courses and that there was some kind of formula to it, but my mind is failing me beyond that.
Given the statement: ...
2
votes
5answers
79 views
How should one proceed to prove (or find) if two regular expressions are same or equivalent?
For example, in an assignment given to me, we were asked to find out if two regular expressions are equal or not.
(a+b+c)* and ((ab)**c*)*
My question is how is one supposed to do that? If I draw ...
2
votes
1answer
111 views
Dictionary Keys.Contains vs. ContainsKey: are they functionally equivalent?
I am curious to know if these two are functionally equivalent in all cases.
Is it possible that by changing the dictionary's default comparator that these two would be functionally different?
Also, ...
2
votes
4answers
161 views
String.Format (.NET) equivalent in Java?
The String.Format in .NET (maybe just VB.NET) convert {0}, {1}, ... into determined String, for example:
Dim St As String = "Test: {0}, {1}"
Console.WriteLine(String.Format(St, "Text1", "Text2"))
...
2
votes
3answers
96 views
Question about reversed lists in Python
I am very new to python, as you will be able to tell.
If I have a list:
a = [1,2,3,2,1]
This evaluates to true:
a == a[::-1]
...but this evaluates to false:
a == a.reverse()
Why is that the ...
2
votes
1answer
132 views
How do you use MSBuild less than / greater than conditions?
How do you do less than or greater than in MSBuild conditions? I've tried the following variations both with and without single quotes surrounding the values, but no dice
<PropertyGroup ...
2
votes
3answers
683 views
2
votes
4answers
457 views
Java: Equalator? (removing duplicates from a collection of objects)
I have a bunch of objects of a class Puzzle. I have overridden equals() and hashCode(). When it comes time to present the solutions to the user, I'd like to filter out all the Puzzles that are ...
1
vote
1answer
149 views
Equivalence between two automata
Which is the best or easiest method for determining equivalence between two automata?
I.e., if given two finite automata A and B, how can I determine whether both recognize the same language?
They ...
1
vote
2answers
354 views
JavaScript comparison operators: Identity vs. Equality
I've been trying to understand the difference between JavaScript's comparison operators: identity and equality. From what I've read, if you check the equality of two objects using ==, JavaScript will ...
1
vote
3answers
308 views
1
vote
3answers
99 views
Scheme symbolic equivalence
The platform i'm working with is DrScheme.
I've seen that a pair (a b) [constructed by (cons a b)] is implemented within the language like a procedure that looks like this:
(define (cons a b)
...
0
votes
1answer
51 views
ksoap2 equivalent to didStart/didEndElement?
my question for today is that i'm curious about if there is a close relative and/or equivalence in java using the ksoap2-library to parse element-by-elements.
In objective-c for example:
public ...
0
votes
3answers
70 views
What is the java equivalence to the C#-DateTime?
I have this function below.
It recieves a string and a key made out of another string.
The function takes the inputs and adds on the date to make the exact same key to validate.
public bool ...
0
votes
1answer
169 views
.NET XMLSerializer equivalence in Java/Android?
I've Googled the XMLSerializer in Android, but I found it's totally different from .NET. What I need is that, from a Serializable Class, I can write them to a XML file, and then read the XML file to ...
0
votes
0answers
113 views
Constructing logic gates from only AND, OR and NOT gates
I am doing some revision for my exams and one of the questions that frequently occurs is to construct logic gates using only the functions AND, OR and NOT. The most commonly occurring ones are NAND, ...
0
votes
2answers
178 views
Equivalence relational algebra and turing langauge
I'm starting a project where I want to try to recognize relational algebra's in java-like programming language.
For example, given two relations:
AmericanActor(Name)
EuropianActor(Name)
The ...
0
votes
1answer
165 views
Database Theory: Transaction serializability
Hy,
I'm learning for my exams and came over the following question:
Take the History (or Schedule)
H = w1[x] w2[x] w2[y] c2 w1[y] w3[x] w3[y] c3 w1[z] c1
where w1[x] means: Transaction 1 writes to ...
0
votes
2answers
135 views
Determining object equivalence for value types, reference types and ILists in .net
I have a class with a Property called 'Value' which is of type Object.
Value can be of any type, a structure, a class, an array, IList etc.
My problem is with the setter and determining whether the ...
-2
votes
2answers
362 views
Name equivalence question
Suppose I have:
int a;
int b;
Are the variables a and b name equivalent (more specifically, since primitive types don't have type names, can they be considered name equivalent)?
Thanks.