Posts by Tiago Pereira • 43 points
5 posts
-
0
votes2
answers199
viewsA: I’m trying to use an asynchronous function in python-3, but it’s giving error
I found the solution: t = threading.Thread(target=picture) #added to queue t.start()
-
0
votes2
answers199
viewsQ: I’m trying to use an asynchronous function in python-3, but it’s giving error
Error: Warning (from warnings module): File "C:\Users\tiago.pereira\Desktop\python\kivy\kivy_teste.py", line 43 pythoncom.PumpMessages() RuntimeWarning: coroutine 'Keyboard' was never awaited…
-
0
votes0
answers43
viewsQ: How do I delete a song in my library using the Spotify API?
I have the following code: $.ajax({ //url: 'https://api.spotify.com/v1/me/tracks?ids=1ftBvRj542ol7LT1A0EtL7', url: 'https://api.spotify.com/v1/me/tracks', method:"delete", scope:…
-
0
votes1
answer229
viewsQ: Connect to a local database c#
What is the correct syntax of Sqlconnection to connect to a local database? I think it’s something like this!! SqlConnection liga = new SqlConnection(@"Data Source=(LocalDB)\v11.0;…
-
3
votes2
answers649
viewsQ: Sort a Multidimensional array by column c#
I have a multidimensional array: string[,] classificacao = new string[20, 2]; and which has the following inputs: classificação[0,0]="Hamilton"; //ISTO É O NOME DO JOGADOR classificação[0,1]="20";…
c#asked Tiago Pereira 43