All Questions

2
answers

Remotely access Laravel project

Hello, I do not know how to access my project echo in laravel from another computer in the network, locally I can access it with: http://localhost:8000 Now I try to access by replacing localhost with IP on the same computer on which I h...
asked on 04.10.2016 / 17:27
3
answers

Doubts about uses feature android.hardware.location.network and android.hardware.location.gps

I am somewhat confused with this issue and I would like to see if someone who has it clearer could explain to me well what it is about or answer the following questions. Does this change apply to applications compiled with api 21+ or does it...
asked on 12.10.2016 / 14:55
2
answers

Assign value to a returned input from a controller

I have this script in my view $(document).ready(function () { $("#PlanVenta").change(function () { $("#Precio").empty(); $.ajax({ type: 'POST', url:'@Url.Act...
asked on 31.08.2016 / 18:44
3
answers

Font-family does not work on my page

I have decided to use the google source "Raleway" with which I have added this to my code: <link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet"> And this in my css: html, body { height:100%; width:100%; fo...
asked on 25.10.2016 / 15:32
6
answers

Select multiple rows mysql

I need 3 rows of a table that have certain id. This is my current query that gets only one record $query='SELECT precios.id_precio, precios.precio, precios.descarga, precios.carga FROM wifmaxco_web.precios WHERE precios.id_precio="1"'; $...
asked on 11.10.2016 / 18:54
2
answers

Sum of all the values of an array in JavaScript

I want to do the following program: Web that asks the user for their notes and calculates the average grade for the term To do this I thought I would store all the notes in an array, display them on the screen and then show the average....
asked on 11.06.2018 / 18:41
1
answer

The program skips the IF and goes straight to the ELSE [closed]

I'm practicing the exceptions in python and I have a problem, the exceptions are captured well but then the program does not work correctly. #Utilizamos este metedo para importar las funciones del archivo from Funciones import llegadaCamion,nu...
asked on 16.05.2018 / 11:42
3
answers

Problem when casting variables in Java (Android): NumberFormatException: For input string: ""

I was starting with Android, but when doing something that in Java has never given me problems and launching it in an Android App, I have missed a lot of errors when executing it, because compiling does it without problems. The exercise I try...
asked on 08.10.2016 / 23:22
1
answer

Delete Row according to text in a Java Txt

Good I have a code like this: String ruta = "archivo.txt"; File archivo = new File(ruta); String texto; String[] a; String pre= "texto a encontrar"; FileReader f = new FileReader(archivo); FileWriter f1 = new FileWriter(archivo); Buffere...
asked on 11.05.2018 / 11:28
3
answers

Compare different ArrayList's in Java

Good evening I would like you to help me in the following: I have 2 ArrayList's: ArrayList<Persona> listaPersona; that its content transforming it into Json is the following: [{"nombre":"Luis", "edad":"22"},{"nombre":"Juan","edad...
asked on 03.05.2018 / 01:39