/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

brntn.me
| | mherman.org
2.0 parsecs away

Travel
| | Know a little Ruby? Ready to start web development? Before jumping to Rails, get your hands dirty with Sinatra. It's the perfect learning tool. My recommendation: Start with a basic dynamic website, backed with SQLite. Create and manage your database tables with raw SQL. Practice deploying on Heroku. Practice.
| | www.laac.dev
1.5 parsecs away

Travel
| | Explore common mistakes made with the Django framework and how they introduce issues into your code.
| | simpleisbetterthancomplex.com
1.3 parsecs away

Travel
| | The Django's built-in authentication system is great. For the most part we can use it out-of-the-box, saving a lot ofdevelopment and testing effort. It fits ...
| | www.paepper.com
19.2 parsecs away

Travel
| Unit testing your models in Django As a good developer, you write unit tests, of course. You will probably even write your tests before implementing your logic in a test-driven approach! However, when developing complex models which have interactions and foreign keys, writing tests can get messy and complicated. Say you want to test a model which has many dependencies to other models via foreign keys. To create an instance of your model, you first need to create all the other model instances which your m...