Weekly 2022-30
- Added to reading list: How To become a Full Time Creator
- Listened to Podcast: The Overflow - Data analytics: Less creepy, more empowering
- Changed Obisidian shortcuts to be the same as VSCode
Ctrl+Shift+P
for Command Palette (instead ofCtrl+P
)Ctrl+P
for Open File (instead ofCtrl+O
)
- Watched (listened to): Signal: you were the chosen one!
- Django TIL: You can pass a queryset into
get_object_or_404
:
user_comment = get_object_or_404(
self.user.comments,
pk=self.kwargs["comment_pk"],
)