Avril Lavigne – He Wasn’t
February 7, 2010Site Redesigned to Version 1.2
February 7, 2010I’ve redesigned the site to version 1.2. It lacked some features and had some dev graphics. Now it has everything and looks the way I want it to.
I did everything by myself including design and programming even though I’m a programmer.
So finally it’s out, leave your comments about what you think.
OmniWeb is Free
February 7, 2010OmniWeb is free now. So if you didn’t want to pay for it and therefore didn’t use it, now is the time to give it a try.
Lady Gaga – Beautiful, Dirty, Rich
February 6, 2010Rob Zombie – Never Gonna Stop (The Red Red Kroovy)
January 30, 2010Web Site Validators
August 3, 2009Here is a list of web site validators that you can bookmark, so not to search for them every time you need them.
http://validator.w3.org/ The W3C Markup Validation Service
http://jigsaw.w3.org/css-validator/ The W3C CSS Validation Service
http://www.w3.org/2003/12/semantic-extractor.html Semantic data extractor
If you know of any more, add them in comments.
PHP 5.3 has been released!
June 30, 2009The PHP development team is proud to announce the immediate release of PHP 5.3.0. This release is a major improvement in the 5.X series, which includes a large number of new features and bug fixes.
Some of the key new features include: namespaces, late static binding, closures, optional garbage collection for cyclic references, new extensions (like ext/phar, ext/intl and ext/fileinfo), over 140 bug fixes and much more.
A new PHP 5.3 version has been released! Go to php.net for more info.
OASIS – I’m Outta Time
May 28, 2009Say Bye to GeoCities
May 10, 2009
GeoCities does no longer support new accounts creation and as they state on their web site it’s going to be closed later this year.
Many of us have used that service and it’s a little sad to see it’s goin.
UPDATE: As of October 26, 2009 geocities has been officially closed.
Ajax in real XHTML
April 20, 2009I’ve been workin today on Live Search for this web site. It uses Ajax and since this site is made in real XHTML, JavaScript works in xml mode.
When you work with JavaScript in real XHTML sites sometimes things are different than what they used to be. For example, you make an Ajax call and got transport.responseXML object. This is what you do to add that xml to your code.
var content = $('content')
var res_xml = document.importNode(transport.responseXML.documentElement, true)
content.parentNode.replaceChild(res_xml, content)
You can’t just take plain transport.responseXML object and use replaceChild or appendChild methods on it. You need to call importNode or adoptNode first, to import it to the current document, only after that you can use replaceChild or appendChild.
It took me 2 hours to figure that out, because Safari doesn’t show any error message when you don’t use importNode, it just doesn’t work. And in Firefox it works, but without any error message or a warning, which makes it very difficult to find the error.
- Categories
- General (3)
- Music (4)
- Programming (3)
- Programms (1)
- Web (1)
- Tags
- Archives
- Links
