Mohamed Amine Mzoughi

Results 58 comments of Mohamed Amine Mzoughi

Hello, First of all, you must put your code inside a function (ex: int main() { // put code here }). I ll try to give you an example before...

@victoriastraberg I tested this example with an FTP server hosted at 192.168.1.17:21 on my local network and a user account named "test" with a password "0123456789C++" : ``` #include "FTPClient.h"...

LINUX preprocessor macro must be defined because in the header file there's these preprocessor instructions ``` #ifndef LINUX // If LINUX macro is NOT defined (e.g. we are compiling on...

You can specify the absolute path to the file e.g. "/home/user/test_upload.txt". In the example above, I used a relative path but you can also use absolute paths. Example : `ftpClient.UploadFile("/home/user/test_upload.txt",...

Can you show me the code using the upload() function ? (by the way, you don't need to use c_str() method when concatenating strings and when using UploadFile()). I want...

On Ubuntu, I have reached 274 : ![tetris_high_score_274](https://github.com/embeddedmz/16-Games/assets/10297393/cc470226-7d87-44ae-9c1d-8a1b36ab990e)

![tetris_high_score_452](https://github.com/user-attachments/assets/4f84c39f-5341-4fda-8606-713c8edf82c9)

Hi, I will look into this when I have time.

Hi, All the games are buggy and/or incomplete, with the exception of Tetris, which I've maintained and play often.

With httpclient-cpp (or even libcurl, the library on which this project is based on), you will need to create different execution threads. In each thread, you will be using a...