All Questions

1
answer

Asp.net Mvc Datatable does not render correctly

I am working with Asp.net Mvc and jquery.Datatables, and I have the following problem. in a page, I'm showing process data ... and for that I defined an html table, and with datatable I defined the following JS function to control the load....
asked on 13.12.2018 / 14:34
2
answers

how to set up htaccess to be able to embed .php in HTML files

I have a web in html, css and javascript (without libraries or framework) and I need to embed footer and external header to make it easier to maintain. I found the following code that would solve it, but they clarify that, if it does not work, t...
asked on 13.12.2018 / 11:18
3
answers

How to read strings of a structure passed by reference

This is my Structure typedef struct{ char Nombre[20]; }Cliente; And they ask me for a function that captures the name by means of the structure and performs this function void Captura_cliente(Cliente *client){ printf("Escriba...
asked on 20.12.2018 / 09:19
1
answer

CSS problems media query [duplicate]

I have a small problem what happens is that when I implement the media query on the website, it does not detect all of them. I mean, if I put this example, for example @media (min-width: 768px) { .navbar-brand > img {...
asked on 17.12.2018 / 20:40
1
answer

java.lang.RuntimeException: Unable to start activity, java.lang.NullPointerException in Android Studio

Making a code to simply show Hello, world in a TextView named st, which is referred to by the variable stat, the error comes out: java.lang.RuntimeException: Unable to start activity ComponentInfo {com.aapps.vyber.clicker/com.aapps.vyber....
asked on 30.07.2018 / 10:26
4
answers

How to install pygame in Python3 with pip

How can I install pygame for python3 using pip ?. I have the version of Python 3.6.3. I tried with pip install pygame but it was installed in python 2.7. Thank you.     
asked on 27.12.2018 / 16:34
1
answer

Error building a JSON in PHP

I'm trying to build a JSOn from PHP, but when I put two conditions it does not generate the data. That is, I only need to bring the data of SARA , but when I put them in id_ppl and level at the same time, I get nothing. I do not really k...
asked on 02.08.2018 / 16:05
1
answer

Input in square, css

I have to take the following format that I must replicate: The fact is that it does not come out and I do not know what else to do. I have the following code: <div style="display: flex; -ms-flex-wrap: wrap;flex-wrap: wrap;...
asked on 10.12.2018 / 22:56
1
answer

Hangman game - Java

I have a problem with a program I'm doing, which is about creating a Hangman Game. I used a for so that the entered character is equal to one of the characters of the word (which is chosen randomly) and a if to verify if it is corr...
asked on 19.12.2018 / 01:27
2
answers

How to throw exceptions using ternary operator in Python

I want to throw an exception on a single line to a method that a boolean has to receive if he does not receive it, by using a ternary operator. How can I do it? I tried to put a else pass but it does not validate the syntax def metodo...
asked on 11.08.2018 / 16:03