Posts by Vinicius Souza • 246 points
6 posts
-
0
votes1
answer67
viewsA: Measured data in a 5min range - What language to use. Prog?
I work with CSV’s that have large sizes, such as 10Gb, 12Gb and so on. Basically I use Python with some libraries that help me in performance and facilitate some operations, take a look: Pandas:…
characteristic-languageanswered Vinicius Souza 246 -
3
votes1
answer390
viewsQ: Calculate percentage of a face in an image
How would the calculation of porcetangem of a face in an image? Suppose I had a 3x4 photo of a user, but he had a lot of his hair covering his face. Is there any way to detect that the image does…
-
0
votes3
answers4401
viewsA: How to break lines when sending an email?
You can break lines using \n , I can’t tell you if this gets you out of the spam box, because this is much more complex than more or less tags in the body of the message.
phpanswered Vinicius Souza 246 -
0
votes2
answers97
viewsA: The PHP Exception class for the system?
If you need something to run even if there is an exception, you need to use "Finally". example: // O codigo abaixo vai imprimir: 1234 echo '1'; try { echo '2'; throw new Exception(); } catch…
-
2
votes7
answers175
viewsA: Contact Form
You can do this in pure Jquery or Javascript. But it’s a great practice for you to always validate inputs on your system. Then always validate in PHP, even if it has been validated in the Front-end…
-
6
votes5
answers8633
viewsA: What is the most complete way to install python on Windows?
I advise you to study a little about Vagrant or some tool that will be able to provision several isolated environments of your operating system. You might as well work on windows and your desktop is…