A couple of days ago that I'm fiddling with Docker, I tell you my intention.
Create a Dockerfile with:
LAMP
Wordpress
Nodejs
npm
ionic-framework
cordova
And that from port 80 using "localhost" can access the wordpress.
I h...
I have made a game of guess the word, and I have a piece of code that verifies if the user has already entered a letter before, it looks like this:
if letra in actual:
clear()
print('La letra ya se encuentra en la palabra')...
I have a problem wanting to walk an object with.
for(var i in object){
console.log(object[i]);
}
does not show anything, does not enter the for. also when I do
console.log(object); // si muestra valores
console.log(Object.keys(object)...
I have a problem getting the new id of a item republication directly from MercadoLibre .
If I republish an item I get the new id and there is no problem, but if the republication makes it MercadoLibre directly, I do not know how to get...
There are different ways to create a relationship in the tables, which is to make use of the Foreign Key (FK),
I have these understood ways of doing it:
1) In the case of the creation of FK by SQL code ... to create a serious FK:
FOREI...
There I leave the code, it explodes a couple of times and I do not understand why it does not work, before it marked an error in the if so I left it commented, after that this JQuery error appeared maybe that's why
JQuery(document).on('submit'...
I have a service developed with WCF , in this service I call a stored procedure , it returns 4 fields: id , id_visita , fecha , observaciones . It may happen that the field id_visita comes null and this...
Greetings, what I need is to keep some data sent from a form in an array that I store in Session de laravel, I'm doing it in the following way:
In the routes.php I have:
Route::bind('evento', function($slug){
return Deportes\Even...
So far I had used Symfony 2 and I just moved to version 3. The installation is correct and I can run the emulator and see the welcome screen. The problem is when creating a Bundle. I create the bundle as always, with console and following the in...
I need your help, I have searched for different solutions on the internet but I have not found the correct one. My question is how can I transform from Date to String by obtaining the date from my MySQL database?
The solution I...