search for: slicker

Displaying 20 results from an estimated 50 matches for "slicker".

Did you mean: flicker
2006 Jan 17
5
Hash.new{|h,k| h[k] = ""} ... but for views?
I sometimes buy myself a default value for a hash using something like this: h = Hash.new{|h,k| h[k] = ""}. I can now pass ''h'' any key and if a value has not yet been associated with that key I receive an empty string. I would love to do something similar in my partials so that I wouldn''t have to worry about passing in every variable that is referenced.
2005 Nov 10
1
specifying a key for a trellis display
...like to increase the space between the bottom of the key and the trellis plots beyond the default. Is there a simple way to do this? At present, I add an empty row (e.g. text = '', point colored in background color) to the bottom of each key column. This seems a bit of a kludge. Is there a slicker way to do it, i.e. a parameter that I have missed? Cheers, Bert -- Bert Gunter Genentech Non-Clinical Statistics South San Francisco, CA "The business of the statistician is to catalyze the scientific learning process." - George E. P. Box
2008 Sep 23
1
database diff's?
...of info I need to ad to a DB to manualy add users to an app (eGW) and was wondering if anyone had a better way to find the differances in two states (pre/post change) of a database. Only thing I could come up with was to do a DB dump to a file before and after then run diff on them. Anyone have a slicker, better, faster, not a as gee-wiz there should be a better way to do this. Thanks, Gabe
2006 Jul 07
2
Testing views with Hpricot
assert_tag smells bad. Hpricot smells nice (apricotty!). Testing your views with Hpricot: http://www.lukeredpath.co.uk/index.php/2006/07/07/testing-your-rails- views-with-hpricot/ Big thanks to _why for a great little library! Feedback is appreciated. rSpec integration coming soon (hopefully!). Cheers, Luke Redpath contact@lukeredpath.co.uk -------------- next part -------------- An HTML
2001 Feb 21
0
Q: core dumped on keygen in Sol 2.6, ssh2.3.0p1, openssl-0.9.6 and zlib-1.1.3
...Partain <partain at dcs.gla.ac.uk> >Newsgroups: comp.security.ssh >Subject: Re: Q: core dumped on keygen in Sol 2.6, ssh2.3.0p1, openssl-0.9.6 and zlib-1.1.3 >Date: 21 Feb 2001 12:27:24 +0000 >Organization: University of Glasgow >Lines: 52 >Message-ID: <uv7l2knrv7.fsf at slicker.dcs.gla.ac.uk> >References: <9578vs$npb$1 at nnrp1.deja.com> >NNTP-Posting-Host: slicker.dcs.gla.ac.uk >Mime-Version: 1.0 >Content-Type: text/plain; charset=us-ascii >X-Trace: singer.cent.gla.ac.uk 982758493 8576 130.209.242.51 (21 Feb 2001 12:28:13 GMT) >X-Complaints-To:...
2010 Jun 15
4
Dashboard or Foreman
Hi Guys, I''m reading about dashboard and foreman, and I''m wondering if there is anyone who made a comparison of the two? Can anyone help me decide which one to use? It feels like foreman is ''ahead'' for now? cheers, Walter Heck Engineer @ OlinData (http://olindata.com) -- You received this message because you are subscribed to the Google Groups "Puppet
2016 Apr 24
2
Inserting a blank row to every other row
Well, something like this would work (there may be slicker solutions): > z <- data.frame(a=1:3,b = letters[1:3]) > i <- seq_len(nrow(z)) *2 > z <-rbind(z,z) > z[i, ] <- matrix(NA, nr=nrow(z),nc=ncol(z)) > z a b 1 1 a 2 NA <NA> 3 3 c 4 NA <NA> 5 2 b 6 NA <NA> But I agree with you that there is...
2007 Dec 19
3
multi-model search best practices
Hi folks. If I am indexing ModelA and ModelB and I want to search both of them, I usually just pick one arbitrarily and use it for #multi_search. Is there a slicker pattern, regarding from which model to invoke #multi_search? Can it be invoked directly from the Ferret library? Has anyone put together some sort of "dummy" search class? Thanks for any ideas. John
2009 Aug 08
2
Chainloading from Vista x64 bootloader to Extlinux?
...at I couldn't boot via chainloading from the Vista x64 bootloader? Being able to chainload Extlinux (preferrably w/ext4 support of course ;) via the Vista x64 boatloader would be awesome, since I'd much rather use Extlinux. Also, it'd make the dual boot part of the Foresight setup much slicker. If this is already possible then I apologize for missing the memo. Btw, I should probably mention that this is my work laptop and that the reason I'm not using Extlinux in the MBR is that this breaks the assumptions of the tools Vista use to manage its boot settings, which makes it impossibl...
2006 Jul 17
1
multiplying multidimensional arrays (was: Re: [R] Manipulation involving arrays)
I am moving this to r-devel. The problem and solution below posted on r-help could have been a bit slicker if %*% worked with multidimensional arrays multiplying them so that if the first arg is a multidimensional array it is mulitplied along the last dimension (and first dimension for the second arg). Then one could have written: Tbar <- tarray %*% t(wt) / rep(wti, each = 9) which is a bit nicer t...
2008 Jun 17
4
Vista SP1, Server 2008 joining NT4/Samba Domain
Hello! It seems, that Vista SP1 and Server 2008 cannot join an NT4/Samba-domain. Vista once could join before SP1, if one did some modifications to the system (LAN Manager authentication level, Encryption of secure channel). But these workarounds do not seem to work with SP1 anymore. Microsoft points out that joining NT4-domains with Vista SP1 and Server 2008 is not supported/tested
2005 Mar 20
2
Using locator() to digitise
...nvolves building a big R object (the internal pixmap representation), and this chokes my somewhat puny laptop (e.g. it can take about 1 minute to draw the graphic inside a plot area using addlogo(), with mucho swappo, and subsequently working knee-deep in treacle). The following idea would be a lot slicker. For examples: I have something like a) A scatterplot of data printed in a journal (but the data values are not available; b) A contour map (on paper) of a region. So, I can scan the document, and obtain a file in some graphics format (jpeg, pbm or png, say). Now: an idea which I find attra...
2016 Apr 24
0
Inserting a blank row to every other row
...open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Sun, Apr 24, 2016 at 8:53 AM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > Well, something like this would work (there may be slicker solutions): > >> z <- data.frame(a=1:3,b = letters[1:3]) >> i <- seq_len(nrow(z)) *2 >> z <-rbind(z,z) >> z[i, ] <- matrix(NA, nr=nrow(z),nc=ncol(z)) >> z > a b > 1 1 a > 2 NA <NA> > 3 3 c > 4 NA <NA> > 5 2...
2013 May 15
2
animating plots over time with a slider
...an't get to first base with this. I can't figure how to use aggregate to give me the value of y corresponding to the latest date z. I know this is basic stuff but I really can't see how to do it. My synthetic data can be generated like this (clunky I know, but I can't do this any slicker) #make my baseline observations for 100 subjects on 1st April 2013 set.seed(1) a<-data.frame(x=seq(1:100),y=rnorm(100,mean=50,sd=10),z=as.Date("2013-04-01")) #simulate 50 subsequent observations in the next 2 months resulting in some subjects having different future measurements of y...
2012 Mar 13
1
Visualising multiple response contingency tables
...tios (greater than 2). I am literally having to type all this by hand into R, and as you can imagine, it gets cumbersome with large multi column tables (which I have). Does any body have any thoughts on my approach of using mosaic for this sort of data? And if so, any insight on how I can be a bit slicker with my R code? All help is appreciated and I hope that this question wasn't too long to read through. All the best, Marcos -- PhD Engineering Candidate University of Cambridge Department of Engineering Centre for Sustainable Development mp542@cam.ac.uk <mp542@cam.ac.uk> [[altern...
2004 Dec 29
3
Windows vignettes, shQuote, texi2dvi
I noticed a shQuote fix for Windows in the svn logs. Just wanted to point out that this will favorably affect texi2dvi on Windows which previously used UNIX quoting and so generated an incorrect Windows command. (Note that texi2dvi is used when creating vignettes.) Another problem is that the recommended tex distribution for Windows, fptex, does not have texi2dvi in the first place. The
2016 Mar 07
2
6.7 netinstall fails at insert cd to continue
On 03/06/16 22:15, Richard wrote: <<>> > "shell" is a yum command, invoked as shown below. I don't believe > there is any program called "yum-shell" (even though that is the man > page reference). > > shell Is used to enter the 'yum shell', when a filename is > specified the contents of that file is executed in >
2006 Jun 08
2
Query about building R-2.3.1 for Ubuntu
Hi All: Is a distribution of R version 2.3.1 (the current version) available for the Ubuntu Linux? If I want to build a .deb package for R-2.3.1 for Ubuntu, are there specific requirements that I should be aware of? Is a tutorial available? I searched the web, and the repositories, but oculd not locate an appropriate file. TIA, Arin Basu
2000 Feb 29
0
smb transfer
...Unix cohorts that connects up to 90 remote locations at a time and via smbclient....transfers a zip file that is created on the remote location and pulls it back to my corporate headquarters on a quad pentiumpro processor box with 512MB of memory and 90G of disk space running RH Linux 6.1 It works slicker than anything I've seen....but the only problem is that if I lose a connection halfway through a transfer....I have to restart the entire transfer all over again. These zip files I'm pulling over average approximately 14MB in size and take anywhere from 1-2 hours to complete. I don't wa...
2012 May 19
1
Names of Greek letters stored as character strings; plotmath.
...sented above does what I want. (Clearly I have no real idea what I'm doing, just hammering and hoping, but it's amazing how far hammer and hope will get you sometimes with R!) Just thought I'd post this in case it might be helpful to others. Also to see if anyone can tell me a better/slicker/sexier way to get to the same result. cheers, Rolf Turner