All Questions

2
answers

Go through JSON Object

I have this json: var json = { "0":{ "check":true, "OBJECT_ID":{ "check":false, "name":"OBJECT_ID", }, "nameTable":"TEST1", "EVENT_NAME_MANAGE":{ "check":false, "na...
asked on 27.04.2017 / 11:41
1
answer

DMCA (Digital Millennium Copyright Act)

My question is: how to claim the author's rights in a plugin java ?, I do not have much experience with this, but a buyer leaked my plugin on some pages and supposedly now I have to claim for DMCA.     
asked on 13.09.2016 / 01:15
3
answers

Difference between table variable and temporary table in SQL Server

Apparently, there are two ways to create a temporary table in SQL-Server: With a table variable ( table variable ) DECLARE @tmp TABLE (Col1 INT, Col2 INT) or with a temporary table ( temporary table ) CREATE TABLE #tmp (Col1 INT, Col2...
asked on 03.12.2015 / 17:23
3
answers

Click sharp jquery?

Good, I'm blocked to perform an action with jQuery. I have this: <div> <p> Password: <span id="passwordServer">*********</span> <b><i id="togglePasswordServer" class="unhide icon"></i><...
asked on 07.06.2017 / 19:51
1
answer

Using std :: less with std :: function

I'm trying to meter std::function< > into a std::set< > . For this, we need a function that compares the values entered. As std::function does not provide any comparison operator, I thought about this: #inc...
asked on 08.01.2018 / 15:34
3
answers

Determine the closest marker. Google maps

My Android project works with Google maps, therefore it has 190 markers. The problem I face is that I would like to determine which of these is closest to my position, the problem is that I have no idea how to do it. This is the way I added the...
asked on 08.12.2016 / 23:15
1
answer

Notifications with PHP

Hi, guys, how do I get an alert when the https request does not find the identification in a database by using an api rest? What I am doing is looking for an ID when it is found, it shows me on a table that information also a pdf, but when it is...
asked on 08.10.2018 / 02:07
3
answers

Resize iframe based on its content

How can I achieve that if the content increases or decreases in size, does the iframe that contains it adjust? If there is a JQuery plugin, pure JavaScript or a simple solution would be a great contribution since what I can only do is that it...
asked on 05.12.2015 / 13:01
2
answers

CORS header 'Access-Control-Allow-Origin' missing in aspx

I have an application that uses a Java script function and sends a call to consume a web service. Everything works fine but I do not get anything in the browser. When I see the console, a message appears CORS header 'Access-Control-Allo...
asked on 04.05.2016 / 20:46
4
answers

Obtain the maximum value of a field, from a series of records. MYSQL

The query is as follows, there are 2 tables: Pagos -idPago -idCliente -fechaEnQuePaga -fechaVencimiento Cliente -idClient...
asked on 24.11.2017 / 20:35