Posts by Dennis J Carvalho • 49 points
4 posts
-
0
votes3
answers13619
viewsA: How to split a string into an array in Javascript?
You can use the split() console.log(x.split(" ")) //resultado deverá ser ["FAT*", "FAT32*"] also the slice() var z = x.slice(0,4) var y = x.slice(4) var d = [] d.push(z) d.push(y) console.log(d)…
-
-1
votes1
answer57
viewsQ: Mysql to Sequelize
I would like to turn this code into Mysql SELECT pets.nome, pets.pulseira AS pets , localizacao.datahora, localizacao.latitude, localizacao.longitude AS localizacao FROM pets JOIN localizacao ON…
-
0
votes7
answers49407
viewsA: How to install PIP in Windows 10?
I was able to resolve it as follows; Even though my system is 64x it seems to me that git on the right wheel. It presents the version of Pip 7.0 and does not update at all. I had to install python…
-
5
votes7
answers49407
viewsQ: How to install PIP in Windows 10?
I’m trying to install the PIP according to the documentation Python. It is installed but does not work. This always happens: Pip' is not recognized as an internal or external command, a program…