Questions tagged [difference]

This tag may refer to 1) the difference between two numbers (i.e. the difference between 5 and 10 is 5) or 2) the things that two or more particular objects do not share in common.

Use this tag for questions that deal with either of the following two topics:

  1. The difference between two numbers.
  2. What two or more particular objects do not share in common.

Related tags:

1970 questions
0
votes
2 answers

How to calculate minutes difference between two timestamps in php

Is there any native function for getting the difference between two timestamps? I want to get minutes difference of two timestamps. Edit: Sorry but actually I just want the difference of two Unix timestamp. $date = new DateTime(); $date1_timestamp =…
NiroshanJ
  • 558
  • 1
  • 5
  • 20
0
votes
0 answers

Nested if condition is not working in Google script

I am new to the scripting. I have a written a function to check the difference between the present time and the time recorded in the spreadsheet earlier. If the difference is more than 4 hours, it needs to send a mail to the concerned person. When I…
0
votes
0 answers

Mix-blend-mode: difference not working

I'm trying to make the h1's font reacting so that it's font color is always the opposite of the background. I've checked everything and have no idea what's wrong. Any help? var oldName; var open; function changeImage(name) { var text =…
Selsku
  • 1
  • 6
0
votes
1 answer

What is the Difference between build generated for development and for production in sencha

I am new to sencha and working on build process. Will you please help me the difference ? Cause while building development build in sencha files are not getting copied properly, so can not able to find the difference. Thanks.
mugdha
  • 3
  • 4
0
votes
1 answer

About stm32 timer : what is the difference between disable timer In the interrupt and disable timer outside the interrupt?

About stm32 timer : what is the difference between disable timer in the interrupt and disable timer outside the interrupt?
clover
  • 21
  • 1
0
votes
1 answer

Typescript timestamp get milliseconds

In my TypeScript project I get a response containing timestamps which looks like this: +049235-10-18T04:13:50.000Z This timestamp can I convert into a LocaleString which then looks like this: 7.4.2017, 14:29:17 I want to get the difference…
Friso
  • 127
  • 1
  • 10
0
votes
2 answers

Python: How do I add up values in a list after creating a variable to do something with each value?

I apologize for the poorly worded title, but I am very new to Python and coding in general. I'm assuming that my question is simple, but I haven't been able to find the help I am looking for. Here is the code I have right now: for i in xList: …
DOM
  • 53
  • 1
  • 8
0
votes
1 answer

how to subset data between fixed time on successive days, for several months of data

I have data of the following form: DateTime | Var1 11/01/2016 06:01 | 0 11/01/2016 06:02 | 0.70 ... ... 11/01/2016 23:59 | 35.08 11/02/2016 00:01 | 33.29 ... 11/02/2016 06:00 | 24.62 ... 11/30/2016 23:59 | …
Sree
  • 77
  • 1
  • 8
0
votes
1 answer

Ionic 2 vs React Native - How much native development experience do i need?

I'm an Android developer and I've never touched iOS app development. I want to start developing hybrid apps since It can be a pain and time consuming to develop native apps for both platforms differently. I'm trying to choose either Ionic 2 or React…
Jaspreet Singh
  • 321
  • 1
  • 6
  • 13
0
votes
0 answers

Difference between using java.io.* and java.util.Scanner

I would like to know what are the differences between reading data in the next programs The first one read data using a Scanner and the second one uses io I know that we could also use JOptionPane but I would like to know the difference between…
Heriberto Juarez
  • 270
  • 2
  • 18
0
votes
0 answers

Insert difference column in excel pivot table

Pivot Table I need some help to insert column Diff to this pivot table, I currently use calculation but not success.
0
votes
2 answers

Hive hour() function returns NULL

Hive's hour function returns NULL. below is my query select hour(col_name) from hivetable datatype for col_name is string and value is in format HH:MM:SS
Vish
  • 1
  • 1
0
votes
2 answers

Displaying label based difference between neighbouring cells in Excel / Google Spreadsheets

I'm making a system in Excel / Google Spreadsheets where data is transformed from raw numbers into smaller, universal categories. The purpose of the system is to measure change from year to year in a dataset. I want to calculate the difference from…
Kaosmos
  • 17
  • 1
  • 5
0
votes
1 answer

Why should we go for one solution with ETL/DWH/BI rather that specialized solution for each of these?

I'm working in a reporting service application where I use ETL/DWH/BI using SSIS packages for ETL and SQLserver for Data warehouse my client wants to know why should they would go for one solution with ETL/DWH/BI rather that specialized solution for…
Mar1009
  • 721
  • 1
  • 11
  • 27
0
votes
2 answers

C creating function that calculates difference in value between first two non matching characters

This is a function that compares two strings to check if they are equal , everything works fine till the point they aren't. I want to calculate difference in value between the first two non-matching characters. Function returns a strange number. The…
NiKZAA
  • 11
  • 4