February 8, 2010
Here is a list of things I don’t like about the iPhone:
- it plays unchecked songs in iTunes
- you can’t delete music tracks right on the iPhone (if it plays unchecked songs), though you can delete videos
- bad safari hack to detect youtube videos (I’ll write more about this later)
This list will be continued as I remember more things.
Tags: iphone
Posted in Devices | 1 Comment >
February 7, 2010
I’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.
Posted in General | No Comments >
February 7, 2010
OmniWeb 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.
Posted in Programms | No Comments >
February 6, 2010
Tags: lady gaga
Posted in Music | No Comments >
August 3, 2009
Here 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.
Posted in Programming | No Comments >
June 30, 2009
The 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.
Posted in General | No Comments >
May 28, 2009
Tags: oasis
Posted in Music | No Comments >
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.
Tags: geocities
Posted in Web | No Comments >
April 20, 2009
I’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.
Tags: ajax
Posted in Programming | No Comments >
April 14, 2009
I installed ruby 1.9.1 and was gonna upgrade my rails apps to Rails 2.3. These are the problems I ran into during the upgrade.
MySQL Gem
Automatic installation of mysql 2.8.1 gem for ruby 1.9.1 on Mac OS 10.5 doesn’t work. Here is how to install it manually.
1. First thing, check whether you meet requirements on mysql gem’s page.
Note: mysql 2.8.1 gem doesn’t support MySQL < 5.0.67 and 5.1.x family (according to this post).
2. Download it from their page on RubyForge. Unpack it, cd to its root directory. Run these commands.
ruby extconf.rb --with-mysql-config=/usr/local/mysql/bin/mysql_config --with-mysql-dir=/usr/local/mysql
make
sudo make install
Ruby-Debug Gem
Ruby-debug 0.10.3 gem doesn’t support ruby 1.9.x. If you have some important sites in rails, maybe you shouldn’t switch to ruby 1.9.x yet, as debugging will not be available.
UPDATE: Ruby-debug19 is now available for Ruby 1.9.
Tags: rails, ruby
Posted in Programming | No Comments >