Posts by Antonio José • 1 point
5 posts
-
0
votes1
answer85
viewsA: Angular - Typescript filter in array
For registration purposes and, who knows, be useful to others, follows the solution as the answer of user140808 getCidades(idEstado: any): Observable<any> { return…
-
-4
votes1
answer85
viewsQ: Angular - Typescript filter in array
I have a json from Brazilian cities. To get all the cities of the state that exist in the idEstate ARRAY with SINGLE item, I do it as follows: getCidades(idEstado: any): Observable<any> {…
-
-2
votes1
answer35
viewsQ: What service do I use to receive data in AWS sent by MQTT?
Which service is recommended for me to receive data sent via MQTT protocol? Should I use Amazon MQ ? or the Aws Iot ? The data will be sent frequently 1 minute and can reach 200 messages at a time,…
-
0
votes1
answer70
viewsA: SET TIMEZONE in raw query
The problem occurs when the environment variable is declared in Settings.py: USE_TZ = True To use cursor or raw query, this should be removed.…
-
0
votes1
answer70
viewsQ: SET TIMEZONE in raw query
The raw query below shows the following error: query = Resume.objects.raw(""" SET TIMEZONE='America/Sao_Paulo'; SELECT id, datetime_now FROM resume; """) raise AssertionError("database connection…