-
Let's learn about sandboxing our environments shall we? Sandbox - get it? A few years ago, i decided to refresh my Python by building a complex Django project from scratch. It reminded me why Python is so awesome! On top of that I had a chance to see how Django...
-
Or: Why I chose Django over Yii I've been developing with PHP well over a decade now. From editing and writing plugins initially for Phpnuke (yep), to working with most CMS's (Drupal, WP, Magento), and eventually MVC frameworks (CI, YII, KOHANA, etc.) I've learned the language's good sides, and bad...
-
I've been trying to make a template layout for Django that makes sense, something similar to existing PHP frameworks, where the head section is in one file, and the body is in another. To do that I simply created a file called head.html (under templates/ obviously), and included it: head.html...
-
I'm working on this project that has some German titles, and a lot of irregularities inside them (question marks, underscores, etc.) Because I have to refer the object (in this case product) by some sort of understandable name, I've decided to slugify the title (basically turn "THIS EXAMPLE!!" to "this-example")...
-
I've been developing with Django on my local machine, and I was wondering if there was a way for me to deploy it on a shared hosting server, after playing around with it for a few hours, it actually works! I'm quite surprised so much is possible without having root...