Displaying 8 results from an estimated 8 matches for "timetraveller".
2008 Nov 19
3
Mock today
In some of my unit tests, I find the need to set today to a different
value than the actual today. For example, to test the model method
"balance_of_today", which takes no argument, I want to have Date.today
be a specific date for the purpose of testing. In other words, I want
to do something like this:
mock_today(Date.new(2008, 2, 1)) do
... test code...
end
My implementation for
2013 Jun 10
2
Mailbox conversion/importing
I've been tasked with importing a large bunch of mbox folders (about
500) into an existing mdbox setup in Dovecot 2.1
As far as I can see, dsync "mirror" or "backup" are both inappropriate
ways of doing this. Does anyone have any suggestions about how I could
proceed?
Thanks in advance
2011 Sep 09
0
[LLVMdev] git Status Update?
On Thu, Sep 8, 2011 at 5:09 PM, David A. Greene <dag at cray.com> wrote:
> Bill Wendling <wendling at apple.com> writes:
>
> >> Let's face it, Joe Dragon is pretty much happy with svn and there's an
> >> svn-git bridge for the rest of us.
>
> The svn-git bridge is broken as several people stated before. It is
> easier to contribute code via
2010 Sep 07
2
R package to identify model
Dear all,
I would like to know if there is a R package performing model
identification?
thank you!
--
View this message in context: http://r.789695.n4.nabble.com/R-package-to-identify-model-tp2529525p2529525.html
Sent from the R help mailing list archive at Nabble.com.
2011 Feb 08
4
NoSQL Storage Backend
Hello,
I found a posting on the mailing list from 2008 "Adding new storage
backend to Dovecot" while searching for POP3 and IMAP servers, that
allow to use a NoSQL backend rather than a traditional file system.
The problem with traditional filesystems is, that they are very limited.
You cannot easily extend it, even with RAID 10 all messages may be lost
due to a RAID controller
2009 Jul 08
2
Two-way ANOVA gives different results using anova(lm()) than doing it by hand
Hey!
Could you please take a quick look at what I have done? Somehow I get wrong results using the anova(lm()) combination compared to doing a two way ANOVA by hand.
Running:
Data<-read.table("Data.txt");
g<-lm(ExM~S1*S2,Data);
anova(g);
Gives:
Analysis of Variance Table
Response: ExM
Df Sum Sq Mean Sq F value Pr(>F)
S1 1 4.3679
2011 Sep 09
10
[LLVMdev] git Status Update?
Bill Wendling <wendling at apple.com> writes:
>> Let's face it, Joe Dragon is pretty much happy with svn and there's an
>> svn-git bridge for the rest of us.
The svn-git bridge is broken as several people stated before. It is
easier to contribute code via the gateway but it causes headaches when
one updates one's working git clone after submitting through dcommit.
2009 Jul 09
2
How to Populate List
Hi,
I'm new to R and would like to know, how one can populate the list with array data.
I'm reading a tab separated table in R. The data in the table looks something like this.
#Table Data
Comp A B C
Extracellular 103 268 535759
Nucleus 45603 47783 442744
#R code
myData <- read.table("table.data",
header=T,