similar to: very beginner's question

Displaying 20 results from an estimated 1000 matches similar to: "very beginner's question"

2004 Nov 23
4
OT: 1gigabit Nics
Begging indulgence of the list - asking here because due to the higher likelyhood of getting an answer... I have an application that often loses connection from one machine to another when one (or more) of the machines has particular brands of 1gig nics, but which runs rock solid when on 10meg nics and some 1 gig nics. The application senses (falsely) that the connection has been shut down
2011 Sep 03
0
[LLVMdev] git Status Update?
> On Sep 1, 2011, at 3:15 PM, FlyLanguage wrote: > >>> Is that really true? I've heard of a lot of LLVM developers using git >>> but it all seems very opaque right now. That's why I hope to get people >>> talking so we can find out where everyone is and go from there. >> >> Yet, there's surprisingly little complaint about Subversion around
2011 Sep 03
6
[LLVMdev] git Status Update?
On Sep 1, 2011, at 3:15 PM, FlyLanguage wrote: >> Is that really true? I've heard of a lot of LLVM developers using git >> but it all seems very opaque right now. That's why I hope to get people >> talking so we can find out where everyone is and go from there. > > Yet, there's surprisingly little complaint about Subversion around here, > which is kinda
2004 Nov 23
2
OT: 1gigabt nics
Begging indulgence of the list - asking here because due to the higher likelyhood of getting an answer... I have an application that often loses connection from one machine to another when one (or more) of the machines has particular brands of 1gig nics, but which runs rock solid when on 10meg nics and some 1 gig nics. The application senses (falsely) that the connection has been shut
2011 Sep 03
5
[LLVMdev] git Status Update?
On Sep 3, 2011, at 5:01 AM, FlyLanguage wrote: >> On Sep 1, 2011, at 3:15 PM, FlyLanguage wrote: >> >>>> Is that really true? I've heard of a lot of LLVM developers using git >>>> but it all seems very opaque right now. That's why I hope to get people >>>> talking so we can find out where everyone is and go from there. >>>
2007 May 01
2
Polar graph of time and tide
I have been trying to visualize times of lowest tides, month by month. I have tide predictions with times either in unix time or a text format, and heights in feet or meters. I had been able to derive the clock times of each prediction. I would now like to graph this data with points showing heights as "r" and times as "theta", from 0000 to 2355. There is a seasonal
2000 Nov 30
2
changes in glm?
I am running some simulations which involve fitting a glm with Binomial error ( in fact Bernoulli) and logistic link. Running R 0.63 I have no problems. However I need more speed so migrated to our UNIX boxes which run Version 0.90.1 (December 15, 1999) Here I get an error Error in (if (is.empty.model(mt)) glm.fit.null else glm.fit)(x = X, y = Y, : y must be univariate unless binomial
2005 Nov 15
4
Fosdem : Developers Room, Presence
hi everyone, This mail will mostly interest europeans Rubyists/Railists, but others are welcome to read it, answer and participate too :) In next February the Sixth Fosdem (Free and OpenSource Developers'' European Meeting) will be held in Brussels, Belgium. Like each year there is some special rooms for projects/communities (mozilla, drupal, kde, gnome, python, openbsd, perl, linux,
2004 Aug 06
4
ASSISTANCE
FROM: COL. KENNETH ABELANGE. DEMOCRATIC REPUBLIC OF CONGO. Tel No: Your country Intl. access code +873762692483 Fax No: your country Intl. Access code +873762692485 kennethabelange@africamail.com Dear Sir/Madam <p>SEEKING YOUR IMMEDIATE ASSISTANCE. Please permit me to make your acquaintance in so informal a manner. This is necessitated by my urgent need to reach a dependable and
2004 Apr 20
2
Creating variable names
My apologies for asking what is doubtless a dumb question, but I have scant experience in R. It would be very convenient in doing lots of plots to be able to do them in a loop that stepped through a vector of variable names. For example one could say x<-("mydates") y<-c("foo1","foo2","foo3") #where "foon" were vectors
2001 Mar 12
1
loading shared libraries at startup
Dear people, I compiled a bit of C code into a shared library cftpR.so, and load it into R at runtime using > dyn.load("cftpR.so") This works fine, however when I put .First <- function() { dyn.load("/home/faheem/research/cftp/cftpR.so") } (using absolute path names; also tried with just dyn.load("cftpR.so")), into my .Rprofile to load the library at
2010 Mar 11
1
argument is of length zero
I am new to R, so I beg your indulgence. > a='hello world' > if (grep('hellow',a)) { print("wow") } else { print("wow2") } Error in if (grep("hellow", a)) { : argument is of length zero What is the proper syntax to ensure that "wow2" gets printed? Thank you for your help! Dan [[alternative HTML version deleted]]
2002 Feb 04
1
ACLs as Standard Component in ext3?
To all: I was wondering if there was any talk regarding the possible inclusion into either kernel 2.4.x or 2.5.x of a general and standard ACL interface for file system security. I've used the ACL patch from acl.bestbits.at on ext3 & love it dearly except for the quota issues. Despite those issues I absolutely could not live without ACL's on large file servers with a few hundred or
2009 Mar 25
1
Density estimation: scale back for calendar time
Dear all:Request your indulgence. The econophysics gurus do this stuff all the time: all their PDFs are smooth, with neat log x axis. 1. The kernel density estimate (KDE) function returns the empirical probability density at 2^n points (min: 512). The big question is how do I scale back the x-values (say, density$x) to x-values in terms of the original dataset? 2. To give you a concrete idea, i
2006 Jan 07
4
Draytek Vigor 2900 & Asterisk
I'm in conversation with Draytek's pre-sales dept.............. Here's the most recent reply: <Hello, We really don't know of anyone who has run an Asterisk server on a Vigor2900. There are doubtless people around, but it's relatively rare. Most people don't run SIP servers. Regards,> All I want to know is, if I buy one of these routers, will it break my setup or
2011 Jul 29
1
Apostrophes in R Commander in recode
Dear colleagues, I'm using R64 (2.13) on Mac OS 10.6.8 and I've encountered a problem with the recode function in Rcommander. The application cannot deal with apostrpohes ( ' ) do not. I've got a factor from the 2008 Canada Election study (highest level of schooling) and some of the values include "Bachelor's Degree" , "Master's Degree". I've
2004 Feb 27
1
Regular expressions & large strings (PR#6617)
A possible regex bug when working with large strings. The following code snippet t5 <- paste( c( "# === TEST", rep(' ', 2452294) ), collapse='') str( sub("^.*TEST", "xyz", t5) ) str( sub("^.*TEST", "xyz", substr(t5,0,200)) ) doesn't behave right; on one machine, the second and third lines print different results [the
2016 Jul 06
2
Samba43 on FreeBDS10.3 ldap db contents
I am working through the book _Implementing Samba 4_ and revalidating my existing install. I am at the point where I need to check the contents of the ldap database. The instructions in the book say to do this: ldapsearch -x -h localhost -s base - \ Dcn=Administrator,cn=Users,dc=server-02,dc=domain-02,dc=harte-lyne,dc=ca -W Which produces this output: # extended LDIF # # LDAPv3 # base
2007 Feb 28
1
help set
help set
2011 Sep 01
0
[LLVMdev] git Status Update?
> That's what we need to have a discussion about. If those things will > work for people, great. If not, we have some stuff to figure out. Agreed. Hopefully core peeps will chime in. >> I suppose it's merely a manpower thing now > > I'm not assuming that given the volume of e-mail around this. Sending mail is cheap. Switching to git completely isn't.