A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| #models.py | |
| class Task(models.Model): | |
| title = models.CharField(max_length=255) | |
| description = models.TextField() | |
| def __unicode__(self): | |
| return self.title |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
db.votes.aggregate([{
$lookup: {
from: "users",
localField: "createdBy",
foreignField: "_id",
| .cm-green { | |
| background-image: linear-gradient(30deg,#16d6d9,#96cc29); | |
| } | |
| .cm-blue { | |
| background-image: linear-gradient(30deg,#009cf3,#16d6d9); | |
| } | |
| .cm-pink { | |
| background-image: linear-gradient(30deg,#ff2277,#7a288c); |