diff --git a/cheatsheets.tex b/cheatsheets.tex index cdf7253..c8888d7 100644 --- a/cheatsheets.tex +++ b/cheatsheets.tex @@ -321,16 +321,12 @@ \begin{myboxed}{Getting help} \href{https://matplotlib.org} {\faIcon{globe}\,matplotlib.org}\\ - \href{https://github.com/matplotlib/matplotlib/issues} - {\faIcon{github}\,github.com/matplotlib/matplotlib/issues}\\ \href{https://discourse.matplotlib.org} {\faIcon{discourse}\,discourse.matplotlib.org}\\ \href{https://stackoverflow.com/questions/tagged/matplotlib} {\faIcon{stack-overflow}\,stackoverflow.com/questions/tagged/matplotlib}\\ - \href{https://twitter.com/matplotlib} - {\faIcon{twitter}\,twitter.com/matplotlib}\\ - \href{https://mail.python.org/mailman/listinfo/matplotlib-users} - {\faIcon[regular]{envelope}\,Matplotlib users mailing list} + \href{https://matrix.to/#/#matplotlib_matplotlib:gitter.im} + {\faIcon{gitter}\,gitter.im/matplotlib/matplotlib} \end{myboxed} diff --git a/check-links.py b/check-links.py index f5c3f74..3b70b3f 100755 --- a/check-links.py +++ b/check-links.py @@ -11,8 +11,8 @@ status_codes = [pdfx.downloader.get_status_code(ref.ref) for ref in refs] broken_links = [(ref.ref, code) for ref, code in zip(refs, status_codes) if code != 200] -# It seems that Twitter and stackoverflow do not respond well to the link checker and throws a 400 -broken_links = [b for b in broken_links if not ('twitter.com' in b[0] or 'stackoverflow.com' in b[0])] +# It seems that stackoverflow does not respond well to the link checker and throws a 400 +broken_links = [b for b in broken_links if not ('stackoverflow.com' in b[0])] if len(broken_links) == 0: sys.exit(0)