[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

BlueCloth + eRuby error

Belorion

12/17/2004 10:36:00 PM

I am trying to use BlueCloth markdown in a website.

I installed the BlueCloth gem as root:

$> gem install bluecloth --rdoc

Everything seemed to go fine. If I go into irb, I can:

irb(main):003:0> require 'rubygems'
=> true
irb(main):004:0> require_gem "BlueCloth"
=> true
irb(main):005:0> b = BlueCloth.new( "*abcd*" )
=> "*abcd*"

However, when I:

require 'rubygems'
require_gem 'BlueCloth'

From within a .rhtml file, it fails at the require_gem line with the
following error:

[Fri Dec 17 16:01:46 2004] [error] mod_ruby: error in ruby
[Fri Dec 17 16:01:46 2004] [error] mod_ruby:
/usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:63:in
`directory?': Insecure operation - directory? (SecurityError)
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:63:in
`search_loadpath'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:63:in
`delete_if'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:63:in
`search_loadpath'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:4:in
`require'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:261:in `default_dir'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:86:in `dir'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:248:in `set_paths'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:97:in `path'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems/cache.rb:31:in
`from_installed_gems'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:75:in `cache'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:109:in `activate'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:34:in `require_gem'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/home/recipe/public_html/test.rhtml:21
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from (eval):0
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/1.8/apache/eruby-run.rb:116:in `eval_string_wrap'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/1.8/apache/eruby-run.rb:116:in `run'
[Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
/usr/local/lib/ruby/1.8/apache/eruby-run.rb:72:in `handler'


I restarted my webserver after installation of BlueCloth, but that
didn't help. Any idea how to get this gem to work within
eruby/mod_ruby?


7 Answers

Belorion

12/17/2004 10:39:00 PM

0

I take that back, it's failing on the "require 'rubygems' line, not
the 'require_gem 'BlueCloth' line.


On Fri, 17 Dec 2004 16:36:09 -0600, Belorion <belorion@gmail.com> wrote:
> I am trying to use BlueCloth markdown in a website.
>
> I installed the BlueCloth gem as root:
>
> $> gem install bluecloth --rdoc
>
> Everything seemed to go fine. If I go into irb, I can:
>
> irb(main):003:0> require 'rubygems'
> => true
> irb(main):004:0> require_gem "BlueCloth"
> => true
> irb(main):005:0> b = BlueCloth.new( "*abcd*" )
> => "*abcd*"
>
> However, when I:
>
> require 'rubygems'
> require_gem 'BlueCloth'
>
> From within a .rhtml file, it fails at the require_gem line with the
> following error:
>
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: error in ruby
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby:
> /usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:63:in
> `directory?': Insecure operation - directory? (SecurityError)
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:63:in
> `search_loadpath'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:63:in
> `delete_if'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:63:in
> `search_loadpath'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:4:in
> `require'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:261:in `default_dir'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:86:in `dir'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:248:in `set_paths'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:97:in `path'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems/cache.rb:31:in
> `from_installed_gems'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:75:in `cache'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:109:in `activate'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/site_ruby/1.8/rubygems.rb:34:in `require_gem'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /home/recipe/public_html/test.rhtml:21
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from (eval):0
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/1.8/apache/eruby-run.rb:116:in `eval_string_wrap'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/1.8/apache/eruby-run.rb:116:in `run'
> [Fri Dec 17 16:01:46 2004] [error] mod_ruby: from
> /usr/local/lib/ruby/1.8/apache/eruby-run.rb:72:in `handler'
>
> I restarted my webserver after installation of BlueCloth, but that
> didn't help. Any idea how to get this gem to work within
> eruby/mod_ruby?
>


hotac

11/6/2010 2:30:00 PM

0

On Nov 5, 10:13 pm, "n.t." <cool_...@hotmail.com> wrote:
> On Nov 5, 7:49 am, hotac <hochim...@gmail.com> wrote:
>
>
>
>
>
> > On Nov 5, 7:44 am, "n.t." <cool_...@hotmail.com> wrote:
>
> > > The Fed vu+`a mo+'i "in" thie^m 600 ty? ba.c dde^? "pump" vo^ thi. truo
> > > +`ng.  Mu.c ddi'ch la` dde^? la`m cho la~i sua^'t vay tie^`n dde^? mua
> > > nha` cu+?a hoa(.c ha`ng ho'a ca`ng tha^'p ddi dde^? "ki'ch thi'ch"
> > > kinh te^'.
>
> > > Ngoa`i ra, lo'ng ra`y China cho+i ba^?n cu+' ki`m ha~m gia' tri.
> > > tie^`n te^. cu?a ho. khie^'n cho ha`ng xua^'t ca?ng cu?a My~ va` ca'c
> > > nuo+'c kha'c tro+? ne^n ma('c mo?...  Tha`nh ra, cu' gamble na`y cu?a
> > > the Fed cu~ng gio^'ng nhu+ mo^.t cu.c ga.ch cho.i dda.i hai con
> > > chim :-)
>
> > > Chu+a ke^? con chim thu+' ba cu?a hai nha` Quo^'c ho^.i la` cu+' nhu
> > > +'t quye^'t ddo`i tru` kinh te^' My~ ca`ng... ta`n ta. thie^m dde^?
> > > Uncle Obama chi? la`m tonton dduo+.c vo~n ve.n chi? mo^.t nhie^.m ky`
> > > thui! :-)
>
> > > Tha('c ma('c:  Why the Fed didn't do more of this earlier is beyond
> > > me.
>
> > > Cheers,
> > > n.t.
>
> > Go back and take Economy 101.
> > Your dollar is worth 90 cents compared with that last year.
> > Next year, it will be worth 90 cents compared with your today dollar.
> > Th?ng Do Thái này ch? t? làm giàu cho m?y th?ng Do Thái làm ch? nhà
> > bang.
> > Whatever you say, the prices at the supermarket keep going up. Never
> > remain the same.
>
> Tui vu+`a dda(.t ca^u ho?i la` ta.i sao the Fed didn't do more of this
> earlier (before midterm elections) thi` lie^`n tu+. tra? lo+`i dduo+.c
> ca^u ho?i cu?a chi'nh mi`nh.
>
> Vi` tui dda~ no'i la` "cu' gamble" thi` la` gamble ma` la`m sao chu.p
> giu+.t dduo+.c.  Chi'nh vie^.c the Fed had a meeting on Wed morning
> right after Tuesday night dda~ ddu? cho tha^'y la` ho. muo^'n la`m
> vie^.c na`y tu+` la^u, nhu+ng kho^ng muo^'n bi. ddo^~ thu+`a ba^.y
> ba. :-)
>
> Co`n vie^.c ba'c no'i ve^` "Inflation" la` chuye^.n co' tha^.t.
> Inflation xe't cho ky~ cu~ng gio^'ng nhu+ ta(ng thue^' tie^u thu.
> hoa(.c "thue^' ti`nh nguye^.n" khi ba' ta'nh xu'm nhau mua ve' so^'
> kie^'n thie^'t cuo^'c gia va^.y ddo' mo+`! :-)
>
> Mie^~n sao, ddo^` ba'n cha.y, tie^.m mua the^m ddo^` tru+~, ha~ng muo
> +'n thie^m nguo+`i sa'ng che^'... thi` la` nuo+'c My~ se~ so+'m qua
> dduo+.c con tra(ng na`y :-)
>
> And then about a year and a half from now, Tonton Obama se~ ho?i, "Are
> you better off now than you were four years ago?" :-)
>
> Heheheh!!!
> n.t.- Hide quoted text -
>
> - Show quoted text -

Duh!

Where were you in the last two years? Didn't you hear the term
"stimulus". It's a DIRTY word now in Wash. D.C. That's why the
Democrats lost BIG last week. Wake up and smell coffee. What is TARP?
Now more to come.

They use different term instead, but the same thing.


http://www.forbes.com/2009/01/21/tarp-banking-treasury-biz-wall-cx_lm_012...

hotac

11/6/2010 2:52:00 PM

0

One more thing, I don't understand about those politicians.
Now, every time they open their mouths, they say, "Create Jobs create
jobs, create jobs". That’s the magic word to get votes. No more, no
less.
Most products used in the US are imported, while jobs are exported
every day. Everything is outsourcing, India and China. 90% of
stimulus money for "green" is made or spent in China. Cannot go
against the law of gravity. Jobs are automatically created where
labors are cheap.

So next time if they say, "Create jobs", ask them to make it clear
where, in the US or China or India, or where else, and how.



tuna

11/6/2010 3:40:00 PM

0

Good morning

Cu~ng kho^ng ha(?n la` va^.y . Tua^`n na`y uncle Obama ddang ddi qua
A^'n Ddo^.
dde^? noa'i chuye^.n la`m a(n kinh te^' vo+'i A^'n DDo^.

Du` sao anh A^'n DDo^. i't gian xa?o nhu+ anh Che^.t ho+n (hah haha I
hate old Curry Indian too)
Sau na`y thi` khi go.i Technical support thi` ma^'y anh o+? Mumbai
noa'i accent A^'n DDo^. he^'t

Anh Boo la`m gi` gioa?i ba(`ng ma^'y anh ddo' :-)) ma` ho. chi? muo+'i
15-20/ DDo^ 1 gio+` thui

Mo+`i ba` con chua^?n bi. ddi Mumbai qua^'n xa ro^ng ga^'m lu.a Bombay
ddi cho+i golf

Co^ HX ngu? tru+a o+? sa^n golf dda^y

http://www.fotosearch.com/BLD018/g...

tuna,

-------------------------

On Nov 6, 7:51 am, hotac <hochim...@gmail.com> wrote:
> One more thing, I don't understand about those politicians.
> Now, every time they open their mouths, they say, "Create Jobs create
> jobs, create jobs".  That’s the magic word to get votes.  No more, no
> less.
> Most products used in the US are imported, while jobs are exported
> every day.  Everything is outsourcing, India and China.  90% of
> stimulus money for "green" is made or spent in China. Cannot go
> against the law of gravity.  Jobs are automatically created where
> labors are cheap.
>
> So next time if they say, "Create jobs", ask them to make it clear
> where, in the US or China or India, or where else, and how.

hotac

11/6/2010 4:12:00 PM

0

On Nov 6, 11:40 am, tuna <tu...@nz11.com> wrote:
> Good morning
>
> Cu~ng kho^ng ha(?n la` va^.y . Tua^`n na`y uncle Obama ddang ddi qua
> A^'n Ddo^.
> dde^? noa'i chuye^.n la`m a(n kinh te^' vo+'i A^'n DDo^.
>
> Du` sao anh A^'n DDo^. i't gian xa?o nhu+ anh Che^.t ho+n (hah haha I
> hate old Curry Indian too)
> Sau na`y thi` khi go.i Technical support thi` ma^'y anh o+? Mumbai
> noa'i accent A^'n DDo^. he^'t
>
> Anh Boo la`m gi` gioa?i ba(`ng ma^'y anh ddo' :-)) ma` ho. chi? muo+'i
> 15-20/ DDo^ 1 gio+` thui
>

$3.50/hr



> Mo+`i ba` con chua^?n bi. ddi Mumbai qua^'n xa ro^ng ga^'m lu.a Bombay
> ddi cho+i golf
>
> Co^ HX ngu? tru+a o+? sa^n golf dda^y
>
> http://www.fotosearch.com/BLD018/g...
>
> tuna,
>
> -------------------------
>
> On Nov 6, 7:51 am, hotac <hochim...@gmail.com> wrote:
>
>
>
> > One more thing, I don't understand about those politicians.
> > Now, every time they open their mouths, they say, "Create Jobs create
> > jobs, create jobs".  That’s the magic word to get votes.  No more, no
> > less.
> > Most products used in the US are imported, while jobs are exported
> > every day.  Everything is outsourcing, India and China.  90% of
> > stimulus money for "green" is made or spent in China. Cannot go
> > against the law of gravity.  Jobs are automatically created where
> > labors are cheap.
>
> > So next time if they say, "Create jobs", ask them to make it clear
> > where, in the US or China or India, or where else, and how.- Hide quoted text -
>
> - Show quoted text -

n.t.

11/7/2010 2:39:00 PM

0

On Nov 6, 8:29 am, hotac <hochim...@gmail.com> wrote:
> On Nov 5, 10:13 pm, "n.t." <cool_...@hotmail.com> wrote:
>
>
>
> > On Nov 5, 7:49 am, hotac <hochim...@gmail.com> wrote:
>
> > > On Nov 5, 7:44 am, "n.t." <cool_...@hotmail.com> wrote:
>
> > > > The Fed vu+`a mo+'i "in" thie^m 600 ty? ba.c dde^? "pump" vo^ thi. truo
> > > > +`ng.  Mu.c ddi'ch la` dde^? la`m cho la~i sua^'t vay tie^`n dde^? mua
> > > > nha` cu+?a hoa(.c ha`ng ho'a ca`ng tha^'p ddi dde^? "ki'ch thi'ch"
> > > > kinh te^'.
>
> > > > Ngoa`i ra, lo'ng ra`y China cho+i ba^?n cu+' ki`m ha~m gia' tri.
> > > > tie^`n te^. cu?a ho. khie^'n cho ha`ng xua^'t ca?ng cu?a My~ va` ca'c
> > > > nuo+'c kha'c tro+? ne^n ma('c mo?...  Tha`nh ra, cu' gamble na`y cu?a
> > > > the Fed cu~ng gio^'ng nhu+ mo^.t cu.c ga.ch cho.i dda.i hai con
> > > > chim :-)
>
> > > > Chu+a ke^? con chim thu+' ba cu?a hai nha` Quo^'c ho^.i la` cu+' nhu
> > > > +'t quye^'t ddo`i tru` kinh te^' My~ ca`ng... ta`n ta. thie^m dde^?
> > > > Uncle Obama chi? la`m tonton dduo+.c vo~n ve.n chi? mo^.t nhie^.m ky`
> > > > thui! :-)
>
> > > > Tha('c ma('c:  Why the Fed didn't do more of this earlier is beyond
> > > > me.
>
> > > > Cheers,
> > > > n.t.
>
> > > Go back and take Economy 101.
> > > Your dollar is worth 90 cents compared with that last year.
> > > Next year, it will be worth 90 cents compared with your today dollar.
> > > Th?ng Do Thái này ch? t? làm giàu cho m?y th?ng Do Thái làm ch? nhà
> > > bang.
> > > Whatever you say, the prices at the supermarket keep going up. Never
> > > remain the same.
>
> > Tui vu+`a dda(.t ca^u ho?i la` ta.i sao the Fed didn't do more of this
> > earlier (before midterm elections) thi` lie^`n tu+. tra? lo+`i dduo+.c
> > ca^u ho?i cu?a chi'nh mi`nh.
>
> > Vi` tui dda~ no'i la` "cu' gamble" thi` la` gamble ma` la`m sao chu.p
> > giu+.t dduo+.c.  Chi'nh vie^.c the Fed had a meeting on Wed morning
> > right after Tuesday night dda~ ddu? cho tha^'y la` ho. muo^'n la`m
> > vie^.c na`y tu+` la^u, nhu+ng kho^ng muo^'n bi. ddo^~ thu+`a ba^.y
> > ba. :-)
>
> > Co`n vie^.c ba'c no'i ve^` "Inflation" la` chuye^.n co' tha^.t.
> > Inflation xe't cho ky~ cu~ng gio^'ng nhu+ ta(ng thue^' tie^u thu.
> > hoa(.c "thue^' ti`nh nguye^.n" khi ba' ta'nh xu'm nhau mua ve' so^'
> > kie^'n thie^'t cuo^'c gia va^.y ddo' mo+`! :-)
>
> > Mie^~n sao, ddo^` ba'n cha.y, tie^.m mua the^m ddo^` tru+~, ha~ng muo
> > +'n thie^m nguo+`i sa'ng che^'... thi` la` nuo+'c My~ se~ so+'m qua
> > dduo+.c con tra(ng na`y :-)
>
> > And then about a year and a half from now, Tonton Obama se~ ho?i, "Are
> > you better off now than you were four years ago?" :-)
>
> > Heheheh!!!
> > n.t.- Hide quoted text -
>
> > - Show quoted text -
>
> Duh!
>
> Where were you in the last two years?  Didn't you hear the term
> "stimulus".  It's a DIRTY word now in Wash. D.C.  That's why the
> Democrats lost BIG last week. Wake up and smell coffee. What is TARP?

Tui muo^'n pha^n bie^.t dduo+.c hai cho^~ na`y cho ba'c HT va` ba'
ta'nh tha^'y ro~:

- stimulus bills la` pha?i tho^ng qua quo^'c ho^.i
- "add cash to the market" la` cu?a Federal Reserve. Bu+~u bo^'i
rie^ng cu?a the Prez ma` hong ca^`n ho?i y' kie^'n ai ca?.

Who are the Fed Reserve(rs)? TT bo^? nhie^.m xe^'p lo+'n va` va`i
xe^'p duo+'i ha('n, Thuo+.ng Vie^.n confirm ma^'y chu+'c vu. na`y.
Nhu+ng nhie^`u xe^'p (managers) ha. ta^`ng co+ so+?, la.i do ma^'y
nha` ba(ng executive and boards cho.n ma` kho^ng ca^`n pha?i xin xo?
QH hay Nha` Tra('ng...

Tha`nh ra, ma^'y tay Tea Party cu+' ha(m he ddo`i audit the Fed
Reserve hoa`i la` va^.y ddo' :-)

Tho^i, that's the last of it, from me. Thanks.
n.t.


> Now more to come.
>
> They use different term instead, but the same thing.
>
> http://www.forbes.com/2009/01/21/tarp-banking-treasury-biz-......

tac ho

11/7/2010 8:15:00 PM

0

On Nov 6, 10:40 am, tuna <tu...@nz11.com> wrote:
> Good morning
>
> Cu~ng kho^ng ha(?n la` va^.y . Tua^`n na`y uncle Obama ddang ddi qua
> A^'n Ddo^.
> dde^? noa'i chuye^.n la`m a(n kinh te^' vo+'i A^'n DDo^.
>
> Du` sao anh A^'n DDo^. i't gian xa?o nhu+ anh Che^.t ho+n (hah haha I
> hate old Curry Indian too)
> Sau na`y thi` khi go.i Technical support thi` ma^'y anh o+? Mumbai
> noa'i accent A^'n DDo^. he^'t
>
> Anh Boo la`m gi` gioa?i ba(`ng ma^'y anh ddo' :-)) ma` ho. chi? muo+'i
> 15-20/ DDo^ 1 gio+` thui
>

?n d? thì nó tính tán khá l?m, làm gì mà dem anh Boo ra bì làm cho
thêm h? danh VN.
Anh Boo dùng calculator tính t? tháng 4 d?n tháng 11 hai l?n mà v?n
sai. Ð? th?a t?i h?t pin (ch?c anh ta h?t pin, ch? không ph?i
calculator)
Kon nít VN dùng m?y ngon tay tính còn du?c ba kái l? t? dó, nhung hôm
nay anh Boo l?i c? h?t pin.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
From: ":))" <bennypo...@yahoo.com>

LLDB ddu*o*.c tha`nh la^.p va`o tha'ng 4 na(m 1963 do dda.i ta' Le^
Quang Tu.ng giu*~ chu*'c Tu* Le^.nh.

O^ng bi. a'm sa't che^'t nga`y 1/11/1963 cu`ng nga`y vo*'i nga`y
ne^`n
DDe^. Nha^'t Co^.ng Ho`a su.p ddo^?


(to^?ng co^.ng ga^`n 8 tha'ng giu*~ chu*'c tu* le^.nh)



From: ":))" <bennypo...@yahoo.com>
Date: Sun, 07 Nov 2010 10:22:30 -0800

>LLDB ddu*o*.c tha`nh la^.p va`o tha'ng 4 na(m 1963 do dda.i ta' Le^
>Quang Tu.ng giu*~ chu*'c Tu* Le^.nh.

>O^ng bi. a'm sa't che^'t nga`y 1/11/1963 cu`ng nga`y vo*'i nga`y ne^`n
>DDe^. Nha^'t Co^.ng Ho`a su.p ddo^?


>(to^?ng co^.ng ga^`n 8 tha'ng giu*~ chu*'c tu* le^.nh)



Ooops.. khoa?ng 5 tha'ng chu*' sao la.i 8 tha'ng ddu*o*.c

Sorry ca'i calculator he^'t bin....


:-)))))

+++++++++++++++++++++++++++++++++++++++++++++

http://groups.google.com/group/soc.culture.vietnamese/browse_thread/thread/60036bd...






> Mo+`i ba` con chua^?n bi. ddi Mumbai qua^'n xa ro^ng ga^'m lu.a Bombay
> ddi cho+i golf
>
> Co^ HX ngu? tru+a o+? sa^n golf dda^y
>
> http://www.fotosearch.com/BLD018/g...
>
> tuna,
>
> -------------------------
>
> On Nov 6, 7:51 am, hotac <hochim...@gmail.com> wrote:
>
>
>
> > One more thing, I don't understand about those politicians.
> > Now, every time they open their mouths, they say, "Create Jobs create
> > jobs, create jobs".  That’s the magic word to get votes.  No more, no
> > less.
> > Most products used in the US are imported, while jobs are exported
> > every day.  Everything is outsourcing, India and China.  90% of
> > stimulus money for "green" is made or spent in China. Cannot go
> > against the law of gravity.  Jobs are automatically created where
> > labors are cheap.
>
> > So next time if they say, "Create jobs", ask them to make it clear
> > where, in the US or China or India, or where else, and how.- Hide quoted text -
>
> - Show quoted text -