Super Simple, Persistent, Dynamically Generated Django Avatars
Posted by julian.a on Jan. 27, 2017, 8:40 a.m.
Implementing persistent dynamically generated avatars in Django is super simple!
We've always been serious about supporting the open source community. We sponsor events like PyCon, DjangoCon, and DjangoGirls, we offer financial support to open source projects, and we donate oodles of code. Here are a few of our open source projects:
Eek is a spider. Eek collects metadata, verifies links, and discovers the structure of unfamiliar sites. View on Github
Widgy is a full-featured CMS with a powerful drag & drop interface developed in Python and Django. Read More
Mouseware creates secure, memorable passwords. Use it next time you need a new password.
Dinero is a gateway-agnostic payment processing library for Python, lightweight and highly usable. View on Github
Super Simple, Persistent, Dynamically Generated Django Avatars
Posted by julian.a on Jan. 27, 2017, 8:40 a.m.
Implementing persistent dynamically generated avatars in Django is super simple!
Graph Algorithms in a Database: Recursive CTEs and Topological Sort with Postgres
Posted by Iain on Jan. 26, 2017, 3:09 p.m.
Surprisingly, databases can be used to do graph algorithms. Using Postgres, this post pushes SQL to its Turing Complete limits by using a powerful device called a Recursive CTE to traverse complicated foreign key relationships as if they were directed graphs. It starts out simple and builds up to a query that will topologically sort any acyclic graph.