All Questions

1
answer

Set tall with grid-colum

With grid-colum you can, for example, make a grid different from the rest, for example occupying a single row: grid-column: 1 / -1 But it will keep the same height as the rest of the grid's. How can I customize its height? if I put hei...
asked on 12.02.2018 / 12:03
1
answer

AtributeError in Pygame

In the process of executing this Pygame code, the following error appears on my terminal regardless of the corrections made to the code: AttributeError: 'naveEspacial' object has no attribute 'dibujar' How can I correct my code of this erro...
asked on 08.02.2016 / 14:06
3
answers

Django REST Framework Serializing models that have fields / relationships ForeignKey and ManyToManyFields

The challenge of this question is clear from the update 2 which is the current state of it, you can read it full to understand its context if you want :) I have the following model that I want to serialize to expose via REST class Rehab...
asked on 08.03.2016 / 17:25
1
answer

Equivalent of IN () of Sql or InList () of VFP in C #

Good morning, I have to search through a FOREACH if a capo contains any of the chains. Example foreach (var item in Clientes.Listado) { if (item.Nombre.Contains("Juan") || item.Nombre.Contains("Carlos") ||...
asked on 04.01.2018 / 20:19
1
answer

What is the difference between the concepts "Architecture Style" and "Architecture Patron"? [closed]

What is the difference between the concepts "Architecture Style" and "Architecture Patron"? For example, it is said that REST is an architecture style while MVC is an Architecture pattern.     
asked on 17.12.2017 / 20:45
2
answers

Problem with the Constructor (C ++ Error C2512, no appropriate default constructor available)

I need my constructor to start every element of my array in 0.0 , but with my code it tells me that: Error C2512 'Vendedor': no appropriate default constructor available". Annex the code: #pragma once #include <iostream> #i...
asked on 21.02.2016 / 05:35
1
answer

Protect files with sensitive data in PHP

In PHP we can use files to store sensitive data, but those files must have certain levels of protection. We are going to take the example of a file that stores our login credentials to the database. To save this important information I hav...
asked on 07.11.2017 / 00:46
1
answer

Change position to the div when I click AngularJS

I am trying to position the box azul depending on the box to which I give click , that is, if I give click to the green box, the blue box should go down to where the green box is, not it can be at the top, it should be as if...
asked on 24.01.2018 / 22:13
1
answer

Fatal error: Call to undefined function swal () - PHP

I want to add an alert message of the SweetAlert class but when everything is correct and I want to show the message / popup it tells me the following error:    Fatal error: Call to undefined function swal () Using the page link I hav...
asked on 03.01.2018 / 14:06
1
answer

this.state.users.map is not a function

Trying to show data in a view in React Js , I have found an error that following the steps of the tutorial still persists:    this.state.users.map is not a function The code is as follows import React, {Component} from 'react'; im...
asked on 23.02.2018 / 19:11