Articles about tips
Subscribe to my feed RSS about tips
-
I want to add more value!
Wrote at November 19, 2009 by Filippo CamilloI want to start with an easy javascript tip. With this code I can easily add a specific text to an input html element. The input box: <input id="input_id" name="articl...
no comment yettags: javascript script tips -
Where is the editingView?
Wrote at November 20, 2009 by Filippo CamilloSpeaking about iPhone application development...well, after almost two days spent looking for the reason why the editingView of my new application doesn't work...I get it! Well...
tags: iphone tips objective-c development -
Do you want to use TinyMCE mediaplugin?
Wrote at November 20, 2009 by Filippo CamilloFor the last ruby on rails project I used tinyMCE through the great tinymce_hammer plugin (link). I needed YouTube support so, after googling it, I decided to use Media plu...
tags: development RubyOnRails ruby rails tinymce tips -
How to create a menu+submenu with javascript
Wrote at November 20, 2009 by Filippo CamilloDo you want to create an attractive and useful menu/submenu with javascript? Let's go! This is the menu html structure: Here is a simple Javascript code with two functio...
tags: javascript script tips development RubyOnRails -
Git doesn't ignore my ignored files...why? let me explain
Wrote at November 23, 2009 by Filippo CamilloI'm sure, you had issues at least one time with .gitignore file. You have to keep in mind that if a file is already being tracked by Git, you'll need to remove it from cha...
tags: tips git development RubyOnRails -
The beauty of metaprogramming in attr_accessor_with_default
Wrote at January 06, 2010 by Filippo Camilloattr_accessor is one of the beauty of ruby lang. Attr_accessor_with_default is an ActiveSupport’s Module extension very useful. For example, you can give attribute :profi...
tags: ruby rails tips RubyOnRails