search for: hideously

Displaying 20 results from an estimated 134 matches for "hideously".

2006 Jul 20
1
cleanest, least hideous way to do dropdown date validation?
My customer has dropdowns like this: Year Month Day If you submit with month selected and year blank, it subs in a year arbitrarily. Worse still, it subs in the year 5. I have no idea why. It seems a pernicious default. Anyway, they''re developing an app, they''re a designer turned coder, turning to a real programmer (me, allegedly) to make sense of the madness they''ve
2004 Jun 23
5
assigning from multiple return values
I know that if I have a function that returns multiple values, I should do return(list(foo, bar)). But what do I do on the recieving end? fn <- function(x) { return(list(foo, bar)) } I know that at this point I could say values.list <- fn(x) and then access values.list[1] values.list[2] But that's hideous. I'd rather be able to say something like list(local_foo, local_bar)
2018 Jul 12
2
[PATCH v35 1/5] mm: support to get hints of free page blocks
On Thu 12-07-18 10:52:08, Wei Wang wrote: > On 07/12/2018 10:30 AM, Linus Torvalds wrote: > > On Wed, Jul 11, 2018 at 7:17 PM Wei Wang <wei.w.wang at intel.com> wrote: > > > Would it be better to remove __GFP_THISNODE? We actually want to get all > > > the guest free pages (from all the nodes). > > Maybe. Or maybe it would be better to have the memory balloon
2018 Jul 12
2
[PATCH v35 1/5] mm: support to get hints of free page blocks
On Thu 12-07-18 10:52:08, Wei Wang wrote: > On 07/12/2018 10:30 AM, Linus Torvalds wrote: > > On Wed, Jul 11, 2018 at 7:17 PM Wei Wang <wei.w.wang at intel.com> wrote: > > > Would it be better to remove __GFP_THISNODE? We actually want to get all > > > the guest free pages (from all the nodes). > > Maybe. Or maybe it would be better to have the memory balloon
2018 Jul 12
1
[PATCH v35 1/5] mm: support to get hints of free page blocks
On Thu 12-07-18 19:34:16, Wei Wang wrote: > On 07/12/2018 04:13 PM, Michal Hocko wrote: > > On Thu 12-07-18 10:52:08, Wei Wang wrote: > > > On 07/12/2018 10:30 AM, Linus Torvalds wrote: > > > > On Wed, Jul 11, 2018 at 7:17 PM Wei Wang <wei.w.wang at intel.com> wrote: > > > > > Would it be better to remove __GFP_THISNODE? We actually want to get
2003 Feb 05
4
barplot default colors
Dear R-help, Can some one explain why barplot() uses changing colors in the bars by default? I should think that most of the time when people draw barplots, they want the bars to be in the same color. (At least that's what I'd expect. The first time I used barplot() in R, I was shocked to see the colors.) As an example, one example in ?layout draws a scatterplot with histograms drawn
2003 Feb 05
4
barplot default colors
Dear R-help, Can some one explain why barplot() uses changing colors in the bars by default? I should think that most of the time when people draw barplots, they want the bars to be in the same color. (At least that's what I'd expect. The first time I used barplot() in R, I was shocked to see the colors.) As an example, one example in ?layout draws a scatterplot with histograms drawn
2005 Jul 03
11
[PATCH] xm info
This patch makes "xm info" show information on xen version, compile info, number of socket/core, etc... In order to do that, it extends physinfo hypercall to return number of socket, adds few functions to libxc and extends python wrapper correspondingly. Here is the output of new "xm info": -- system : Linux host : ubuntu xen_release
2020 Nov 06
3
GVIM annoyances
I've just upgraded from my old F9 box to C7, which of course means lots of changes.? However, the ones are are annoying me most are with VIM. No matter what I do I can't get? gvim to open in a reasonable size. I have a dual headed setup (laptop + external) and every time gvim opens it takes up both screens. I've tried a few suggestions including the one below without success.? In
2018 Apr 20
2
[PATCH] kvmalloc: always use vmalloc if CONFIG_DEBUG_VM
On Thu, Apr 19, 2018 at 12:12:38PM -0400, Mikulas Patocka wrote: > Unfortunatelly, some kernel code has bugs - it uses kvmalloc and then > uses DMA-API on the returned memory or frees it with kfree. Such bugs were > found in the virtio-net driver, dm-integrity or RHEL7 powerpc-specific > code. Maybe it's time to have the SG code handle vmalloced pages? This is becoming more and
2018 Apr 20
2
[PATCH] kvmalloc: always use vmalloc if CONFIG_DEBUG_VM
On Thu, Apr 19, 2018 at 12:12:38PM -0400, Mikulas Patocka wrote: > Unfortunatelly, some kernel code has bugs - it uses kvmalloc and then > uses DMA-API on the returned memory or frees it with kfree. Such bugs were > found in the virtio-net driver, dm-integrity or RHEL7 powerpc-specific > code. Maybe it's time to have the SG code handle vmalloced pages? This is becoming more and
2006 Jun 27
1
TCNG issue - parent class restrictions are not honored
Hi, I''ve been migrating an existing htb-based traffic shaper from a hideous (I''m allowed to call it that - I wrote the damn atrocity myself) tc shell script into a TCNG configuration file, and after a few false starts I think I managed to get the syntax right. However, during tests it looks like some of the tiers aren''t passing their restrictions on to lower levels.
2009 May 09
2
a general way to select a subset of matrix rows?
Dear fellow R users, I can't figure out how to do a simple thing properly: apply an operation to matrix columns on a selected subset of rows. Things go wrong when only one row is being selected. I am sure there's a way to do this properly. Here's an example: # define a 3-by-4 matrix x > x <- matrix(runif(12),ncol=4) > str(x) num [1:3, 1:4] 0.568 0.217 0.309 0.859
2003 Sep 16
8
Hangups after voicemail
Hi, Try as I might, I can't get hangups detected on a Zap channel with loop start lines. So, after someone leaves a voicemail and then hangs up, Asterisk doesn't know it, exits VoicemailMain2, and loops back to the corporate greeting, tying up the line even though the outside caller has hung up. Therefore, I've added the following hideous hack - er, code - to voicemail2.c. It
2018 Jul 12
0
[PATCH v35 1/5] mm: support to get hints of free page blocks
On 07/12/2018 04:13 PM, Michal Hocko wrote: > On Thu 12-07-18 10:52:08, Wei Wang wrote: >> On 07/12/2018 10:30 AM, Linus Torvalds wrote: >>> On Wed, Jul 11, 2018 at 7:17 PM Wei Wang <wei.w.wang at intel.com> wrote: >>>> Would it be better to remove __GFP_THISNODE? We actually want to get all >>>> the guest free pages (from all the nodes).
2008 Jul 24
2
[Bug 1491] New: no field sin6_scope_id on AIX 4.3.3
...;af = AF_INET6; memcpy(&xa->v6, &in6->sin6_addr, sizeof(xa->v6)); +#ifdef _AIX + xa->scope_id = 0; +#else xa->scope_id = in6->sin6_scope_id; +#endif break; default: return -1; And, yes, I am painfully aware that AIX 4.3.3 is hideously out of date :( (see also bug 401) -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug.
2006 Dec 18
1
Plotting individual survival plots
Using the survival library, it is possible to get a plot of all the subjects in a sample and it is possible to get a plot of all subgroups in the same plot. How does one get a separate plot for each subgroup? plot(survfit(Surv(time,death==1)~group),col=1:10) The above results in a hideous graphic representation. I would prefer to specify par(mfrow = c(2, 5)) and have each plot separately --
2012 Jan 06
1
Please help!! How do I set graphical parameters for ploting ctree()
...airct)   My problem is, I've got a ctree that has 14 terminal nodes, and as a result of the default graphical paramters of plot(ctree), all of the text is completely undreadable (decison node text is too large and as a result, these nodes overlap one another, terminal node barplot text overlaps hideously).  What I would like to do is learn how to customize the elements of these plots.  For the text, I have tried par(cex=.4, cex.main=.4, cex.axis=.2, cex.lab=.2)... to no avail.  As far as reducing the size of the node ovals, I'm completely lost there...   Anyone have any suggestions?   Thanks i...
2007 Jul 05
0
[LLVMdev] new website prototype
On 05 Jul 2007, at 08:32, Chris Lattner wrote: > At this point, I'm interested in feedback and help. I've only > tried the > page with one browser, so it's entirely possible it looks like a > monkey's > armpit on other popular browsers. There is still a ton of missing > content > that needs to be filled in. The site also currently just includes >
2008 Feb 22
2
ActiveRecord::DangerousAttributeError ???
Hi, For some reason, this harmless block of code in my application controller def index @wide = true end is causing this hideous error. I have read the error means that the error is raised when attribute has a name reserved by ActiveRecord. Does that mean that none of my models can have columns named "toggle"? Here is the error and framework trace: