Results 7 comments of Fulvio Spelta

Hi, any news ? I'd like to use a p7b cert with all the certification chain in order to avoid problems with browsers config. Is it possibile ? Any hint...

My solution in sketch: I've defined an "Expect" header: const char\* headers[] = { "Content-Length", "Expect", NULL }; then in POST handling function I've added the code: const char\* expectHeader...

Hi all, I'd like to share a solution that simply worked for my configuration. **My installation problem recap** During Build command i get "CERTIFICATE_VERIFY_FAILED" error downloading a requested package. **Diagnose**...

> This sends me to this page but i haven't found a working solution You posted too few info. Could be that your problem is the "man in the middle"...

This can help: [https://tecadmin.net/delete-files-older-x-days/](https://tecadmin.net/delete-files-older-x-days/)

`find -type f -mtime + -delete` Example: find and delete txt files older than 7 days `find ./*.txt -type f -mtime +7 -delete`