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...
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:/...
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...
Suppose I have the following table:
|-----|-----|-----|-----|-----|-----|
| A | B | C | D | E | F |
|-----|-----|-----|-----|-----|-----|
1 | s | n | n | s | s | s |
|-----|-----|-----|-----|-----|-----|
2...
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...
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...
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()...
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...
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...
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...