difference

Javascript - How can I work out the difference between two given times? (hours-minutes)

I have two sets of 'select' elements where the user can enter in two times. It looks like this: Start: [hour] [minute] [meridian] End: [hour] [minute] [meridian] I'm trying to take those times and figure out the difference. So I can then output: Difference: 1.25 HRS The decimal format, as you probably know, means 1 hour and 15 min...

Client date and server date confusion.

I am working on a website in ASP.NET where emails can be scheduled for feauture. But the problem is with the date difference between server and client. As the server is in India an USA user can schedule a date behind today's date as their time zone is different. But this email will not be sent ever as the date has already been passed her...

Union, intersect, difference large IntSet in O(m+n) times

from my question http://stackoverflow.com/questions/3601472/insert-element-to-arraylist-with-ascending-order-and-no-duplicate-elements i've done my insert method. Now i try to find out union, intersect, and difference method to operate 2 IntSet. Notice that number elements of IntSet is large and i need to do it in O(m+n) time where ...

How can I find the difference between two xml files

Hi have built two xmls files that map the content of a given folders: <root> <folder name="C:\a\b" permision="yes" folderCount="1"> <folders> <folder name="C:\a\b\c" permision="yes" folderCount="1"> <folders> <folder name="C:\a\b\c\e" permision="yes" folderCount="0"> ...

CMU: Semaphores!

Check My Understanding of semaphores, please! I understand the idea behind counting semaphores and binary semaphores. However the difference between a spinlock and semaphore implemented with signal() and wait() kind of blend together to me. For example a spinlock has basically two values (a binary true/false for locked or unlocked). ...

How do I configure BeyondCompare to ignore SCM replaced text in comments?

I do have some text sequences that are replaced by the SCM (Perforce in my case). I do want to configure BeyondCompare to consider these sequences as unimportant differences in order to be able to ignore them when I compare files. In my case it's about Python source files and the sequences are looking like # $Id: //depot/.../filename#...

What's the difference between $(this) and this in jQuery?

What's the difference between $(this) and this in jQuery, and why do they sometimes give the same result and other times behave differently? ...

Difference between Database and Data Source

What is the difference between Database and Data Source? ...

Ignore few children for comparison when comparing xml documents with XMLUnit

Hi, Is it possible to ignore few children in elements when comparing xml documents with xmlunit. i want to ignore any empty text nodes in the element when comparing them. Best Regards, Keshav ...

Git's blob data and diff information.

As far as I know, Git's blob has SHA1 hash as file name. in order not to duplicate the file in the repository. For example, if file A has a content of "abc" and has SHA1 hash as "12345", as long as the content doesn't change, the commits/branches can point to the same SHA1. But, what would happen if file A is modified to "def" to have...

Why is VB flamed for being easy and yet Python is not?

I have always wondered about this and seen this among lots of programmers. Why is a VB programmer or VB code easily dismissed as too noobish and easy while the same does not apply to Python or Python code? After all, isn't Python as easy as VB is? And it does provide drag-n-drop GUI application building also. So why is it that VB is flam...

ActionScript - Difference Between "Wildcard" and Object Datatypes?

When declaring a variable to have an open datatype, is there any difference, especially a performance difference, between typing a variable as a "wildcard" (i'm not sure of the official name for this) and typing a variable as an Object? var myVar:*; var myVar:Object; ...

Time difference in Javascript

I have a textbox where I get the time as HH:MM AM/PM(like 5:30 PM). I want to validate the time whether it is 1 hour greater than the current time or not. How can I do this using javascript? ...

what is the difference between - and NOT operator in Lucene?

In the query syntax of Lucene it is said the following: The NOT operator excludes documents that contain the term after NOT. ... The "-" or prohibit operator excludes documents that contain the term after the "-" symbol I think the difference is that the - operator can be used alone, which is not the case for NOT. Is that it? ...

How to highlight the differences between subsequent lines in a file?

Can anyone think of a simple way of highlighting the differences between lines in a text file. Ideally in Linux ...

Is there a formal definition of character difference across a string and if so how is it calculated?

Overview I'm looking to analyse the difference between two characters as part of a password strength checking process. I'll explain what I'm trying to achieve and why and would like to know if what I'm looking to do is formally defined and whether there are any recommended algorithms for achieving this. What I'm looking to do Across ...

Ruby array subtraction without removing items more than once

The canonical Array difference example in Ruby is: [ 1, 1, 2, 2, 3, 3, 4, 5 ] - [ 1, 2, 4 ] #=> [ 3, 3, 5 ] What's the best way to get the following behavior instead? [ 1, 1, 2, 2, 3, 3, 4, 5 ].subtract_once([ 1, 2, 4 ]) #=> [ 1, 2, 3, 3, 5 ] That is, only the first instance of each matching item in the second array is removed ...

What is the difference between an atom and a symbol in Common Lisp?

Are there any differences between what in Common Lisp you'd call an atom, and a symbol? Do these differences extend to other languages in the Lisp family? (I'm aware that atom has a different meaning in Clojure, but I'm interested in the boundaries of what is a symbol.) ...

Get the real difference between two arrays in php..

Hi, i'm trying to get the difference between two arrays, but with array_diff, array_diff_assoc, array_diff_key i can't get what i want.. Array 1 : 0 => 424012, 1 => 423000, 2 => 425010, 3 => 431447, 4 => 421001, 5 => 421002, Array 2 : 0 => 424012, 1 => 423000, 2 => 425010, 3 => 431447, 4 => 431447, 5 => 421001, ...

python time differences

I have two time objects Example time.struct_time(tm_year=2010, tm_mon=9, tm_mday=24, tm_hour=19, tm_min=13, tm_sec=37, tm_wday=4, tm_yday=267, tm_isdst=-1) time.struct_time(tm_year=2010, tm_mon=9, tm_mday=25, tm_hour=13, tm_min=7, tm_sec=25, tm_wday=5, tm_yday=268, tm_isdst=-1) I want to have the difference of those two? How could ...