IWC.CHE~*

AvatarWhat does IWC mean by? It would be "It Was Che" or "I Want Change" or "I Would Call my soul my own"^

准备入手 Inkling


Rendering in WebKit

Painting in Chromium

wp-post-batcher beta & a CMS Template

It was modify from WP Post Corrector. I just focus the relationship between image  and articls;

How to use:

1,upload all picture or product image;

2,install template and plugin

3,just as sample.csv (in the plugin) make your csv

4,use wp-post-bacher upload the articls

Done.

template:homejoon-template

plugin:wp-post-batcher beta

install ruby on rails with RVM in my ppc Leopard

RVM install question:

1, make sure you have git
tar -xjf git-1.7.3.4.tar.bz2

cd git-1.7.3.4

make prefix=/usr/local

sudo make prefix=/usr/local install

git --version


ref:  http://shiningthrough.co.uk/Installing-Git-on-PPC-Mac-OS-X-Leopard


2,fix the mess of ruby,gem version

most easy way is to rename these two file :

sudo rm /usr/bin/ruby
sudo rm /usr/bin/gem

ref:http://blog.carlmercier.com/2007/12/14/how-to-fix-that-rubygems-mess-on-leopard/


3,curl.
curl: (60) SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

solved : in "$user ~/.rvm/scripts/fetch "file  find  curl in if else  add -k;

 

4,install path

take attention to the path:

such like

which ruby

which gem

which rails

~/.rvm/

/usr/local

/usr/local/bin

 

5,

rvm install 1.9.2

rvm  list

rvm use rubyXXXX

rvm --create  use 1.9.2@rails3

rvm --default (above)

which gem?

gem install rails

6,befor install rails3

make sure you have install sqlit 3.6 and sqlite3-dev,  because gem sqlite need.

7,

rails create Path/name

get into application path

bundle install

gem install sqlit    // this is newer name  of sqlite3-ruby

 

8,rake

use:

bundle exec ( rake -t )   //new rake use this  comand

 

 

enjoy youself