I'm doing a pretty simple program to learn some things from java and I have the following super class:
public abstract class Persona {
//Atributos
protected String nombre;
protected String apellido;
protected int edad;
/...
I have a list which greetings
saludo = ['bien', 'genial']
What I am trying to do is that depending on the answer I get an argument, example:
if saludo[] == 'bien':
print('Me alegro')
else:
print('Que bueno que estes genial')
The proble...
Good morning everyone, I'm trying to duplicate these 3 records to another user
This is the code that gets the result of the image.
CREATE TABLE #TEMP (IDSOL INT not null PRIMARY KEY ,USUARIO VARCHAR(50) ,LastName varchar(255) NOT NULL...
I would like to do this, but in PHP :
How to sort a matrix two-dimensional by columns in Javascript?
array= [
//Columnas: 0 1 2 3 4
/*Filas: 0*/ [9,5,3,2,7],
/* 1*/ [7,9,5,4,3],
/* 2*/ [8,4,6,0,1]
]
array...
I have modified the look of checkboxes to make them more cute, but I want to put a content: "\ 2713"; if they are active and I can not get it.
Here is an example of what I have.
/*chechboxes*/
.checkbox.ChachiCheck { padding-left: 0;...
I have a list of ~ 10000 places (latitude and longitude) and I have a central point (latitude and longitude). I want using the Google map API, find all the places (within 100000), which are at a distance X (given by me) from the given center.
I...
I appeal to you because I have not been able to implement the autocomplete in dynamically created elements with jquery, I do it in the following way.
$('#addMarcaTabla').click(function () {
var html = '';
html += '<tr class="...
I currently have this function:
function devuelveButaca(posicion){
var array = posicion.split('_');
var row = array[0];
var column = array[1];
var planta = $('#plantaField').val();
var resultado = "";
$.ajax({
t...
I'm trying to learn an HTML5 framework for videogame development, called phaser, so I'm in the tutorial of here , where it says 'Loading Assets' there is a preload function that loads the images or assets commonly called 'assets' of the...
I am installing tensor flow for python 3.6. I'm installing it with the Anaconda method ( link ) when trying to execute this command:
C:> conda create -n tensorflow python=3.5
I get this error:
"conda" no se reconoce como un comando in...