-
Java doesn't resolve remote dns properly and how to deal with it
I don't think that this story will be short, but it's definitely interesting. So, i got a new project where i need to cover SOAP API with automated tests written on Java. As a start point i have URL to WSDL file to work with. The "tricky" part…
-
Nice explanation of Collections in Java
Here's a link to view it in more details …
-
Plain and Simple about SQL types of joins
…
-
Found a nice solution for monitoring selenium tests on headless linux machine
Hey guys, found today from one of my colleagues a good tip about how to debug selenium tests with gui on headless linux. Maybe someone wil find it also helpful. Here's the link…
-
Comparison of python json libs in performance
I work a lot with json in python and never thought before about performance. I was using standard python json lib that goes right from the box, but today found out from one of my colleagues that there is way more faster lib called cjson. I got interested in this…
-
Rotating a two-dimensional array in Python
I was solving one of the learning tasks on Python and had to rotate two dimensional array clockwise. In Java i would have to loop over array and pass values into newly created array, but in Python i could solve this with one line of code : template = zip(*template[::-1]…