Displaying 4 results from an estimated 4 matches for "22046".
Did you mean:
2046
2008 May 23
3
Rss-wxruby
...argement sur le site "Tom''s guide". Ils ont créer les screenshots, et la problème:
Il y a des carrés qui ressortent de partout???
Voilà un url pour l''exemple du problème avec les carrés qui ressortent:
http://www.infos-du-net.com/telecharger/Capture-ecran-Rss-wxruby,0302-22046.html
et voilà l''url d''une capture que j''ai fait de mon application à partir de mon pc:
http://beusse.liveror.com/images/Rss-wxruby1.bmp
Je n''ai pas ce problème sur mon pc, je n''ai pas tout ces carrés qui ressortent.
Pourquoi y a t''il ce problème...
2004 Apr 27
6
installing R on Fedora Core 2 test 2
...-O2 -I/usr/local/include
-L/usr/local/lib conftest.c -lreadline -ldl -lncurses -lm >&5
/usr/bin/ld: cannot find -lreadline
configure:22002: checking readline/history.h usability
conftest.c:83:30: readline/history.h: No such file or directory
| #include <readline/history.h>
configure:22046: checking readline/history.h presence
conftest.c:49:30: readline/history.h: No such file or directory
[more stuff like this]
ac_cv_header_readline_history_h=no
ac_cv_header_readline_readline_h=no
ac_cv_lib_readline_rl_callback_read_char=no
This is not a huge problem in practice, since ESS under Xe...
2007 Aug 22
3
Help with vector gymnastics
Hello,
What is the best way of solving this problem?
answer <- ifelse(tf=TRUE, i * 5, previous answer)
where as an initial condition
tf[1] <- TRUE
For example if,
tf <- c(T,F,F,F,T,T,F)
over i = 1 to 7
then the output of the function will be
answer = 5 5 5 5 25 30 30
Thank you.
Phil,
2006 Mar 29
3
Grouping Controllers into Modules - Doesn''t work!?
Ok, what I want to achieve is:
http://<mydomain>/admin/products
calls app/controllers/admin/products_controller.rb
According to Agile Development with Rails this should work.
I executed the follwing commands:
rails myproj
cd myproj
script/generate controller Admin
script/generate scaffold Admin::Product
this creates app/controllers/admin/products_controller.rb all the views
&