search for: sloppy

Displaying 20 results from an estimated 347 matches for "sloppy".

Did you mean: floppy
2001 Jun 10
1
documentation and \sloppy (PR#976)
...nes with more columns than the rest of the text. This happens when we use \code{} (which probably calls the \tt in latex). I've been checking the documentation (.pdf files) of a few packages and this seens to occours all over. One possible way to correct this is by introducing the command \sloppy on the header of the automatically generated .tex files. It seens to work fine in some tests I've run. I'm wondering whether the "\sloppy" can be incorporated to the Rd2dvi command. Cheers P.J. Paulo Justiniano Ribeiro Jr Dept Maths & Stats - Fylde College Lancaster Uni...
2007 May 15
1
zisofs-tools sloppy option does not work
This isn't a syslinux issue, but I don't see a mailing list setup for the zisofs tools. Forgive me if this is sent to the wrong place. The sloppy option does not work as documented in the mkzftree man page. Here is the patch I used to enable it. --- zisofs-tools-1.0.7/mkzftree.c.sloppy 2007-05-15 08:42:20.000000000 -0400 +++ zisofs-tools-1.0.7/mkzftree.c 2007-05-15 08:47:08.000000000 -0400 @@ -95,7 +95,7 @@ const char *progra...
2004 Jun 03
3
Sloppy argument checking for named arguments
...haven't thought of. Hope this helps, Matt Wiener -----Original Message----- From: r-help-bounces at stat.math.ethz.ch [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of christianlederer at t-online.de Sent: Thursday, June 03, 2004 12:20 AM To: r-help at stat.math.ethz.ch Subject: [R] Sloppy argument checking for named arguments Dear R Gurus, i recently noticed that R does sloppy argument checking for named arguments, if the argument contains a dot. Example: > f <- function(foo.bar=0) { print(foo.bar) } > f(foo=1) [1] 1 I guess, this should be considered as a bug. Anyw...
2007 Jun 17
1
Where did sloppy focus go?``
Hi Just wondering where the 'sloppy focus' key in scale. It seems to have been removed -SmSpillaz
2008 Aug 14
5
help with my sloppy syntax
R-ians: After some effort I coerced my code to do what I want but my syntax is a kludge. Suggestions on more elegant syntax? par <- NIM.results$par do.call("Draw.NIM.POD.curve", list(par[1], par[2], par[3], par[4], par[5], a.hat.decision, .... et cetera ... It seems that I should be able to avoid defining the variable "par" and then specifying each of its elements,
2009 Jun 29
2
[LLVMdev] [cfe-dev] Patch for llvm::DepthFirstIterator.h and llvm::PostOrderIterator.h
...the minor changes you recommended and have attached a new patch including both files again (even if po_iterator didn't change). However: Dan Gohman schrieb: > The plural of "child" is "children"; please rename this function > accordingly. Is "childs" just sloppy, is it american english or is it just a misconception of foreigners like me? I think I've already seen it somewhere. Best Olaf -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: llvm-iterator.patch URL: <http://lists.llvm.org/pipermail/l...
2010 Jan 14
5
Better way than an ifelse statement?
...statement (see below), but I am wondering if anyone knows of a cleaner way to do this? example <- data.frame(cbind(rnorm(4), rep(1:4, 1), c(0))) example$X3 <- ifelse(example$X2==1, -3, ( ifelse(example$X2==2, -1, ( ifelse(example$X2==3, 1, ( ifelse(example$X2==4, 3, NA))))))) ## this seems sloppy to me > example X1 X2 X3 1 1.75308880 1 -3 2 -0.49273616 2 -1 3 -0.12446648 3 1 4 -0.06417217 4 3 Thanks for your help, Joshua -- Joshua Wiley Senior in Psychology University of California, Riverside http://www.joshuawiley.com/
2004 Nov 16
1
modification of BATCH
Hi, I'm having a problem (of my own creation) with BATCH. The current problem (for me): ---------------------------- I'm sloppy. I work on *nux systems and will type e.g. "R CMD BATCH a*R out" to avoid typing the full name of some R script of mine. However, sometimes I'm overly sloppy and there are multiple files that match "a*R", so "a*R" turns into e.g. "aa.R ab.R", and the ar...
2015 Apr 10
2
dovecot-2.2.16 compilation problems under Solaris Studio 11
> On 08 Apr 2015, at 19:25, James <lista at xdrv.co.uk> wrote: > > On 08/04/2015 15:24, J?rgen Obermann wrote: > > Hello J?rgen, > >> here are two problems I get when I compile dovecot 2.2.16 under Solaris >> 10 with Studio 11 Compiler: > > Is there a reason to use a 10 year old compiler? Try 12.4: > >
2005 May 21
2
print format for difftime
Has anyone written a function that will print a difftime in the form: hh:mm:ss or yy-mm-dd hh:mm:ss depending on the actual size. (sloppy notation for months/minutes, but surely you get the point). Bendix ---------------------- Bendix Carstensen Senior Statistician Steno Diabetes Center Niels Steensens Vej 2 DK-2820 Gentofte Denmark tel: +45 44 43 87 38 mob: +45 30 75 87 38 fax: +45 44 43 07 06 bxc at steno.dk www.biostat.ku.dk/~bxc
2016 Jul 04
2
Status of stack walking in LLVM on Win64?
Thanks all - looks like RuntimeDyldCOFFX86_64 is indeed the missing link. I'm temporarily using my own code to relocate the pdata section during linking (for unrelated reasons) but I'll definitely explore the dynamic loader in more detail. I'd much prefer to use well-tested code over my sloppy 20 minute hack job :-) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160704/5ebfc616/attachment.html>
2011 Dec 01
2
Summarizing elements of a list
...all of the elements' 'First' vectors into a single list to box plot. But whats a more elegant solution to the below? c(Version1_[[1]]$First,Version1_[[2]]$First,Version1_[[3]]$First,Version1_[[4]]$First,Version1_[[5]]$First) since i have 50 or more simulations this is impractical and sloppy. Do I need to store my data differently or is their a solution on the back end? Thanks all. Josh -- View this message in context: http://r.789695.n4.nabble.com/Summarizing-elements-of-a-list-tp4142479p4142479.html Sent from the R help mailing list archive at Nabble.com.
2006 Jan 03
3
What''s the best way to do complex inheritance?
...us'', ''created_on'', etc... but they also have some completely different properties. It seems like Active Record only supports Single Table Inheritance. This would make my Products'' table _huge_ and mostly empty. Is there a way around this or am I stuck with a sloppy table? Would I be better of just having seperate lists for each Product that the merchant has? -- Posted via http://www.ruby-forum.com/.
2007 Dec 06
11
Weird Prototype behavior
In this code: <html> <head> <title>PT test</title> <script type=''text/javascript'' src=''/js/prototype/1.6.0/ prototype.js''></script> <script type=''text/javascript''> //<![CDATA[ Event.observe(window, ''load'', function () { alert($(''login_username'')); }); //]]>
2008 Oct 16
3
Rails: View specs and implicit parameters in link_to()
Hi all, I''ve been cleaning up our routing file, and removed the default map.connect ":controller/:action" route. It''s thrown up a bunch of sloppy mistakes, which is great, but I also think I''ve found a problem with the view specs. We have a generic navbar partial which is rendered in the index page of several different controllers. The navbar contains some call to link_to of the form: <%= link_to "By Concert",...
2010 Dec 17
2
how to convert "sloppy data" into a time series?
Hi All, First let me state that I did search for a while on r-help, google, and using the "sos" package inside of 'R', without much luck. I want to know how to create a univariate time series from a set of data that will have huge time gaps in it. For instance, here is a snapshot of a piece of data that I would like to analyze: *Row queued_time
2009 Oct 24
2
Problem Removing Border Lines in Maps Package
...esult leaves small white segments on parts of the map. I believe this is due to the low resolution, because when I look at individual states, the lty parameter solves the problem. Does anyone have any idea how I might draw a United States county map without these white borders making the map look sloppy? library(maps) #county map of new jersey, with invisible county borders -- correct example map("county","new jersey", fill=TRUE , col=palette() , lty=0) #county map of the united states, with white county borders still visible some places map("county", fill=TRUE , c...
2011 Dec 05
3
[LLVMdev] Dead register (was Re: [llvm-commits] [llvm] r145819)
...-O0? > > Good point, I'll run some more tests (and the test suite) with -O0. Some > of the regression tests specify -O0 (like the varargs test, which seemed > to be fine). > > Thanks again, > Hal > > > > > The register scavenger is notorious for exposing sloppy liveness info in older targets like PPC. I would expect a number of scavenger assertions. > > > > /jakob > > > -- Hal Finkel Postdoctoral Appointee Leadership Computing Facility Argonne National Laboratory
2017 Jul 24
2
GEP with a null pointer base
...> No, sorry I entirely disagree with this assertion: I believe we optimize program where there is no UB. We delete dead code, code that never runs, so it is code that does not exercise UB. > Mehdi, I had to read that sentence several times to figure out what the problem is, which is sloppy terminology on my part Strictly speaking the C standard uses “undefined behavior” to describe what happens at runtime when an “illegal” construct is executed. I have been using “undefined behavior” and UB to describe the “illegal” construct whether it is executed or not. Hence I say “Hal’s tran...
2008 May 07
2
Question on authenticity tokens
...ons. I am also not sure if they are really required for pages that require a login to access. The other place that they cause issues is in javascript requests. I am not using the built-in helpers, and all the javascript exists in separate js files. There is ways to get around this, but they are sloppy. Is there a way to turn them off? Here is an example of the the code requires the token. If anyone knows an easy way to solve the problem please let me know. ------ $(document).ready(function(){ $(".photos img").draggable(); $("#trash").droppable({ accept: "img&q...