similar to: pan news reader

Displaying 20 results from an estimated 700 matches similar to: "pan news reader"

2013 May 08
2
What is the recommended method to obtain Pan 0.136+ (with SSL) for Centos 6?
Q: What is the recommended method to obtain Pan 0.136+ (with SSL) for Centos 6? I've been successfully using Pan 0.135 from the RPMForge repository for about a year now: $ yum --noplugins --showduplicates --enablerepo \* --disablerepo c6-media,\*-source,\*debug\* provides "*/pan" ==> 1:pan-0.135-1.el6.rf.x86_64 : The Pan Newsreader ==> Repo : installed $ sudo yum
2014 Feb 06
1
Pan in 6.2??
I can't seem to get a way to install Pan in CentOS, and I need it badly. I follow most busy lists, including this one, on Gmane using Pan (and, no, Gmane per Web is no use to me. I have some obscure allergy to webmail). Does anyone know an rpm (one of Fedora's, for instance) that I can install and not immerse myself in dependency hell?
2014 Jul 13
0
Whence Pan??
Yum fails to install Pan, and neither epel nor rebelbase.com seems to have an rpm for it. Why not? And can I get an rpm somewhere else? Or am I doing something obviously wrong that I don't see?? -- Beartooth Staffwright, Neo-Redneck Not Quite Clueless Power User Remember I have precious (very precious!) little idea where up is.
2011 Apr 15
2
unrar rpm package
Hi there -- I am running a server with the 5.6 64-bit distribution, and I am looking for an unrar rpm package. I have several repositories set up on the server which are the following: base updates extras centosplus contrib c5-testing All are enabled. When I do a yum search for unrar, nothing comes up. Is there another repository that I should add to the list, or is there a particular website
2018 Jan 23
2
Unrar not extracting archive
I received a rar-archive, probably created on Win10, that I could not extract with unrar on CentOS 6. Is it possible that the version of unrar available for CentOS 6 does not support potentially new archiving algorithms used by some newer archiving program (don't know which one was used) on Win 10? I was later able to extract the files using another program on a WinXP computer. Defeat...
2003 Nov 03
2
exited on signal 11 on unrar
Hi all, This is my first experiencing with writing to English-speaking mailing list, so, please excuse me for possible mistakes. I'm a newbie on freebsd. I have a mail server on FreeBSD 4.7 with Postfix and Amavis ( mail virus scanner ). The problem is I got this in my log periodically : /kernel: pid 24499 (unrar), uid 1010: exited on signal 11 (core dumped) I use unrar for Amavis
2011 Sep 07
1
pan reader and gmime
Running: yum list available | grep -i gmime shows results for CentOS 5, but not for CentOS 6. It seems to be needed by my pan. What should I do? Thanks, Mike.
2007 Oct 30
2
flexible processing
Hello, unfortunately, I don't know a better subject. I would like to be very flexible in how to process my data. Assume the following dataset: par1 <- seq(0,1,length.out = 100) par2 <- seq(1,100) fac1 <- factor(rep(c("group1", "group2"), each = 50)) fac2 <- factor(rep(c("group3", "group4", "group5", "group6"), each =
2009 Dec 29
2
pass functions and arguments to function
Hi, I wonder how to pass several functions and their arguments as arguments to a function. For example, the main function is f = function(X ) { process1(X) ... process2(X) } I have a few functions that operate on X, e.g. g1(X, par1), g2(X, par2), g3(X, par3). par1, par2 and par3 are parameters and of different types. I would like to pass g1, g2, g3 and their arguments to f and g1,
2011 Jan 13
5
How to unpack rar file?
I think I did this once a long time ago, but don't recall clearly.... How do I unpack a .rar file? tnx.
2006 Feb 08
1
expand.grid without expanding
Dear list, I've recently came across a problem that I think I've solved and that I wanted to share with you for two reasons: - Maybe others come across the same problem. - Maybe someone has a much simpler solution that wants to share with me ;-) The problem is as follows: expand.grid() allows you to generate a data.frame with all combinations of a set of values, e.g.: >
2015 Oct 25
2
how to unrar
I'm looking for a means to unrar some files. Google keeps giving references to rmpforge which I'm told I ought not use. Any other ideas? I'm running centos 6. -- Michael hennebry at web.cs.ndsu.NoDak.edu "Sorry but your password must contain an uppercase letter, a number, a haiku, a gang sign, a heiroglyph, and the blood of a virgin."
2007 Dec 19
2
recode based on filter
Hi, I have a data frame DATA, which (simplified of course) looks like this: know1 = c("Y","N","N","Y","N","N","Y","Y","N") par1=c(1,4,5,3,3,2,3,3,5) know2 = c("Y","Y","N","Y","N","N","N","Y","Y")
2011 Apr 07
2
Two functions as parametrs of a function.
Hi R users: I'm trying to make a function where two of the parameters are functions, but I don't know how to put each set of parameters for each function. What am I missing? I try this code: f2<-function(n=2,nsim=100,fun1=rnorm,par1=list(),fun2=rnorm,par2=list()){ force(fun1) force(fun2) force(n) p1<-unlist(par1) p2<-unlist(par2) force(p1) force(p2)
2009 Jun 16
1
Constrained Optimization, a full example
After a few days of work, I think I nearly have it. Unfortunately, theta is unchanged after I run this (as a script from a file). I thought that theta would contain the fitted parameters. The goal here is to find the least squares fit according to the function defined as "rss" subject to the constraints defined as ui and ci. I defined ui and ci to (hopefully) force par2 and par3
2005 Dec 05
1
how to save output all together
Dear R users: I have a problem about catch the value from function. I have following two functions (part): sbolus1 <- function() { ....... for( i in 1:Subject) { kel<-par1 Vd<-par2 PKindex<-sbolus1.out(PKtime,kel,Vd,defun,par1,par2,Dose,i) } savefile(PKindex) } sbolus1.out<-function(PKtime,kel,Vd,defun,par1,par2,Dose,i) { time<-PKtime$time
2012 Dec 16
1
nls for sum of exponentials
Hi there, I am trying to fit the following model with a sum of exponentials - y ~ Ae^(-md) + B e^(-nd) + c the model has 5 parameters A, b, m, n, c I am using nls to fit the data and I am using DEoptim package to pick the most optimal start values - fm4 <- function(x) x[1] + x[2]*exp(x[3] * -dist) + x[4]*exp(x[5] * -dist) fm5 <- function(x) sum((wcorr-fm4(x))^2) fm6 <- DEoptim(fm5,
2006 Feb 05
6
WinRAR.exe errors
I had instaled winrar3.51 and I get this errors: fixme:actctx:CreateActCtxW stub! err:rebar:REBAR_AdjustBands Phase 1 failed, x=692, maxx=-4, start=0, end=0 err:rebar:REBAR_AdjustBands Phase 1 failed, x=692, maxx=-4, start=0, end=0 err:rebar:REBAR_AdjustBands Phase 1 failed, x=40, maxx=-4, start=1, end=1 err:rebar:REBAR_AdjustBands Phase 1 failed, x=692, maxx=-4, start=0, end=0
2007 Apr 08
3
[LLVMdev] C++ -> C translation problems
Hi All, I am trying to use llvm compiler to translate a non-trivial piece of code from C++ to C. I need this because I need to use part of the code as lib for another project that is strictly C. I am working under MSWin and I have choice to use either BCC or MSVC. After a good deal of tries I found out I had to somewhat massage llc -march=c output to make it *almost* compilable. I have one
2005 Nov 22
1
problem with "parse"
Hi there again, I have a problem with the "parse"-command. First of all, I show you in a simplified way, what I am trying to do and what "R" answers: > test [1] "u.g$par1, u.g$par2" > mode(test) [1] "character" > ausdruck <- parse(text = test) Error in parse(file, n, text, prompt) : syntax error in "u.g$par1,"