search for: terser

Displaying 7 results from an estimated 7 matches for "terser".

Did you mean: terse
2004 Dec 16
9
Some help for a beginner please: terser logging
Dear newfound friends, please be patient. For me reading and writing in English is more painful than dissecting IP traces :) I have tried reading through the FAQ but could not quite understand: I would like the logs to be terser. I think I can live without MAC, LEN, TOS, PREC, TTL, ID fields normally (maybe need them only in special situations). Could not understand if/how I can achieve this. I am using shorewall 2.0.13 on my Debian unstable laptop with a 2.6.9 kernel. TIA, Bob bob@t40:~$ dpkg -l |grep shorewall ii...
2007 May 02
4
Terse Mocks
Hello, I recently made a feature request with a patch for terser mocks. http://rubyforge.org/tracker/index.php?func=detail&aid=10412&group_id=1917&atid=7480 Here are some examples with their current equivalents: the_mock.expects.foo(1,2) {|a, b| :bar} the_mock.expects.foo(1,2).returns(:bar) the_mock.expects(:foo).with(1,2) {|a, b| :bar} the_mock.ex...
2003 Apr 30
2
How to find the NIC Capacity / Bandwidth ?
Hi, Any body having idea to find the NIC Capacity / BW (10 / 100 Mbps) ? Whether the interface may be eth0/eth1/ppp0 or some other. Is there any related IOCTL avialable, if so just give the linux-2.4.18 file path. thanks, Srikanth. _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2009 Jun 23
9
Learning FXRuby please help!
Hi all, I''m trying to get text on to the screen in response to pressing a button. This code doesn''t work, and I don''t know why. My puts command says that the window is shown, but it''s not displayed. Also, it seems to me that there should be an easier way to get text on a screen in response to pressing a button. Any hints? Thanks! Marlene require
2005 Feb 11
1
formula behaviour in model.matrix
Hi all, Perhaps somebody can explain the following behaviour to me. Take the following data.frame. z <- expand.grid(X = LETTERS[1:3], Y = letters[1:3]) Now, from ?formula we see: <quote> The '*' operator denotes factor crossing: 'a*b' interpreted as 'a+b+a:b'. </quote> So I would expect the following: ncol(model.matrix(~X*Y, z)) # returns 1 + 2 + 2 + 2
2012 Aug 27
2
looping through numbered variables
Hello, This is a beginner question. I am trying to loop through numbered variables with "apply" to calculate weighted means. My data is "data", the variables are "var1" to "var100", the weight is "weight". The command works using sapply(paste('data$var', 1:100, sep=''), function(x) weighted.mean(eval(parse(text=x)), data$weight))
2006 Dec 18
13
unit testing wxruby GUIs
paul.allton at uk.bnpparibas.com wrote: > I''m a big fan of automated UI testing (i.e. driving the UI from some robot API). I appreciate this > is potentially a whole new project, but does wxwidgets provide a method of clicking buttons, > typing into components ... if so, would it be technically possible to expose this in wxruby. I like automated UI testing too, but