Posts by RoktSe • 167 points
7 posts
-
0
votes1
answer88
viewsA: com.google.firebase.database.Databaseexception: Failed to Convert a value of type java.lang.String to long
Just change the: private String Nome; private String Usos; private String LAT; private String LONGI; private String Endereço; private Long CPF; private String Medicamentos; For: private String Nome;…
-
0
votes1
answer88
viewsQ: com.google.firebase.database.Databaseexception: Failed to Convert a value of type java.lang.String to long
Error I’m wanting the Android app to take the data from Firebase and show them in a list and this is the error. com.google.firebase.database.DatabaseException: Failed to convert a value of type…
-
-1
votes1
answer49
viewsQ: How to get values from a Textview of another Activity?
I would like to get the email that was typed on the login screen and with this value pass to another Activity.
-
1
votes1
answer1333
viewsQ: Calculating the execution time of a program
How do I add a "timer" at the beginning of the program and during the execution I can read the time since the beginning of the program in seconds?
-
-2
votes1
answer491
viewsQ: How to search the summary in Portuguese by wikipedia API?
How do I get the API to return the string in en? import wikipedia pesquisa=wikipedia.summary(keyword)[0:150] print(pesquisa)
-
3
votes2
answers2238
viewsQ: Timeout in Python input function
teste = input('Olá qual o seu nome?') How to run something if the user takes longer than a certain amount of time to respond to input? Example: Write on screen Você demorou demais.…
-
-1
votes4
answers26369
viewsQ: Find certain text in a string
Hello I’m having a doubt. nome=str(input('Qual o seu nome completo?')) print('Seu nome tem Enzo?{}'.format('Enzo' in nome.lower())) I have this code that it checks without having a certain string…