Autolinked references and URLs - GitHub Docs

Learnlog
From the ObsidianMD community on Reddit
From the ObsidianMD community on Reddit: [Guide] Using Git to sync your Obsidian vault on Android devices
How to sync Obsidian vault for free using Git?
Offcially, you have to pay USD4 per month for Obsidian Sync service and subscribe as a VIP member for mobile app early access. Or you can sync between desktopo (Windows, macOS, Linux) only
artu-hnrq starred react-hook-form/react-hook-form on Github!
Using MySQL triggers to log all table changes to a secondary table - Stack Overflow
python - How to check django-guardian get_objects_for_user permissions via ForeignKey - Stack Overflow
Django REST Framework - OWASP Cheat Sheet Series
React Table: A complete guide with updates for TanStack Table - LogRocket Blog
python - django-guardian how to make object inherit permissions of related object? - Stack Overflow
python - Check permissions on a related object in Django REST Framework - Stack Overflow
Check permission when creating new objects related to parent objects · Issue #6409 · encode/django-rest-framework
React Hooks Tutorial - 18 - useReducer Hook
Kubernetes Explained in 6 Minutes | k8s Architecture
Josh’s Opinion Is Bad
artu-hnrq starred sytone/obsidian-remote on Github!
Running a system check after AppRegistry is initialized - Django Admin
You can simply register your check inside the AppConfig.ready() of some suitable app
Django 4.1: Controlling Events With Signals
A signal, or equivalent, for when all apps are loaded?
Unfortunately, there isn't. This is a long standing problem, and one
that the app-refactor was looking into; however, that effort hasn't
come to fruition
Signals: class_prepared
Since this signal is sent during the app registry population process, and
AppConfig.ready() runs after the app
registry is fully populated, receivers cannot be connected in that method.
One possibility is to connect them AppConfig.__init__() instead, taking
care not to import models or trigger calls to the app registry.
Django models, signals and email sending delay
The easiest thing is to queue the email messages and then have them sent by a daemon. Check out django-mailer.
Underscore in Python Tutorial : What is the purpose and meaning of _ & __
In Python, you will find different names which start and end with the double underscore. They are called as magic methods or dunder methods.
artu-hnrq starred django-ordered-model/django-ordered-model on Github!
How to pass arguments to the metaclass from the class definition?
Python Metaclasses – Real Python
They allow customization of class instantiation.
In Python, there are at least a couple other ways in which effectively the same thing can be accomplished
Django: @cached_property on models
Django limit_choices_to for multiple fields with "or" condition
You can use Q objects to achieve this.
MultipleColumnPrimaryKeys – Django
Currently Django models only support a single column in this set, denying many designs where the natural primary key of a table is multiple columns.
Django Proxy Model Relations - Schinckel.net
I hit upon the idea of using Django’s Proxy models, and using the related Application to determine the subclass
Instead of getting the subclass of AppConfig, that we probably want to use because the business logic hangs off that, we instead get the actual AppConfig instances
Python is a dynamic language, so we should be able to do better.
Rethink your life choices before you do this...