Certbot letsencrypt renewal attempts failed ‘ascii’ codec can’t decode byte 0xe2

I have used Certbot https://certbot.eff.org/ over 500 websites till now. Certbot Automatically enable HTTPS on your website with EFF’s Certbot, deploying Let’s Encrypt certificates. Read more articles about Certbot Here Certbot allows many servers (Nginx / Apache / Wowza / Icecast) to enable AUTOmatic SSL renew using Cronjobs. But sometimes Copy/Paste make strange errors in … Read more

Bottle: Python Web Framework

I really like Bottle: Python Web Framework. Bottle is very simple, fast and powerful Python micro-framework. It is perfect for small web applications and rapid prototyping where you need simple/small API server. Bottle is a fast, simple and lightweight WSGI micro web-framework for Python. Installation Install Bottle with pip install bottle or download the source … Read more

Download Gmail Blocked Email Attachments

Anti-virus warning – 1 attachment contains a virus or blocked file. Downloading this attachment is disabled. Gmail says …. File types you can’t include as attachments .ADE, .ADP, .BAT, .CHM, .CMD, .COM, .CPL, .EXE, .HTA, .INS, .ISP, .JAR, .JS (NEW), .JSE, .LIB, .LNK, .MDE, .MSC, .MSI, .MSP, .MST, .NSH .PIF, .SCR, .SCT, .SHB, .SYS, .VB, … Read more

JSON2CSV – convert json files to csv

JSON2CSV is a python script that converts json data to a csv file. json2csv.py_.txt Download above text file “json2csv.py_.txt” then rename “json2csv.py” >> python json2csv.py “input.json” “output.csv” JSON – input.json [ { “createdAt”: “2014-02-20T18:15:56.818Z”, “fbID”: “34534534534”, “lessonQuestions”: 5, “lessonScore”: 2750, “lesson_no”: 2, “objectId”: “htmsuPr6F6”, “updatedAt”: “2014-02-22T15:42:38.166Z” }, { “createdAt”: “2014-02-21T16:45:52.550Z”, “fbID”: “100001132788807”, “lessonQuestions”: 5, “lessonScore”: … Read more