All Questions

3
answers

Is it possible to apply sound effects in hover or click on css?

Can you give a sound effect when you hover over an object, text, etc.? I wanted to hover over an object with a 'hover' effect to give it a sound effect, any sound that I set, to apply that with Css? or just with JS? .menu{ display:flex;...
asked on 25.05.2018 / 17:56
4
answers

How to remove an element from an XML with Python?

The case is that I have a file produced by a Garmin (GPS device for physical exercise) and I want to remove all the fields related to the heart beat to pass the file to an athlete who did the exercise with me. The file is in GPX format and looks...
asked on 09.01.2014 / 19:44
1
answer

MySQL query equal to one value or another

I have a query in a query of MySQL. I have this query select cor from cores where cor in('verde','vermelho'); The problem is that I want the green, and if it does not have green I want the red. but not the 2 results. I can not use...
asked on 05.02.2014 / 12:37
1
answer

Export Google Sheets data to the R

Everyone, okay? I'm new to R and I have a question: Is it possible, and if possible, what is the way to export data from a google sheets table (or Drive) to R. Is there any library for this?     
asked on 02.10.2018 / 19:54
2
answers

How to use a module in AngularJS?

I have the following code in AngularJS but I get the error:    Error: [$ injector: unpr] Unknown provider: AuthenticationProvider <   Authentication My code is as follows: app.js angular.module('app') .controller('HomeController',...
asked on 11.12.2013 / 17:35
1
answer

Update on 2mil records Customers how to do a single update instead of 2k separately

I have a Client Model and need to update on EnviadoEmailCobranca para 0 I'm doing this: var clientes = db.Clientes.Where(w => w.Status == 4); foreach (var item in clientes) { item.EnviadoEmailCobranca = false;...
asked on 10.03.2016 / 16:14
5
answers

How to know the number of a week in each month

I'm working on ASP MVC4, and I would like to know how many weeks in a given month to generate a list with dates. For example, the user enters a week, and in that week of each month I generate a date. The user can enter the week of the month in w...
asked on 05.02.2014 / 10:59
1
answer

How to put the regression equation on a graph?

In another question , and how to put the regression line on a graph. But how to put the regression equation on the graph? For example: Or     
asked on 22.02.2014 / 14:55
1
answer

What is the difference between ASC or DESC in clustered indexes?

When I am going to create a non clustered index in SQL SERVER, SSMS appears in the option to choose whether the option "Columns" is ASC or DESC , as shown below: / p> Generally, I use ASC or DESC to sort the...
asked on 30.08.2018 / 19:23
1
answer

Is it possible to use Input Value as a CSS selector?

See the examples below. I'm trying to style my CSS through value that it has, but it's not working. I've assembled 3 examples, one so that if input has [value="red"] it should have a red border. But even if you type re...
asked on 10.12.2018 / 11:45