Posts by Juny • 163 points
13 posts
-
0
votes1
answer82
viewsQ: Google plus authentication on Ionic
I’m trying to create a login with google plus in Ionic 4 on android platform, but is always coming back an error [10], which according to the google documentation, is a configuration error, but I…
-
1
votes1
answer193
viewsQ: Vba web scraping
Hello, I have a problem when performing a web Scrapping on the site "https://esaj.tjsp.jus.br/cpopg/open.do" In VBA I can open the site and everything and even enter the values I want, the problem…
-
0
votes1
answer46
viewsQ: Exception XML-RPC class (Python)
I’m trying to create an XML-RPC class, but it’s giving an Exception, but I don’t understand why. It’s just a simple example: server.py from xmlrpc.server import SimpleXMLRPCServer import pickle…
-
0
votes1
answer120
viewsQ: How to pass array in a gRPC?
I’m testing some code using gRPC with the Python language, and I’m not able to manipulate array. The code consists of passing an array per parameter, the server receives this array and sorts. code .…
-
1
votes1
answer240
viewsQ: Connectionrefusederror: [Errno 111] XML-RPC python
I’m trying to connect to a server using python 3 with xml-rpc, but an error is appearing every time I try to connect: Connectionrefusederror: [Errno 111] Connection refused This is my server code:…
-
0
votes2
answers371
viewsQ: Build Gradle Dependencies Version Conflict
I’m trying to use Firebase in my application, but it’s giving dependency error in Gradle. Build.Radle (App) apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin:…
-
2
votes1
answer81
viewsQ: Sunrise and sunset in R
I’m trying to create a script that shows the sunrise and sunset with the latitudes set, but the time is not compatible. OBS: this latitude corresponds to the time of São Paulo. library(maptools)…
-
4
votes1
answer758
viewsQ: Grab URL table from R
I need to do it here: library(xml) URL <- "http://globoesporte.globo.com/futebol/brasileirao-serie-a/" tabela1 <- readHTMLTable(URL, which = 1, colClasses = ) tabela1$V3 <- NULL…
-
0
votes1
answer24
viewsQ: How to create a table in Hana Workbench by column?
I am using SAP Hana Workbench from the browser and need to create a table by 'column', but I don’t know how.
-
1
votes0
answers183
viewsQ: Redis Error: Connection reset by peer
I’m trying to connect with an Azure service, I can connect, but when giving some command like keys *, returns the following error: Error: Connection reset by peer…
-
1
votes1
answer90
viewsQ: Problem with switch C
I have a C code, and without the switch, it works right, but with switch, when entering name in the list, replace all the name of the list by the same. void insChild(LIST* l, char name[]) { NO* new;…
-
0
votes1
answer179
viewsQ: Regex - remove element
I want to delete all characters except the last 3 letters that are uppercase. And another thing, like I do several regex together?
-
4
votes1
answer376
viewsQ: Extract table from a website for Rstudio
Hello, I want to take the table of the Brazilian, for example this site "http://globoesporte.globo.com/futebol/brasileirao-serie-a/" and extract to a dateset in Rstudio, so that whenever the table…