Agile Development. more fun less stress.

Sencha Touch (ExtJS) – Problems with Ext.TabPanel when using ‘cardswitch’ event

Posted: June 20th, 2011 | Author: vid | Filed under: Development | Tags: , , , , , | No Comments »

Currently I’m writing a mobile application based on Sencha Touch 1.1.0.
When I was using the ‘cardswitch’ event of the TabPanel class I noticed that the API docs show a wrong number of arguments:

Description in API docs:

cardswitch : ( Ext.Container this, Ext.Component newCard, Ext.Component oldCard, Number index, Boolean animated )

This is how it is implemented:

cardswitch : ( Ext.Component newCard, Ext.Component oldCard, Number index, Boolean animated )

Maybe this is helpful to some developers out there.


ExtJS 4.0 available on 28th of February

Posted: February 15th, 2011 | Author: vid | Filed under: Development | Tags: , , , | No Comments »

ExtJS 4.0 javascript framework is sceduled for release on 28.02.2011 according to this presentation on SenchaCon 2010: Introducing Ext JS 4

More videos and presentations can be found here: http://www.sencha.com/conference/videos/


Follow me on Twitter

Posted: January 28th, 2011 | Author: vid | Filed under: Development | Tags: | No Comments »

Hello,

Tweets from this blog and notifications about new posts are now available on Twitter.
Here’s the URL http://www.twitter.com/mvidec.


Rails: undefined method ‘[]‘ for #<Enumerable::Enumerator>

Posted: September 29th, 2010 | Author: vid | Filed under: Development | Tags: , , | No Comments »

I was moving an older Rails app to a new server when I encountered this error. This gives a good description of what was going on and shows how to fix it:
http://groups.google.com/group/attachment_fu/browse_thread/thread/502dd4504a59c84d.
Ruby 1.8.7 and acts_as_attachment didn’t get along with each other in my case. However, there’s a typo where .first == ‘/’ is replaced.
starts_with(‘/’) should be starts_with?(‘/’).
That’s no rocket science but could be useful for noobs (on Rails).


RubyGems: undefined method ‘manage_gems’ for Gem:Module (NoMethodError) – easy fix

Posted: March 25th, 2010 | Author: vid | Filed under: Development | 9 Comments »

After reading through many comments on my post RubyGems: undefined method ‘manage_gems’ for Gem:Module (NoMethodError) I now recommend following fix:

Read the rest of this entry »


Back to the old outfit

Posted: December 31st, 2009 | Author: vid | Filed under: Development | No Comments »

Some readers reported problems in order to read the code blocks. So i changed the theme back to the original one.

Happy new year, v.


New Outfit

Posted: August 10th, 2009 | Author: vid | Filed under: Development | Tags: , , | No Comments »

Hi, after searching some wp-themes databases I chose to give my blog a new look. So here it is.

I decided to go with the Hemingway theme for now. If you have any suggestions for another cool theme feel free to give me a hint.


Retro Gaming with Sega’s Dreamcast

Posted: June 3rd, 2009 | Author: vid | Filed under: Development | Tags: , , , , | No Comments »

I found this yesterday at dev.yuanworks.com. Take a look at it if you are interested in independent games development. You’ll find some nice articles about game design, development and programming.

Looks like I’m gonna reactivate my dreamcast.


Typo3: Multi-Domain error when using a subdirectory as Typo3 root with mod_alias

Posted: May 13th, 2009 | Author: vid | Filed under: Development | Tags: , , , , | No Comments »

Multi-Domain setup broke on Typo3 version 4.2.2 when I tried to use my Typo3 root folder as subdirectory with mod alias.
Read the rest of this entry »


Rails: Migrate databases in production environment

Posted: May 12th, 2009 | Author: vid | Filed under: Development | Tags: , | No Comments »

How to migrate databases in rails.
Read the rest of this entry »