All Questions

1
answer

Data is not displayed in the ListView but if it is seen that it is full

public class FillList extends AsyncTask<String, String, String> { String z = ""; ListView lstpoints = (ListView) findViewById(R.id.lstpoints); List<Map<String, String>> pointslist = new ArrayList<Map&...
asked on 25.05.2016 / 22:15
1
answer

OnBackPressed in NavigationView

I'm using the Android Studio template and adding this method to the main class: @Override public void onBackPressed() { DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); if (drawer.isDrawerOpen(GravityC...
asked on 04.06.2016 / 17:54
1
answer

CodeIgniter form that does not validate correctly

I am trying to make a validation that although it validates well but I find two more problems that are related. They are the following: 1. When I use the <?php echo set_value('') ?> for each field and when I return the errors, the f...
asked on 05.06.2016 / 23:16
0
answers

How to use the information that is inside a pipe in C?

I have a program that creates a pid process with fork () and in the child makes dup2 so that what I print on the screen happens to pipeA dup2(pipeA[1],1); leer(archivos[j],substring); Read me print strings of charact...
asked on 20.06.2016 / 21:42
1
answer

Timeout when I run application

When I run my application that calls several web services, it sends me an error mentioning the waiting time exhausted. I have tried to adapt my app.config file in several ways but it still gives me the same error. Any idea how I can fix th...
asked on 07.06.2016 / 15:23
2
answers

Console error when running my custom node.js script called npm start

I created a custom command in my package.json called npm start that includes tasks like gulp watch & node server.js, when executing it in console the following appears:    events.js: 160         throw er; // Unhandled 'error' event     ...
asked on 29.05.2016 / 19:11
1
answer

DrpZone.js I get server responded with 0 code and already modify apache

Greetings friends I'm using dropzone.js but when uploading files I get an error which says please help and modify many things and nothing    server responded with 0 code And I have already modified the php options     
asked on 23.05.2016 / 19:20
1
answer

Garbage in vector

I am trying to read a file byte by byte and load each byte as an element of the vector, but for some strange reason the first two elements of the vector appear as strange characters (garbage). #include <iostream> #include <fstream>...
asked on 27.06.2016 / 21:03
2
answers

End while loop with break, but still in infinite loop

I'm starting in Python and programming in general and now that I had a few notes in hand, I started writing a simple program that consists of a menu with different options. The first consists simply of a loop that allows you to enter ages in...
asked on 26.08.2016 / 12:55
4
answers

Print One-dimensional array in input hidden

I have the variable $style = [1, 2, 1] ; in php and what I want is to send this Array as you see it here, in the value of a input hidden of HTML , to capture it in my controller and use it in other...
asked on 27.07.2016 / 15:06