similar to: Application -almost- working

Displaying 20 results from an estimated 800 matches similar to: "Application -almost- working"

2005 Aug 30
0
No subject
"PMW operates by reading an input file containing an encoded description of the music; such a file can be constructed using any text editor or word processor. The music encoding is very straightforward and compact, and quick to enter." On Sunday 06 February 2005 16:54, Tom deL wrote: > Hello all from a wine newbie. > > I have an old favorite Windows application that is >
2008 Feb 26
4
vbrun300.dll
Hello. Recently i install "Ford Microcat". It's database of spares for Ford =) So, it had been installed without efforts. Now, when i try to run: #wine c:\\Microcat\\microcat.exe there is some errors: 1. first of all - it can't be registered vbrun300.dll in console was message: "Could not load 'VBRUN300.DLL' required by 'MICROCAT', error=11" but - i
2012 Mar 09
10
Problems with two apps
I'm using Wine on a Ubuntu 10.04 box. I'm having problems with two apps. If it's okay, I'll describe both problems here and see if there's some insight to be gained. 1. I have a free app called cslesson. It prepares lessons for Christian Science students. The install goes just fine, but when I try to run the app, I get a "File not found" error. Since the app is
2010 Sep 10
3
Samba4, file permissions not respected
Hi, all, I run the latest Samba4 with Windows 7 clients. I have a share that I created in smb.conf like so: [common] path = /home/pmw/installed/samba/common-share csc policy = manual read only = no Within it, I created a file using a regular user. That file has fine-looking security: that user has full permissions, Everyone has read-only permissions. 'getfattr' on that file
2013 Jan 04
4
non-consing count
Hi, to count vector elements with some property, the standard idiom seems to be length(which): --8<---------------cut here---------------start------------->8--- x <- c(1,1,0,0,0) count.0 <- length(which(x == 0)) --8<---------------cut here---------------end--------------->8--- however, this approach allocates and discards 2 vectors: a logical vector of length=length(x) and an
2011 Jul 11
1
plot means ?
Hi, I need this plot: given: x,y - numerical vectors of length N plot xi vs mean(yj such that |xj - xi|<epsilon) (running mean?) alternatively, discretize X as if for histogram plotting and plot mean y over the center of the histogram group. is there a simple way? thanks! -- Sam Steingold (http://sds.podval.org/) on CentOS release 5.6 (Final) X 11.0.60900031 http://thereligionofpeace.com
2008 Apr 09
4
SetWindowsHookEx16
I have this problem reported when running a Win3x application: fixme:hook:SetWindowsHookEx16 hook type 1 broken in Win16 I have searched and found this exact error and similar ones (up to fixme:hook:SetWindowsHookEx16) reported as part of other error messages, but I haven't seen what to do about it. It seems this is the only error I am getting. What can I do about it? What does it mean?
2012 Nov 07
3
c weirdness
is there a way to avoid c() appending ".0" and ".1" to seed? --8<---------------cut here---------------start------------->8--- > c("nons"=1, "seed"=3) nons seed ## good! 1 3 > c("nons"=1, "seed"=tab[1]) nons seed.0 ## don't want ".0"! 1 2344600 >
2006 Mar 17
6
removing NA from a data frame
Hi, It appears that deal does not support missing values (NA), so I need to remove them (NAs) from my data frame. how do I do this? (I am very new to R, so a detailed step-by-step explanation with code samples would be nice). Some columns (variables) have quite a few NAs, so I would rather drop the whole column than sacrifice all the rows (observations) which have NA in that column. How do I
2012 Dec 27
4
vectorization & modifying globals in functions
I have the following code: --8<---------------cut here---------------start------------->8--- d <- rep(10,10) for (i in 1:100) { a <- sample.int(length(d), size = 2) if (d[a[1]] >= 1) { d[a[1]] <- d[a[1]] - 1 d[a[2]] <- d[a[2]] + 1 } } --8<---------------cut here---------------end--------------->8--- it does what I want, i.e., modified vector d 100 times.
2013 Jan 18
5
select rows with identical columns from a data frame
I have a data frame with several columns. I want to select the rows with no NAs (as with complete.cases) and all columns identical. E.g., for --8<---------------cut here---------------start------------->8--- > f <- data.frame(a=c(1,NA,NA,4),b=c(1,NA,3,40),c=c(1,NA,5,40)) > f a b c 1 1 1 1 2 NA NA NA 3 NA 3 5 4 4 40 40 --8<---------------cut
2006 May 11
3
cannot turn some columns in a data frame into factors
Hi, I have a data frame df and a list of names of columns that I want to turn into factors: df.names <- attr(df,"names") sapply(factors, function (name) { pos <- match(name,df.names) if (is.na(pos)) stop(paste(name,": no such column\n")) df[[pos]] <- factor(df[[pos]]) cat(name,"(",pos,"):",is.factor(df[[pos]]),"\n")
2012 Aug 27
1
write.matrix.csr data conversion
> write.matrix.csr(mx, y = y, file = file) > table(y) 0 1 5194394 23487 $ cut -d' ' -f1 f | sort | uniq -c 23487 2 5194394 1 i.e., 0 is written as 1 and 1 is written as 2. why? is there a way to disable this? -- Sam Steingold (http://sds.podval.org/) on Ubuntu 12.04 (precise) X 11.0.11103000 http://www.childpsy.net/ http://palestinefacts.org
2007 May 19
1
Using an already installed Linux JRE from WINE
I've installed the Windows application Open WorkBench* which is coded in C, C++ and Java. When I install it under WINE, it installs fine, but when I run it, it gives a 'JRE is not installed' error message. I have a Linux JRE already installed. Do I have to install a Windows JRE? Or is there a way of telling WINE about the Linux JRE I already have installed?
2011 Feb 15
1
all.equal: subscript out of bounds
When I do > all(all$X.Time == all$Y.Time); [1] TRUE as expected, but > all.equal(all$X.Time,all$Y.Time); Error in target[[i]] : subscript out of bounds why? thanks! -- Sam Steingold (http://sds.podval.org/) on CentOS release 5.3 (Final) http://mideasttruth.com http://honestreporting.com http://dhimmi.com http://jihadwatch.org http://pmw.org.il http://ffii.org The dark past once was the
2012 Aug 24
2
SparseM buglet
read.matrix.csr does not close the connection: > library('SparseM') Package SparseM (0.96) loaded. > read.matrix.csr(foo) ... Warning message: closing unused connection 3 (foo) > -- Sam Steingold (http://sds.podval.org/) on Ubuntu 12.04 (precise) X 11.0.11103000 http://www.childpsy.net/ http://truepeace.org http://camera.org http://pmw.org.il http://think-israel.org
2011 Feb 15
4
string parsing
I am trying to get stock metadata from Yahoo finance (or maybe there is a better source?) here is what I did so far: yahoo.url <- "http://finance.yahoo.com/d/quotes.csv?f=j1jka2&s="; stocks <- c("IBM","NOIZ","MSFT","LNN","C","BODY","F"); # just some samples socket <-
2004 Aug 06
1
CVS problem
Thanks, removing the compression fixed the problem. I set up a script to checkout and compress for download CVS-only material from Xiphophorus -- http://pmw.myip.org/xiph_cvs/. So far I only have it to download three modules, so if there's anything else, please let me know. Also, if anyone knows how to bypass the interactive password prompt of the CVS, please let me know...
2003 Jun 03
1
wine-win3.1 program in SuSE8.2 - help
Help I am not having much success getting the program to work and would appreciate some pointers and suggestions for further tests. I ran the program: wine accts.exe from its program directory without debug and got the following: wine already configured, run 'winesetup' to reconfigure. why is the above msg considering that wine would not run if it wasn't configured? I hope the
2011 Jul 12
1
how to find out whether a string is a factor?
I have two data frames: > str(ysmd) 'data.frame': 8325 obs. of 6 variables: $ X.stock : Factor w/ 8325 levels "A","AA","AA-",..: 2702 6547 4118 7664 7587 6350 3341 5640 5107 7589 ... $ market.cap : num -1.00 2.97e+10 3.54e+08 3.46e+08 -1.00 ... $ X52.week.low : num 40.2 22.5 27.5 12.2 20.7 ... $