Posts by Ana Paula Lima • 103 points
8 posts
-
1
votes1
answer52
viewsQ: Which Timezone to use for apschedule?
I’m trying to schedule a task for weekdays, from 8hrs to 17hrs, every ten minutes, using the apscheduler module. from apscheduler.schedulers.background import BackgroundScheduler cron =…
-
0
votes1
answer25
viewsQ: How to create a Bucket on Aws S3 using android?
I’m trying to do it this way: public AmazonS3Client getS3Client(Context context) { BasicAWSCredentials credentials = new BasicAWSCredentials(accessKey, secretKey); s3Client = new…
-
1
votes0
answers78
viewsQ: How to wait for the request to finish to get the data?
I need to take the data that comes inside a Sponse, but when I get a get on the Sponse object it gives error saying it is null. I think it has something to do with my get being done before Sponse…
-
0
votes2
answers874
viewsQ: How to pass an object inside a props?
I’m trying to show the attributes of the music object inside a component but it only renders the list but not the attributes of the object I passed. What I’m doing wrong? Objeto Musica: function…
-
2
votes0
answers295
viewsQ: How to page using Flask and return in Json?
I need to make a query to the bank (neo4j) and return a json, but as the answer is very large precise paging. I’ve looked at the stack a lot, but most responses use the sqlalchemy pagination method…
-
2
votes1
answer105
viewsQ: String comparison gone wrong - Python
I have this function that checks if the code I typed is in the code list, but even though the code is in the list it does not enter if and returns false. I can’t understand why it doesn’t work.…
-
1
votes1
answer73
viewsQ: Many logs with the message "setTypeface with style : 0"
I’m making a app in the android studio, and after spending a few activities the screen becomes black and the last record of the log cat is this message. I’ve looked at the other questions about it…
-
1
votes0
answers2231
viewsQ: Error: Expected BEGIN_OBJECT but was BEGIN_ARRAY at line 1 column 2 path $
I am trying to consume data from an API using retrofit, but whenever I try to connect it returns this error. I’m using a class that is an Array of these objects (Sisalfacatalog) and throwing the…