If this is your product, you can request to edit it here.
"good"
Summary:
can do better
"Django still needs more time..."
Summary:
I used Django for my work with a gaming community site. It’s great for what it does. It’s simple and easy. Since I was already familiar with Python, it didn’t take much time at all to use get the site up and running. I’ve heard rumblings from other web developers that Django has a feeble old man behind the curtain, but it has worked for me for what I need, and the site runs well. Before I was able to remove the Beta tag on the site, I tried to run some static analysis for Django, and that was a bit of a pain. Python Django Lint was fairly effective; it did pick up the duplication error that seems to pop up a lot on the Django support site, but I didn’t like the amount of work it took to go back and address the problems. I’ll definitely continue to use both Python and Django in the future, but I’m still looking for a better analysis tool.
|
What does this code do?
public class Demo { public void method1() { synchronized (String.class) { System.out.println("on String.class object"); synchronized (Integer.class) { System.out.println("on Integer.class object"); } } }
Programming Language: Java