Sunday, 23rd February 2014
What are the most important things to keep in mind when doing a presentation?
Know your material, and don’t speak too fast.
[... 28 words]Should I use Django forms or pure HTML in order to do not establish borders for the growth of my app?
Use Django forms. Django scales horizontally on the front-end, so if your site needs to handle large amounts of traffic you just need to run multiple front-end servers—your form handling code will scale up just fine.
[... 65 words]