search for: howabout

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

2004 Aug 06
0
hmm, howabout a typedef instead of void *
Hey, can we make the pointers to the encoder and decoder state variables somewhat more strongly typed? ;) I made a mistake where I basically wrote speex_decode(&st, ... instead of speex_decode(st, ... That is why my decoder blew up all the time. The compiler wouldn't complain. I suspected a corrupt speex bitstream, a corrupted stack frame, etc... So much time wasted because of an
2006 Jul 09
3
Verify hash key in hash in params hash
Hi, how can I use Rails ActionController::Verification#verify :params when the hash key is in a hash? E.g.: params[:form][:textfield] and I want to verify that :textfield is a key in params[:form] Thanks Markus
2002 Feb 20
2
IT WORKS!!!
...39;ll be posting it ASAP... Julio Rojas jrojasuft.edu.ve ----- Original Message ----- From: "Mats olsson" <mace2442@hotmail.com> To: <jrojas@uft.edu.ve>; <samba-technical@lists.samba.org> Sent: Wednesday, February 20, 2002 4:05 AM Subject: Re: [Samba] IT WORKS!!! > Howabout publishing the working solution to this list ? > > IT could be good to have for reference in the future > > /mats > > > > >From: "Julio Rojas" <jrojas@uft.edu.ve> > >To: <samba@lists.samba.org> > >Subject: [Samba] IT WORKS!!! > >Dat...
2003 Aug 25
1
floodfill with matrix data
Dear R users, I'm trying to do some sort of "floodfill" or "seedfill" with data stored within a matrix in R (usually floating numbers), where a marker value is given to specify the limits of an area to be filled. A reduced example may demonstrate this below. Although I wrote a simple C function for this, it would be very helpful to find a more professional solution.
2007 Jan 07
2
creating a list of lists
Hello, I'm trying to create a series of randomForest objects, basically in a loop like this: forests <- list(); for (level in 1:10) { # do some other things here # create a random forest forest <- randomForest( x = x.level, y = z.level, ntree = trees ); forests <- c(forests, forest); } But instead of creating a list of 10 forests, this creates a list
2003 Dec 01
0
No subject
...39;ll be posting it ASAP... Julio Rojas jrojasuft.edu.ve ----- Original Message ----- From: "Mats olsson" <mace2442@hotmail.com> To: <jrojas@uft.edu.ve>; <samba-technical@lists.samba.org> Sent: Wednesday, February 20, 2002 4:05 AM Subject: Re: [Samba] IT WORKS!!! > Howabout publishing the working solution to this list ? > > IT could be good to have for reference in the future > > /mats > > > > >From: "Julio Rojas" <jrojas@uft.edu.ve> > >To: <samba@lists.samba.org> > >Subject: [Samba] IT WORKS!!! > >Dat...
2010 Dec 14
3
last thought before switching to ZFS
Hi I have google to fine som info abut ZFS and I found that site hire. I have unraid now and are realy happy whit it. but to January I are going to upgrade my cpu to a 45watt quad core from intel that I are begun to use my server to encode my tv show iso when it on. so now I are begun to learn ZFS in vitualbox. but now to the question it I make a poll whit 4 2TB ind raidz1 can it so be convetet
2006 Oct 19
5
write data to pdf
Hello! Is there a possibility in R to save data in pdf-format? I do not want to save a plot but some lines of simple text. Regards, Franco Mendolia
2006 Nov 15
4
Mongrel 0.3.15 PR -- All The Fixes Good For You
Hi folks, Getting much much much closer to the 1.0 release. I have some documentation to work on tonight, and I need to go through the patch queue one more time, but I''ve put up another pre-release for people to test. What this pre-release does is pull together the various patches, monkey patching, and alternatives that make Mongrel either faster or more stable. It is also the start
2009 Jan 18
8
regex -> negate a word
Dear all, let's assume I have a vector of character strings: x <- c("abcdef", "defabc", "qwerty") What I would like to find is the following: all elements where the word 'abc' does not appear (i.e. 3 in this case of 'x'). Since I am not really experienced with regular expressions, I started slowly and thought I find all word were