twitter
- what's on my mind (this week)

blog
- things I wonder about (this month)

Recent activity
I have found interesting learning from, asking and answering questions on stackoverflow.com I have answered some of those I’ve been working on lately like the ones tagged selenium, testng. Found solution how to run single browser in this setup. Yay
Deleting SimpleXmlElement Child (php)
Finally I have solved how to delete node with all his children using simpleXmlElement. Idea about helper functions is from one of the comments for DOM on php.net and idea about using unset is from kavoir.com. And it works on this website ___ function Myunset($node) { unsetChildren($node); $parent = $node->parentNode; unset($node); } function unsetChildren($node) { while (isset($node->firstChild)) { unsetChildren($node->firstChild); unset($node->firstChild); } } using [...]
Testing publishing to feedburner + facebook
Ok, I changed my blog again. It is still temporary solution. The design and idea, is still in project phase. As for now I have decided to publish only in English – this can help because there are no good plugins (yet, I hope) for billingual blogging. Ok, so just testing
New design, version and so on
There is new design of my blog / website. Imagine! Me and pink*! Anyway… after wordpress upgrade some things are not working… like gengo plugin for translation into Polish/English… So currently both translations are together – some posts are doubled. Hopefully it will not be long… Edit: *it’s not pink any more, but the themes are [...]
Testing friend connect in wordpress – any volunteers?
I just added google friend connect plugin to my wordpress blog. It means that you can leave a comment using your: openID, twitter account or google account. Doesn’t matter which one you choose: we all can connect. Could you guys try it out and tell me what you think?

delicious
- sites or posts I found interesting

W3Schools Online Web Tutorials
CSS Border Radius
TEDxMcGill 2009 talks as videos
TEDx Warsaw talks online (in English)
The Go Programming Language