I'm learning Django with Obey the Testing Goat. This page is a draft of my miscellaneous notes.
Currently on this chapter: https://www.obeythetestinggoat.com/book/chapter_javascript.html
Learning Django (draft)
Related Posts:
Logging in DjangoTo log to console in Django. Source: Logging | djangoproject.com settings.py LOGGING = { 'version': 1, 'disable_existing_loggers'… Read More
Chaining class decoratorsThe last (i.e. outer) decorator's behavior gets executed first. def require_authentication_permission(permission): def decorator(cls): cls… Read More
Disable highlighting links in Vim By default, Vim underlines the text inside anchor tags, including spaces, e.g.: Some text To disable this, create ~/.vim/syntax/ht… Read More
Verifying OpenSSL certificates Verifying that a certificate is issued by a CA How to use OpenSSL on the command line to verify that a certificate was issued by a specific CA, give… Read More
Hide vim swap files in vim browserWhile browsing files with vim, e.g. by entering the command ":e .", you might see a lot of swap files (*.swp, *.sw?) if you're using buffers. To hide … Read More
0 comments:
Post a Comment