similar to: Newbies perceptions and questions

Displaying 20 results from an estimated 5000 matches similar to: "Newbies perceptions and questions"

2005 Mar 04
24
Rails speed?
Hi -- (First time posting to the list...) I''m trying out Rails on my Mac (OS X Panther, 1.6 G5). It seems... kinda slow? I''ve even run it with FastCGI and the response time is still painfully slow. Is this just me? Is mod_ruby any better than FastCGI? Or is it rails? Thanks in advance! -- joshua
2005 Mar 09
16
rails on low memory vps
Anyone got any tips for running Rails (w/ either webrick or lighttpd/fcgi) on a VPS with a pretty small amount of memory (like 64MB memory and 64MB swap). Thanks, Joe
2004 Nov 30
4
adding regression curve to xyplot
Dear R-listers, It seems that predict() behaves differently within panel.xyplot. Am I doing something stupid? Thanks, Carlisle First, without xyplot(): > lmtest <- lm(t~s,data=subset(P100,whichLon100==1 & whichLat100==1)) > lmtest Call: lm(formula = s ~ t, data = subset(P100, whichLon100 == 1 & whichLat100 == 1)) Coefficients: (Intercept) t 33.3307
2007 Jan 23
1
"tapply" and "data.frame"?
I want to transform the data by "tapply" to one dataframe. But I can not get it. For example: > tst=tapply(point,pp,length) > tst[1:10] p1 p10 p100 p1000 p1001 p1002 p1003 p1004 p1005 p1006 1 5 1 8 6 5 8 7 4 4 > res=as.data.frame(tst) # I try to transform it > res[1:10,] p1 p10 p100 p1000 p1001 p1002 p1003 p1004 p1005 p1006 1 5 1 8 6 5
2023 Jun 28
1
horizontal grouped stacked plots and removing space between bars
I have code like this: data <- read.csv("test1.csv", stringsAsFactors=FALSE, header=TRUE) # Graph myplot=ggplot(data, aes(fill=condition, y=value, x=condition)) + geom_bar(position="dodge", stat="identity", width=0.5) + scale_fill_manual(values=c("#7b3294", "#c2a5cf", "#a6dba0", "#008837"))+
2005 Mar 06
3
permission error in rake''s clone_structure_to_test
Hello, When I try to run "rake clone_structure_to_test" on my project, I get the following errors: $ rake clone_structure_to_test (in /home/www/cedscreening) psql:db/development_structure.sql:8: ERROR: permission denied to set session authorization psql:db/development_structure.sql:16: ERROR: permission denied for schema public psql:db/development_structure.sql:34: NOTICE: CREATE
2017 Jun 16
1
How to dump vbioses of Pascal cards?
Is there any method to dump vbioses of NVIDIA Pascal cards(not use nvflash), such as P100/P4? I used nvagetbios, but it just report a error "Card has second bios", what does this mean? Thanks, Zongyong Wu -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/nouveau/attachments/20170616/60b72443/attachment.html>
2005 Mar 07
1
0.10.1
So, do I really want to upgrade to 0.10.1? Seems like a lot of people are having issues. Joe
2008 May 14
2
homedir override problem, MS AD + WINBIND + PAM + SIEVE
Hello, i installed my Dovecot with authetification in MS AD throught WINBIND and PAM. Works fine. So I have virtual users with UID, GID from MS AD. I set maildir path as mail_location = maildir:/var/spool/mail/%n/ Then i want to make some vacation system. I install sieve and use dovecot LDA. In postfix main.cf I have mailbox_command = /usr/libexec/dovecot/deliver Setup of lda in dovecot.conf
2005 Mar 06
10
A Nightmare on Rails Street: Windows Lives!
Just spent 40+ hours in two days deploying my app on Windows 2000. Not all the time was Apache/MySql related, but a significant portion was. What a nightmare that was. Unfortunately, the customer is dead-set on "standardizing" by using Windows. So, as I sat there between a Linux box and an AIX box working on this thing, I ran into problems, part of which were: CGI was slow (Dell
2005 Jun 18
2
Playback + Replay Gain questions
I'm hoping to set up a headless system to playback my audio once I get back home after an extended leave. Ideally I'd just ssh in and use a curses based player to play back FLACs and mp3s. This leads me to a few quesitons: 1. What is the minimun processor speed needed to decode and play flac files? I have an old P100 I would like to use for the task if it is sufficient. 2. When
2007 Apr 11
1
Programming Problem (for loop, random # control, 3 dimentional graph)
Dear List, This is just a programming problem which i cannot seem to figure out. I am trying to get a set of power from a test (say, kolmogorov smirnov) out of a distribution (say, G-K distribution) as follows. I am trying to reduce to pain of writing the whole set of data points (p# below) using "for" loop. However, I seem to have some problem in it as the output "M" does not
2005 Mar 10
2
Newbie question - form validation
Hi, I am sorry for maybe stupid question. I am new in rails. I am trying to create very simple weblog systeme. I know threre are plenty of them, but It''s good to study. I create following rule in models/post.rb validates_length_of :header, :in => 3..50, :allow_nil => false, :message => "At least 3 characters" It''s working fine with default scaffolt add
1999 Feb 01
5
Bind Failed on Port 139
I installed Samba 2.0.0 on a P100 running SlackWare Linux 96 (Kernel 2.0.0). After running configure, make, make install, and testparm, I thought I was all ready to start up the smbd daemon. So I typed in smbd -D -d 50 Got back a failure listing in the error log. [1999/02/01 16:27:06, 0] lib/util_sock.c:open_socket_in(663 Brian Lee Bowers | Division of Government Research Computer Aide I
2005 Apr 16
2
Authorization
Hi, Maybe I ask again for something what is wasn''t able to find anything. Is there simple way how to process authorizations? My imagine is that some action for controllers are allowed only to few users. E. g. Everybody can look category list, but only registred user can edit or add. In best way, when user is signup, rails will remember his rights like: adding_category = false
2005 Mar 06
3
question about testing
Ok, so now I''m learning about testing. After a few initial hiccups, I''ve got my tests written nicely and all the assertions are passing. But I just have one question about doing tests in a loop. In my setup, I''m using the login generator to protect ''sensitive'' actions, while some actions are public. So I''ve got this line in my setup method:
2005 Mar 05
1
problems with authentication -- restrict certain actions to certain users
Ok, so at this point I''ve got my app completely written, including the login generator, and I''ve even got stuff like the layout done up all nicely so that the login page matches the rest of the site nicely. All is good. But there''s one problem: I''m not running a wiki here, I''m running a personal site. As it is, any schmuck can log in, and anybody
1998 Feb 03
0
Samba performance tuning & benchmarks
Hi all. Many KUDOS to the Samba development team! I am trying to interpret some performance testing results, and could use some hela, and any possible Samba tuning suggestions. Oplocks are turned on, BTW, which has caused the Samba performance results to come WAY up compared to with prior Samba releases. The following test results consist of the time to perform database queries using a Borland
2006 May 11
2
Unit tests fail with sqlite3 and rails 1.1
Hello all, I''m kinda going through a rocky upgrade to rails 1.1 and I can''t find much on google about this. When I run my tests I get this: $ rake (in /home/www/art2) /usr/bin/ruby -Ilib:test "/usr/lib/ruby/gems/1.8/gems/rake-0.7.1/lib/rake/rake_test_loader.rb" "test/functional/panoramas_controller_test.rb"
2006 Apr 20
0
Tvs Plasma notebboks E-gold apy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script> <!-- document.write(unescape("<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <script language="JavaScript"><!-- var hellotext="