Tuesday, December 27, 2011

PhD of Computer Engineering in Boğaziçi University

I forgot to write here for a long time. This fall I started my PhD studies in Boğaziçi University. I'm currently taking some courses but I'll be working on Complex Network Analysis in general. In these days I'll be starting to study for my final exams. This semester I've taken Complex Networks, Social and Semantic Web, Artificial Intelligence courses.

Django 'matching query does not exist'

When you encounter 'ClassName matching query does not exist' error in Django, it means that somewhere you have such code:

item = ClassName.objects.get(key=value)

but there's no item that satisfies key=value. So it gives this error. Be aware of this. There are some other sites which makes you confuse although this is a very simple error