I have a problem trying to traverse a json to get its length (length).
This is my code:
var parametros = {
yMin: "0",
yMax: "300",
ySteps: "5",
yLabel: "users",
xMin: "1",
xMax: "12",...
I am trying to center the following without losing the responsive and there is no way:
<div class="row">
<span class="col-md-1 text-right">Periodo:</span>
<div class="col-md-2">
<input...
I want to send 2 values to the view with lists of laravel
admin.horarios.create
The question is this, I have this code:
public function create()
{
$docente = Docente::orderBy('nombre','ASC')
->...
I am new programming and I am in the challenge of making an incremental file backup.
I have been based on the paradigm of object-oriented programming and I tried to work using the good practice "DRY" (Do not repeat yourself) to avoid repeatin...
Hello I just started in c ++ and I want to make a program that takes a number entered by the user through the keyboard and returns if it is equal, greater or less than 10, to learn how the language works. The problem is that I had achieved it un...
I am doing the exercises before the programming exam and I can not do this:
"Write a program that receives a natural number and paint approximately a square figure on a screen using a given drawing pattern, for example, if you read the number...
Here I get the arrow pointing up
$('.menu').click(function(){
$(this).children('.menu-sub').slideToggle();
});
$(".sidebar-nav > li.menu > a").click(function(){
if($(this).siblings('ul.menu-sub').hasClass('in')){...
I want to include the space and only accept letters, numbers and accents and the special character > ñ . What I have done is the following:
if (primernombre.length() == 0 || a.matches(".*[^a-zñáéíóúA-ZÑÁÉÍÓÚ].*")) {
primerno...
I'm in an android class project and I have it almost finished but I need to pass some variables from one activity to another, it gives me NullPointerException and looking for I have not found anything.
Logcat
Caused by: java.lang.Nu...
I'm doing a function that all it does is print all the values of a field in a table, however I have Chinese letters saved in the database, and from sql server they look good, but when printed in java it shows only question marks, this is my func...