140
Java Specification – chapter three
Comments: 1I’ve just started to read Java Specification, and I suggest every java programmer should read it. I try to write some interesting facts in this post and future posts. In first two chapter I didn’t found anything interesting. I almost pass over chapter three, but fortunately I found some interesting information on the first page. […]
Categories
JPA vs Hibernate
Comments: 10As already everyone of you know, when you google “jpa vs hibernate” you find so much articles which of them are better. In our company we investigate which orm is better. First at all, both ORMs now use xml mappings and annotations, deployer can override all of the properties, in jpa it is more convenient […]
Categories
Decorators by Python
Lately, I’m using Django. So I also learn Python. And I found that python is very clean and nice language. As we know Python allows that function can also be a parameter to another function. So code similar to this is ok. def decorator(fun): print fun.__name__ def my_fun(): print “hello world” decorator(my_fun) But Python provides […]
Categories
total page 474
per page size 3
last pagination Page 158