Displaying 20 results from an estimated 2000 matches similar to: "sup 0.0.1 Released -- rubies for emails"
2007 Feb 12
0
sup 0.0.7 Released
And now, for some news about the only Ferret project that doesn''t
involve Rails:
sup version 0.0.7 has been released!
http://sup.rubyforge.org
Sup is a console-based email client that combines the best
features of GMail, mutt, and emacs. Sup matches the power of GMail
with the speed and simplicity of a console interface.
Sup makes it easy to:
- Handle massive amounts of email.
-
1995 Nov 20
0
Yet another sup server available (Australia)
I've setup a sup server on sup.physics.usyd.edu.au for use by people in
Australia. It has current, ports and stable (except des, etc). The
max number of connections is currently set to 10, and the daily sup
updates begin at 3am local time (if a different time would be better,
let me know). This machine is located in Sydney, with good connectivity
to the NSW AARNet/TIS gateway. If the plans
2007 Jul 04
0
error at index.c:901
Hi Dave & co,
I''ve got a couple Sup users who encounter the following error fairly
consistently, even with 0.11.4. After they see this, the index is not
recoverable and they have to rebuild from scratch. Any ideas?
--- cut here ---
/var/lib/gems/1.8/gems/ferret-0.11.4/lib/ferret/index.rb:726:in `initialize'':
IO Error occured at <except.c>:93 in xraise (IOError)
Error
2013 Apr 02
2
R Commander and FactoMineR
Dear Users,
I helped to install R Commander and FactoMineR to one of my collegaues.
He wanted to do an MCA. Selecting three variables and using the default settings results in only one graph, the variables representation, where he gets three points for the three variables (which is totally fine).
Running the code (output of the point-and-click method)
EuTop100.MCA<-EuTop100[,
2012 Sep 11
1
lapply with different size lists?
Hello,
I have 2 functions (a and b)
a = function(n) { matrix (runif(n*2,0.0,1), n) }
>
>
> b = function (m, matrix) {
> n=nrow (matrix)
> p=ceiling (n/m)
> lapply (1:p, function (l,n,m) {
> inf = ((l-1)*m)+1
> if (l<p) sup=((l-1)*m)+m
> else sup=n
>
2012 Apr 12
3
Remove superscripts from HTML objects
Is there some way to remove superscripts from objects returned by
html/xmlParse (XML package)?
h <- "<html><p>Cat<sup>a</sup></p><p>Dog</p></html>"
doc <- htmlParse(h)
xpathSApply(doc, "//p", xmlValue)
[1] "Cata" "Dog"
I could probably remove the <sup> tags from the "h" object above,
2008 Mar 10
3
Only 5 tests out of 376 currently failing!
Good news! SuperRedCloth is down to just five failing tests! I was
down to 10 or so in mid-February but then I added test cases from
"The official reference manual for Textile 2", which added 97 new
tests, many of them failing. I''m happy to say, they''re almost all
passing now.
Four of these last five I just need to check with you on before I
deviate from
2012 Aug 06
1
cannot find function "simpleRDA2"
Hi,
I am trying to run the command "forward.sel.par," however I receive
the error message: "Error: could not find function 'simpleRDA2'." I
have the vegan library loaded. The documentation on "varpart" has not
helped me to understand why I cannot call this function. Maybe I am
missing something obvious because I am still an 'R' novice.
Below is a
2008 Jan 06
1
Error .. missing value where TRUE/FALSE needed
Can any explain the following error:
Error in if ((seedCount <= seedNumber) && (valueDiff >
sup)) { :
missing value where TRUE/FALSE needed
which I get upon running this script:
seedNumber <- 10
seeds <- array(dim = seedNumber)
seedCount <- 1
maxValue <- 100
sup <- maxValue / 2
fcsPar <- array(as.integer(rnorm(100, 50, 10)))
while (seedCount <=
1995 Dec 09
0
ftp://freefall.freebsd.org/pub/FreeBSD/sup-server-kit.tar.gz updated
An embedded message was scrubbed...
From: "Jordan K. Hubbard" <jkh@time.cdrom.com>
Subject: ftp://freefall.freebsd.org/pub/FreeBSD/sup-server-kit.tar.gz updated
Date: Sat, 09 Dec 1995 20:04:05 -0800
Size: 1410
Url: http://lists.freebsd.org/pipermail/freebsd-announce/attachments/19951209/ef03493a/attachment.eml
2008 Jan 06
1
Error: missing value where TRUE/FALSE needed
Can any explain the following error:
Error in if ((seedCount <= seedNumber) && (valueDiff >
sup)) { :
missing value where TRUE/FALSE needed
which I get upon running this script:
seedNumber <- 10
seeds <- array(dim = seedNumber)
seedCount <- 1
maxValue <- 100
sup <- maxValue / 2
fcsPar <- array(as.integer(rnorm(100, 50, 10)))
while (seedCount <=
2008 Jul 30
1
Converting to subscripts and superscripts
Hi,
I am reading in a CSV file of chemical reactions where the subscripts and
superscripts are encoded in angle brackets, like below:
2 H<SUP>+</SUP> + 2 O<SUB>2</SUB><SUP>-</SUP>
Is there a way to convert these to actual sub/superscripts and save them in
another excel file? I greatly appreciate the help!
Thanks,
-Nina
PS. I asked this before, but I
2006 Nov 20
0
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
On Mon, 2006-11-20 at 17:49 +1100, Emil Mikulic wrote:
> I've compiled all the object files that make up libstdc++ and libsupc++
> into LLVM bytecode:
> http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB)
>
> A simple test program, x.cpp:
>
> #include <iostream>
> int main() { std::cout << "hello world\n"; return 0; }
>
> $
2006 Nov 20
4
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
I've compiled all the object files that make up libstdc++ and libsupc++
into LLVM bytecode:
http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB)
A simple test program, x.cpp:
#include <iostream>
int main() { std::cout << "hello world\n"; return 0; }
$ llvm-g++ -emit-llvm -c x.cpp
$ llvmc -o=out x.o std/*.o sup/*.o
$ lli out.bc
Segmentation fault (core
2006 Nov 20
1
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
On Mon, Nov 20, 2006 at 08:01:23AM -0800, Reid Spencer wrote:
> On Mon, 2006-11-20 at 17:49 +1100, Emil Mikulic wrote:
> > I've compiled all the object files that make up libstdc++ and libsupc++
> > into LLVM bytecode:
> > http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB)
> >
> > A simple test program, x.cpp:
> >
> > #include
2009 Dec 08
2
[LLVMdev] [PATCH] GettingStarted: mention problems with dynamic linking on Cygwin
---
OK, what about this attempt?
docs/GettingStarted.html | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 2e2200d..51aba29 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -252,7 +252,8 @@ software you will need.</p>
</tr>
<tr>
<td>Cygwin/Win32</td>
2009 May 07
1
homemade fn marker weirdness...
so this is a weird one:
http://babelmark.bobtfish.net/?markdown=%3Csup%3E*%3C%2Fsup%3EThe+[distinction]+between+certification+and+qualification%2C+although+vague%2C+appears+to+be+that+under+the+NASED+system%2C+states+did+the+ultimate+*certification*+of+a+voting+system+for+fitness+in+future+elections.
Note that the `<sup>*</sup>` is being turned into
2006 Nov 20
0
[LLVMdev] libstdc++ as bytecode, and compiling C++ to C
On Mon, 2006-11-20 at 17:49 +1100, Emil Mikulic wrote:
> I've compiled all the object files that make up libstdc++ and libsupc++
> into LLVM bytecode:
> http://goanna.cs.rmit.edu.au/~emil/libstdcxx.tar.bz2 (438KB)
>
> A simple test program, x.cpp:
>
> #include <iostream>
> int main() { std::cout << "hello world\n"; return 0; }
>
> $
2005 Jun 07
1
Variables values on intersected intervals
Dear R-list,
i have a problem, in the framework of simulations, i want to vectorize for
earning time: a variable, say X, has values on intervals and an other
variable, say Y, has values on other intervals. For example
Inf Sup X
0 2 1
2 4 2
4 6 3
and
Inf Sup Y
1 3 1
3 5 2
5 7 3
i want to create a matrix like this
Inf Sup
2013 Jun 01
1
error about MCA
Hi,all:
I want to perform multiple correspondance analysis via MCA{FactoMineR}.
The data is in the attachment.
My code:
dat<-read.delim("e:\\mydata.txt",header=T)
MCA(dat,quanti.sup=7,quali.sup=1:6)
Error in `[.data.frame`(tab, , i) : undefined columns selected
My question:
Why does the error happen?
Many thanks.
Best.
-------------- next part --------------
An embedded and