So whats the difference between Serial.print/client.print and Serial.write/client.write?
The print() methods convert the value to a string, and send the string to the proper place. The write() method do no conversion. They simply send the byte to the proper place (in binary).
Awesome, thanks!