search for: proj1

Displaying 10 results from an estimated 10 matches for "proj1".

Did you mean: proj
2011 Sep 28
3
Error : bundle install
c:proj/proj1> bundle install Fetching source index for http://rubygems.org/ Could not find sprockets-2.0.0.beta.10 in any of the sources C:proj/proj1> C:proj/proj1>gem install sprockets -v=2.0.0.beta.10 ERROR: Could not find a valid gem ''sprockets'' (= 2.0.0.beta.10) in any reposit...
2004 Jul 13
1
Problem with Authnication from NT
...word %n\n *passwd:*all*authentication*tokens*updated*sucessfully* # Debug Logging Information Log Level = 2 max log size = 1000 # log file = /var/log/samba/samba.log.%m socket options = TCP_NODELAY IPTOS_LOWDELAY wins support = yes # Networking configuration Options Hosts Allow = *.*.*.* [Proj1] comment = Proj1 directory path = /engr/proj1 read only = No valid users = @tec,pvasireddy,pbuenros,dan,dsteffen,scollins [Proj2] comment = Proj2 directory path = /engr/proj2 read only = No valid users = @tec,pvasireddy,pbuenros,dan,dsteffen,scollins
2007 Dec 26
2
Reminiscing on 20 years using S
...p the pens to fast and make you unpopular). The current 600+ colors in R are a luxury now. I remember before I learned about attaching to the search list (I don't know if it was because attaching was not mature yet, or I just had not learned it) we would name our objects using a pattern like: proj1.x, proj1.y, proj2.x, proj2.y, ... where proj1 and proj2 were identifiers for the projects (what I would name a data frame now) then there was a prefix function that you could set proj1 as a prefix and just type x and it would use proj1.x. Attaching was a huge jump forward, and the 'with' c...
2002 Jun 06
1
Backuo problem from ext3 file system
...e system. I'm using dump for backup. The problem is one of the filesystem (/proj) Incremantal backup is not happening. The command used is dump -u1a -f /dev/st0 /dev/md0 Daily its taking the entire file system backup eventhough i tried incremental. This is happening only for /proj and proj1 is working fine. Filesystem Size Used Avail Use% Mounted on /dev/md1 8.1G 3.4G 4.3G 44% / /dev/sda1 48M 14M 31M 30% /boot /dev/md0 39G 29G 7.7G 79% /proj /dev/md2 16G 13G 2.4G 84% /proj1 none 262...
2010 Jun 16
2
class methods from module where active rec is involved
...active record is not involved, access to the class methods seems to work ok. What can I do to make this work or so that I can access the class methods ? ################################## require ''active_record'' DB_Host = ''localhost'' DB_Database = ''proj1'' DB_Port = 5432 ActiveRecord::Base.establish_connection( :adapter => "postgresql", :host => DB_Host, :database => DB_Database, :username => "me" # :password => "secret" ) module ModelClassMethods def mycreate(pkey_val) pkey_fld...
2009 Apr 14
1
using Sweave, how to save a plot in a given size
Hi, I'm trying to realise a repport with R and Latex (TeXnicCenter and Miktex for Windows) using Sweave(). I'd like to save my plots in a given size. How can I do that ? The code is : \SweaveOpts{prefix.string = figs/plot, eps = FALSE, pdf = TRUE} <<partI, echo=FALSE ,fig=TRUE, include=FALSE>>= plotFunction() @ \includepdf[pages=-]{figs/plot-partI} When I use
2004 Jul 10
6
where does R search when source()?
Exactly where does R search for foo.R if I type source("foo.R")? Only from current working directory (same as getwd()), from all directories specified by e.g. $PATH? Thanks. Daehyok Shin
2004 Jul 10
6
where does R search when source()?
Exactly where does R search for foo.R if I type source("foo.R")? Only from current working directory (same as getwd()), from all directories specified by e.g. $PATH? Thanks. Daehyok Shin
2008 Apr 13
0
R project
...s for mu1. I have written a function and was trying to get my answer for each test into the right position in an array so the output is the power of each combination of test, distribution, sample size and mu1, however my code is not working and i keep getting an error message returned. My code is: proj1.sim<-function(){ tests<-c("t","Wilcoxon","bootstrap") distns<-c("Normal","Uniform","Beta") sample.sizes<-c("5","10","25","50","100") mu1s<-c("0","0.5&q...
2006 Jun 04
0
[SUMMARY] Rails Core Weekly May 29 - June 4
...weeks kicks of with Josh Susser fixing has_and_belongs_to_many #create method to properly populate joins with new records :http://www.ruby-forum.com/topic/67478#new. Check out his test: def test_create_by_new_record devel = Developer.new(:name => "Marcel", :salary => 75000) proj1 = devel.projects.create(:name => "Make bed") proj2 = devel.projects.create(:name => "Lie in it") assert_equal devel.projects.last, proj2 assert proj2.new_record? devel.save assert !devel.new_record? assert !proj2.new_record? assert_equal devel.projects...