All Questions

4
answers

Access a property of an object from a string array

I have a object like this: { var: { foo: '', foo2: '', } } and a parameter (['var', 'foo2'], newData) comes to me in a function. What would I have to do to return the original object with var.foo2 = new Data...
asked on 06.09.2018 / 10:29
2
answers

Hot fix between two remote git

I have two remote git repositories, one is test and the other is production git remote -v produccion https://[email protected]/deploy/pr1.git (fetch) produccion https://[email protected]/deploy/pr1.git (push) test https:/...
asked on 17.05.2017 / 22:32
2
answers

click button with selenium

Hi, I'm new to Selenium. This is the code of the button where I want to click <a href="javascript:bp(26834)">Clic para ver</a> I navigate to the indicated page but it does not reflect the click action that should show a hidde...
asked on 14.09.2018 / 23:46
3
answers

Define separate cells instead of a range in Excel formula

Suppose I have the following table: |-----|-----|-----|-----|-----|-----| | A | B | C | D | E | F | |-----|-----|-----|-----|-----|-----| 1 | s | n | n | s | s | s | |-----|-----|-----|-----|-----|-----| 2...
asked on 02.03.2017 / 16:55
0
answers

Login by Api Token Laravel 5.4

I'm making a login by api_token using laravel 5.4 The route is defined as Route::get('/test', 'Auth\authenticatedApiLogin@authenticatedApiLogin')->middleware('auth:api'); And if I do within the method: dd(Auth::guard('api')->user...
asked on 27.04.2017 / 17:25
2
answers

Error with FileOutputStream

I'm trying to save an image of ImageView in the gallery of my mobile device and the problem is that I'm always creating the directory where I want to save the image and then the path when I'm going to do the% % co tells me that it does no...
asked on 29.08.2017 / 14:30
2
answers

Where to use $ stmt-close () & $ stmt-free_result () - MySQLi PHP?

When there is more than one query in the same file shows errors, I solve everything by $stmt->close(); I have the doubt of what is the correct way to use it, how many close() should be used. The $stmt->free_result()...
asked on 21.10.2017 / 06:35
0
answers

Trackpads, prevent multiscroll

I have a little problem with trackpads (at least with MAC mice). I show the following current code: $("body").on("mousewheel", function(e) { var body = $(this); //If the body doesn't have the "animating" class, we add it and do the...
asked on 23.03.2017 / 16:47
2
answers

Does not install apk

I am developing an app in Java for Android. When testing the application (debugging) on a smartphone, it installs and runs well. My problem comes when I install the application in production. I generate the signed apk without problems (And...
asked on 23.08.2018 / 14:52
0
answers

Print a floating point in an assembler NASM

I'm doing a small program for a University course, they asked us to calculate the Golden number and then print it on the screen, we already have the calculation, now the drawback is that we do not know how to get that number from the FPU...
asked on 13.04.2017 / 18:30