All Questions

1
answer

How to know which JQuery is working or in what file it is

I am trying to put a ScrollTo but it is not being applied because it is hitting another JQuery that has a floating button that makes it > click directs to the top of the page, then I want to find the JQuery that had the template by defa...
asked on 25.07.2017 / 16:44
2
answers

Set up a linux script to run with the permissions of another user

My specific need is the following: A script of usuario1 has to be able to be executed by any user of group1 (that I know how to do), but when it is executed it has to have the permissions of user1. It would be something equivalent t...
asked on 04.08.2017 / 14:05
2
answers

Problem with array in Python

I'm starting with Python and I have a problem with the code I'm doing ... from numpy import * import random def busquedaLineal(buscado, arreglo): encontrado = 0 for i in range(len(arreglo)): if arreglo[i] == buscado: en...
asked on 24.05.2017 / 23:54
4
answers

Convert Left Join SQL to Linq C #

How can I convert the following SQL query to Linq? SELECT Facturas.IDFactura, SUM(MovimientosDineros.Valor) AS Totalaportado FROM Facturas JOIN MovimientosDineros ON Facturas.IDFactura = MovimientosDineros.IdFactura GROUP BY Facturas.IDFactura...
asked on 06.06.2017 / 06:14
2
answers

Update several tables at the same time Oracle

I try to update three tables in Oracle, which are totally different, but in all there is a field exactly the same "STATUS". The issue is that I need these fields to be updated to "NEW". This is why I have asked myself if it is possible to...
asked on 08.05.2017 / 22:12
1
answer

Send text to My Band 2 from Android BLE

Does anyone know how to send text to the MiBand 2 from android? So far I am able to send numbers but not strings and I do not know how to do. @Override public void onServicesDiscovered(final BluetoothGatt gatt, int status)...
asked on 02.06.2017 / 09:17
2
answers

How to perform gridview header row in ASP.NET

Good Night Family: I would like you to help me I am doing a gridview that I am doing in the asp.net c # language but I would like to put a header like the image: for this in my gridview I am placing a property called: OnRowCreated...
asked on 18.07.2017 / 04:41
2
answers

Iterative query with permissions

I have two tables jerarquia and permisos , where hierarchy has an ID, a ID_PADRE (pointing to the same table to a parent node) and a DESCRIPTION of the node itself. The permissions table has an ID_OPERATOR (id of the user that is lo...
asked on 04.08.2017 / 16:14
1
answer

Filter data imported by gspread Python 3.x

I'm importing data from a Google Sheets spreadsheet, but I need to filter some rows and not load all of them. Someone runs this library, and knows if there is an argument to filter rows. I am doing it in the following way so far: import...
asked on 02.08.2017 / 18:21
5
answers

Redirect to app play store from html

I would like to know how I can open my app directly in the google play store. It happens that we have an application that has a WebView pointing to the site of our company, on the site of our company we are placing the code below (that is a t...
asked on 05.05.2016 / 20:49