Matplotlib and Bokeh Cheat Sheet, Python Programming language

Matplotlib and Bokeh Cheat Sheet, Python Programming language

The matplotlib cheat sheet was created to help visualize data. Datacamp provides a cheat sheet describing the basics of seaborn. Seaborn is also a widely used library for data visualization with python. It allows getting a very clean chart with less code. Matplotlib is

GITHUB GIT CHEAT SHEET PNG IMAGE

GITHUB GIT CHEAT SHEET IMAGE

GitHub Git CHEAT SHEET. This cheat sheet features the most important and commonly used Git commands for easy reference. Git is software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. Its goals

Create a GitHub bot for automatic contributions

Create a GitHub bot for automatic contributions

Have you ever wondered how non-tech guys have such impressive contribution stats on their Github profiles? Yes, they have set up a GitHub bot that uploads the same file over and over again to the GitHub repo. This piece of content is

Properly run FastAPI uvicorn+gunicorn with HTTPS

fullchain under nginx configuration file

To run the FastAPI on HTTPS: edit systemctl service file of your app service. On Ubuntu, those files located at (/etc/systemd/system/) If you don’t remember where you put the service file of your app – just run the systemctl status command: systemctl

Properly Run Python Django under a local network

Properly Run Python Django under a local network

First, you need to find your local IP address with this command in cmd: ipconfig/all Open settings.py and add your IP address to the ALLOWED_HOSTS list: ALLOWED_HOSTS = [‘192.168.xxx.xxx’] Finally run command in the terminal: python manage.py runserver 192.168.xxx.xxx:8000 Voila, now you