Archive

Archive for April, 2008

links for 2008-04-18

April 18th, 2008

Links

links for 2008-04-17

April 17th, 2008

Links

links for 2008-04-16

April 16th, 2008

Links

links for 2008-04-15

April 15th, 2008

Links

links for 2008-04-14

April 14th, 2008

Links

Nested Namespace in Rails 2.0

April 13th, 2008

$> mate config/routes.rb
[ruby]map.namespace :admin do |admin|
admin.resources :user
end[/ruby]
$> rake routes
[ruby]admin_user_index GET /admin/user
{:controller=>’admin/user’, :action=>’index’}
……
[/ruby]

$> mate config/routes.rb
[ruby]map.namespace :admin do |admin|
admin.namespace :user do |user|
user.resources :profile
end
end[/ruby]
$> rake routes
[ruby]admin_user_profile_index GET /admin/user/profile
{:controller=>’admin/user/profile’, :action=>’index’}
……
[/ruby]

English, Ruby ,

links for 2008-04-13

April 13th, 2008

Links

links for 2008-04-12

April 12th, 2008

Links

links for 2008-04-11

April 11th, 2008
  • DARE is a local http server that makes it easy to create, test, and package AIR applications. It allows you to develop and test using your HTML/JS tools of choice and a web browser. You can use the “Refresh” button to test and package your application.
    (tags: adobe air flex)
  • This free, embeddable version of our FLV Player (AS 3.0) Basic Skins component does not require Flash (we provide the .swf in the download package) and has several advanced features
  • The JW FLV Media Player (built with Adobe’s Flash) is an easy and flexible way to add video and audio to your website. It supports playback of any format the Adobe Flash Player can handle (FLV, but also MP3, H264, SWF, JPG, PNG and GIF).

Links

links for 2008-04-10

April 10th, 2008

Links