#1
It's not really a big deal since not many people use it...but I thought I'd mention it.  The code tags are rolling up the contents instead of putting the contents on separate lines as seen in the below example. Tested in Chrome and Firefox.  I'm positive it behaved differently a few weeks ago, but today is the first time that I noticed the change.

Example using code tags:
Code:
import requests
import json
from typing import List, Dict

UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"
Cookies = requests.cookies.RequestsCookieJar()
Session = requests.Session()

Same content in quotes:
 
Quote:import requests
import json
from typing import List, Dict

UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"
Cookies = requests.cookies.RequestsCookieJar()
Session = requests.Session()