Friday, June 15, 2007

Drinking Water And My Mouth Goes Dry

My MetaQuerier Beta talk has been selected for the RailsConf Europe 2007

I just published the first version with usable festivaltts4r plugin for Ruby on FestivalttsOnRails Rails. With this library and this plugin you can make your applications Ruby and Ruby on Rails hype!

The plugin for rails in ubuntu is very easy to use: Install



sudo apt-get install festival lame

  1.   festivalttsOnRails to install the plugin Ruby on Rails: 

    script / plugin install \\
  2. svn: / / rubyforge.org/var/svn/festivaltts4r/plugins/festivaltts_on_rails

  3.   text_to_flash_player 
    Using the method (text) in your views:



  4.   
    plugin currently only available in the version with English voice, but as proof of concept and can serve. Depending on the interest in the plugin and the help of the community I can do better. <%= text_to_flash_player "Talk me!" %>
    I have found that works on Ubuntu Linux, if you can test it on other platforms would be grateful if you commented to me how it works;)
    can also use the library festivaltts4r for voice applications with Ruby in local mode. Like the plugin is very easy to install and use: Install

tts libraries and generating mp3:



sudo apt-get
    install festival lame

  1.  festivaltts4r  Install gem: 

    sudo gem install festivaltts4r


  2.   Include necessary gems and call to_speech method that is defined in the String class: 

    require "rubygems" require
  3. "festivaltts4r"
  4. "I'm talking". to_speech
      


    This project was carried out using the libraries
    Festival TTS and
    lame.
The flash mp3 player that plays the voice on the rails plugin is done by
dew licensed Creative Commons Attribution-ShareAlike License France .
More information on the official website of the project:
festivaltts4r.rubyforge.org

Wednesday, June 13, 2007

Official Pokemon Legendary List

2006-2007 Season

And to end the 2006 season - 2007 and you can see in the link FEVAFUTBOL you have in the right column, the results of our teams or below.

C omo comment Polopinos thank the few who participated in this blog its "interest", and big thanks to our kids who day after day has shown his dedication to football and not have hesitated to attend (except for some cases) to all practices and games on Saturdays and as many weekdays after school.






P ara next season ... we'll talk more and better.




U n greet.


ALEVINES 2006-2007




BENJAMIN 2006-2007



Monday, June 11, 2007

Cost Of Whole Laser Hair Body

Voice your

Viewing Blog _why new blog (http://hackety.org) discovered
Scribble!
which is a Ruby version of NodeBox . Allows very cool drawings using Ruby. I wanted to try Linux, but found no documentation so I had to research how to install it. I got to work on Ubuntu running the following: and install gtk2 libraries for ruby \u200b\u200bcairo:



sudo apt-get install libcairo-ruby1.8-ruby libgtk2
svn co svn: / / hamptoncatlin.com / scribble / trunk scribble

  1.   
    scribble execute: cd

  2. bin scribble / scribble

  3.  execute  
    This Scribble! and we can make pictures like this:

  4. This picture is almost unique in that it is randomly generated from this code:



brush.fill = rand (0.1) + 0.9, rand (0.4) + 0.6 rand (0.1) + 0.9, rand (0.1) +0.1 Scribble! Screenshot blanket

brush.fill = rand (0.1) + 0.9, rand (0.4) + 0.6, rand (0.1) + 0.9, rand (0.1) +0.1
brush.stroke = rand (0.4) + 0.6, 0, 1 , 0.2
 brush.width = 2 100 ×  
do
circle: center => [rand (size [0]), rand (size [1])],: radius => rand (50) + 10 end





If you are motivated and create a cool design with Scribble! Share putting the source code as a comment on this entry;)


Tuesday, June 5, 2007

Electric Generators Ditect

Ruby on Rails applications with Ruby and Scribble Draw!

When building a model with a ruby \u200b\u200bon rails migration create a table in the database. The name of this table is equal to the pluralized form of the name model. In MySQL this migration will generate a sql statement of the form:


model_name_pluralized CREATE TABLE (`id` int (11) DEFAULT NULL auto_increment PRIMARY KEY, `created_on
 As you can see, the column names are quoted but not named in the table. If using as a model name in the singular form of a MySQL reserved word, the migration will generate a sql statement that will fail as  


Mysql:: Error: You have an error in your SQL syntax; check the manual That corresponds to your MySQL server version
for the right syntax to use near 'databases (`id` int (11) DEFAULT NULL auto_increment PRIMARY KEY , created_on `da`' at line 1: CREATE TABLE databases (`id` int (11) DEFAULT NULL auto_increment PRIMARY
KEY , `created_on` date DEFAULT NULL, `name` varchar (255)
DEFAULT NULL) ENGINE = InnoDB
  

Last week I read about Josh Susser
transparencies
(
Laying Tracks
) who encouraged me to write a patch for this problem.
Before writing anything looked if I could find something related. I found a similar ticket on the Rails trac
:

# 7850 [PATCH] Added missing backticks to mysql adapter