All Questions

1
answer

Help - Extract url number to pause it to integer

I have been trying to extract from this url the number in the section of the image file to be able to load them with glide in android studio Example: link however, I do not know how to do it I've done this until now: public int getNumb...
asked on 06.12.2018 / 00:31
2
answers

How to use several "IF" Conditionals in a Store Procedure in SQL Server

I would like to know how I can use several IFs in a Store procedure in SQL Server, How would Syntax be? Here I have an example of one, but this has only one If and one Else and within that ELSE there are two others, but I need to do more and it...
asked on 16.11.2018 / 16:36
1
answer

Scrolling a ViewPager

I have an app that contains a ViewPager with its 3 Tabs. When going from the first to the second it is normal, but from the second to the third it gets a bit slow, it should be noted that in the third one I have a gallery of images that a...
asked on 29.03.2016 / 00:14
1
answer

Add index to associative array in php

I am creating an associative array through php after doing a data validation, this code is to make the "fullcalendar" library work. However, at the end of that validation I need to do a second validation to add another index, but for some reason...
asked on 19.11.2018 / 13:51
1
answer

How to update ion-item in an ion-list

Good morning community. I have had the following problem for several days and I can not find a way to solve it. I have an array of objects with their properties, which I show in with an ion-list. I present the listing in the HTML as follow...
asked on 27.11.2018 / 07:44
1
answer

Compare Data in Oracle

As the title says, I need to make a data comparison. The situation arises in the following way. I have a function that receives a parameter that parameter will be processed to remove certain characters from it. The function is as follows: C...
asked on 07.12.2018 / 21:07
1
answer

use Like with multiple columns

I am looking in one form or another for data in my columns $search = Notificaciones:: where('canal', 'LIKE', '%'.$canal.'%') ->where('region','LIKE', '%'.$region.'%') ->where('cadena','LIKE...
asked on 18.12.2018 / 22:19
1
answer

How to convert a csv (unicode) file to csv (utf-8) in python 3.6.5?

I download a CSV (unicode) file from a website, the fields are separated by tabulation and in double quotation marks and the line break does not do it at the end of each row of how it looks in the CSV, example of how it is see the CSV informatio...
asked on 11.09.2018 / 06:04
1
answer

Failed to connect WebSocket php - javascript

I am practicing webSocket and I try to connect php with javascript - html5 to be able to later make a chat, so I have the following in servidor.php . $host="127.0.0.1"; $port="3333"; $socket= socket_create(AF_INET,SO...
asked on 29.09.2018 / 21:28
1
answer

Create column from another column in which each row indicates the column to use to obtain that cell

I have the following information in a DataFrame in Python: ## x1 x2 x3 x4 x5 colum ##0 206 214 021 122 554 2 ##1 226 234 123 456 789 4 ##2 245 253 558 855 123 5 ##3 265 272 000 111 222 4 ##4 28...
asked on 12.09.2018 / 10:36