search for: cacked

Displaying 10 results from an estimated 10 matches for "cacked".

Did you mean: acked
2001 Nov 14
1
dreamweaver
any1 got dreamweaver 3 or 4 working with wine every time i try running it loads up asks for serial i enter it then it segfaults . if it cant be done do you know of a html editor for linux up to the standards of dreamweaver all the ones i have come across so far aint brilliant infact some i would call cack might as well just open emacs and code myself but like dreamweaver cos i can get pro
2011 May 26
4
Steam crashes upon launching (Mint Katya)
I had just installed Linux Mint katya on my Dell Dimension 5000 computer because Windows kept making it lag and so on. I installed Wine and Steam soon after installing it, but whenever I tried to launch Steam it always crashes and quits as soon as the welcome and update screens pop up. I've googled for solutions to this problem and they have come to nil.
2005 Dec 23
2
Bizarre problems with AJAX / missing variables
I''m having some really weird problems with an app I''m writing. Everything is working as expected on my development machine (OSX, Rails 0.14.4) but is cacking out with weird errors on the Textdrive demo site (FreeBSD, Rails 1.0.0). It complains about missing variables, with errors like this: undefined local variable or method `rawcode'' for
2000 Dec 07
0
Re: R or Splus
:> When I had said: :> >> R can't handle files named x. If I can use Splus, should I just do that? to which I've had the reply (sorry lost attribution but this mailer is cack for handling mailing lists): :It was a problem with data frames (not 'files') named 'x'. ah, well, my typo in the original post. :I may be stating the obvious, but I think some people
2012 May 12
2
Plotmath bug or my misunderstanding?
This is a followup to a recent post on using atop() to obtain multiline expressions. My reading of the plotmath docs makes it clear that issuing (in base graphics) the specification par(cex = 2) doubles symbols and regular text in subsequent plotmath expressions. However, it is unclear to me what specifying cex _within_ the annotation function using plotmath should do, and the following seems
2003 Feb 02
2
5.1ch decoding question
Hi. I've some question about audio-stream of OGM. I know some encoding tools, such as headac3he or BeSweet, can encode 5.1ch AC3 files into 5.1ch vorbis files, but I couldn't find any decoding tools which can decode 5.1ch vorbis files properly. Current Tobias's Ogg Direct Show filter 0.9.9.1 (and its libraries) doesn't support decoding 5.1ch vorbis, right? And if so, how can I
2013 Apr 11
6
RAID 6 - opinions
I'm setting up this huge RAID 6 box. I've always thought of hot spares, but I'm reading things that are comparing RAID 5 with a hot spare to RAID 6, implying that the latter doesn't need one. I *certainly* have enough drives to spare in this RAID box: 42 of 'em, so two questions: should I assign one or more hot spares, and, if so, how many? mark
2013 Oct 27
2
Heteroscedasticity and mgcv.
I have a two part question one about statistical theory and the other about implementations in R. Thank you for all help in advance. (1) Am I correct in understanding that Heteroscedasticity is a problem for Generalized Additive Models as it is for standard linear models? I am asking particularly about the GAMs as implemented in the mgcv package. Based upon my online search it seems that some
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused. Here are the commands I have entered: > data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",") > NumberOfActionsByStatus = data$STATUS > NumberOfActionsByUser = data$ETS_LOGIN > NumberOfBidOffer = data$BID_OFFER > NumberOfActionsByUser.freq = table(NumberOfActionsByUser) >
2012 Mar 25
2
avoiding for loops
I have data that looks like this: > df1 group id 1 red A 2 red B 3 red C 4 blue D 5 blue E 6 blue F I want a list of the groups containing vectors with the ids. I am avoiding subset(), as it is only recommended for interactive use. Here's what I have so far: df1 <- data.frame(group=c("red", "red", "red", "blue",