search for: quux

Displaying 20 results from an estimated 36 matches for "quux".

Did you mean: qux
2006 May 02
2
Bug: invalid nesting of inline markup across link labels
Hi John, there?s a bug in Markdown.pl: [foo*bar](#) [baz*quux](#) This expands to the following: <p><a href="#">foo<em>bar</a> <a href="#">baz</em>quux</a></p> Those `*` should either be disregarded or the tags should nest correctly: 1. <p><a href="#">foo*bar&...
2010 Nov 03
1
Recoding -- test whether number begins with a certain number
Dear R community, I have a question concerning recoding of a variable. I have a data set in which there is a variable devoted to the ISCO code describing the occupation of this certain individual (http://www.ilo.org/public/english/bureau/stat/isco/isco88/major.htm). Every type of occupation begins with a number and every number added to this number describes th occupation more detailed. Now my
2009 Sep 03
5
abind, but on lists?
I'm trying to massage some data from Matlab into R. The matlab file has a "struct array" which when imported into R using the R.matlab package, becomes an R list with 3+ dimensions, the first of which corresponds to the structure fields, with corresponding row names, and the second and third+ dimensions correspond to the dimensions of the original struct array (as matlab
2011 Feb 14
3
help with aggregate()
Hi, I am trying to aggregate some data and I am confused by the results. I load a data frame "all" from a csv file, and then I do: (FOO,BAR,X,Y come from the header line in the csv file, BTW, how do I rename a column?) byFOO <- aggregate(list(all$BAR,all$QUUX,all$X/all$Y), by = list(FOO=all$FOO), FUN = mean); I expect a data frame with 4 columns: FOO,BAR,QUUX and X/Y with all FOO being different (they are character strings, do I need a special incantation to turn them into factors?) what I get is indeed a data...
2005 May 21
2
Possible (ab)use of lexical scoping in R ?
...uxilliaries used by another set of (user-visible) "main" functions. I might also wish sometimes to create a such a set of data. (Common) Lisp and Scheme allow this easily. For example, in Common Lisp, I could use : (flet ((bar (a)(...))(gee (t u)(...))) (defun foo(x y)( ...)) (defun quux(m n ...)(...))) Now (barring syntax errors I may have slipped in the above pseudo-example (my Lisp is rusty)), foo and quux are known in the main environment, can both call bar and gee, which are not visible. Lisp also allows me to do a similar thing for "data" (with let()) and even macr...
2008 Sep 08
13
list corner case
I'm curious how people think the following *should* be interpreted: - one 2. two http://babelmark.bobtfish.net/?markdown=-++one%0D%0A2.+two%0D%0A%0D%0A As you can see, implementations split into three groups here: (a) treat as an unordered list Markdown.pl, Python markdown, MultiMarkdown, BlueCloth, MarkdownJ, Showdown (b) treat as an unordered list with an ordered
2010 Dec 25
2
[LLVMdev] LLVM dllimport
?Hi all, Can someone tell me how to import functions from shared libraries and use them in LLVM assembly Regards, Dylan Borg +356 99214902 borgdylan at hotmail.com borgdylang at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101225/77e1182c/attachment.html>
2010 Dec 27
0
[LLVMdev] LLVM dllimport
Hi Dylan, If you have "import libraries", you may call them with general calling conversions. Without import libraries, for example; declare dllimport i32 @foo(i32) @quux = dllimport global i32 define i32 @bar() nounwind { %a = load i32* @quux %r = call i32 @foo(i32 %a) ret i32 %r } .globl _bar _bar: subl $4, %esp movl __imp__quux, %eax movl (%eax), %eax movl %eax, (%esp) calll *__imp__foo...
2007 May 13
1
provider for Macros!
Hi, Was just wondering if there is any provider for Macros like we have pid provider for function calls? Thanks, Neelam -- This message posted from opensolaris.org
2002 Apr 12
1
Once again somewhat mystified with exclude rules
I go thru this every few mnths it seems. Rsyncs exclude rules are very sophisticated but because of that somewhat unfathomable at times. Simplified: I want to exclude directories named no_bak anywhere in the tree but only the files under them, not the direcrories themselves. My exclude rules look like: no_bak/* /no_bak/* The first one does catch directories by that name on the first level but
2017 Nov 01
2
llvm.gcroot trouble with non-i8* allocas
...r ret { i8*, i32 } %v } llc says: llvm.gcroot parameter #1 must either be a pointer alloca, or argument #2 must be a non-null constant. call void @llvm.gcroot(i8** %rootptr, i8* null) ...and if I do as it asks and add a metadata then I get a crash: @info = constant i8 1 define { i8*, i32 } @quux({ i8*, i32 } %x) gc "shadow-stack" { entry: %objptr = alloca { i8*, i32 } %rootptr = bitcast { i8*, i32 }* %objptr to i8** call void @llvm.gcroot(i8** %rootptr, i8* @info) store { i8*, i32 } %x, { i8*, i32 }* %objptr %v = load { i8*, i32 }, { i8*, i32 }* %objptr ret { i8*, i32...
2017 Jan 03
0
dovecot.index.pvt view is inconsistent: error messages for public mailbox folder
...t.index.pvt reset, view is now inconsistent 2017-01-03T11:19:28.248524+01:00 mailserver01 dovecot: imap(foo.bar at example.org): Error: /var/vmail/example.org/foo.bar/Maildir/public/.Spam-Learning/dovecot.index.pvt view is inconsistent 2017-01-03T11:23:50.209732+01:00 mailserver01 dovecot: imap(baz.quux at example.org): Error: /var/vmail/example.org/baz.quux/Maildir/public/.Spam-Learning/dovecot.index.pvt reset, view is now inconsistent 2017-01-03T11:23:50.775940+01:00 mailserver01 dovecot: imap(some.user at example.org): Error: /var/vmail/example.org/some.user/Maildir/public/.Spam-Learning/doveco...
2017 Nov 01
0
llvm.gcroot trouble with non-i8* allocas
...llvm.gcroot parameter #1 must either be a pointer alloca, or > argument #2 must be a non-null constant. > call void @llvm.gcroot(i8** %rootptr, i8* null) > > ...and if I do as it asks and add a metadata then I get a crash: > > @info = constant i8 1 > > define { i8*, i32 } @quux({ i8*, i32 } %x) gc "shadow-stack" { > entry: > %objptr = alloca { i8*, i32 } > %rootptr = bitcast { i8*, i32 }* %objptr to i8** > call void @llvm.gcroot(i8** %rootptr, i8* @info) > store { i8*, i32 } %x, { i8*, i32 }* %objptr > %v = load { i8*, i32 }, { i8*, i...
2008 Dec 05
1
Legend and Main Title positioning
Hi folks, can anybody give me a hint how to solve the following problem? I have several plots in one window like this: layout(matrix(c(1,2,3,4), nrow = 2, byrow = TRUE)) plot(rnorm(100)) plot(rnorm(200)) plot(rnorm(300)) plot(rnorm(400)) Now, I'd like to create a legend below each plot and generate a common title. How can I do that? Antje
2013 Dec 15
1
graphviz
Hi, I propose that the "ad-hoc connections" (localdiscovery) are also displayed in the graph (graphdumpfile) as it is useful for debugging. I find the command-line tooling a bit cumbersome to find out where the problem is - maybe a web-interface can be added to tincd? Implementing a http server is trivial I found out. Folkert van Heusden -- Curious about the inner workings of your
2005 Dec 23
1
Better way to import initial migration?
On a rails app that I''m developing I converted a regular old .sql file into a rails migration. Since I generated the migration in my development environment, it created the schema_info table for me. However, when I updated my production environment and tried running rake migrate it complained that schema_info doesn''t exist. Is there a rake task for getting around this yet, or
2004 Jan 14
1
-vn doesn't list empty directories, -v does
...foo drwxr-xr-x 2 jh jh 4096 Jan 14 15:31 ./foo/bar -rw-r--r-- 1 jh jh 0 Jan 14 15:44 ./foo/quuz lrwxrwxrwx 1 jh jh 3 Jan 14 15:50 ./foo/wrt -> spl Please send any replies personal, as I am not on the list. (And yes, I know it's quux, not quuz, but I typoed and got lazy). --jh--
2005 Feb 03
2
Migrating from mbox to maildir: Message ordering?
Hi, all. I have been playing with the notion of migrating some of my folders to maildir because it's a lot easier to manage that way from a reader standpoint. The big question I have is how do I maintain message ordering in each folder? When I use a mail program to do the migration from mbox to maildir, selecting "order received ascending", it works nicely, but one very small
2020 Jun 16
3
Codifying our Brace rules-
I'm with Matt on this one. I much prefer the approach of ALWAYS use braces for ifs and for loops, even if they're not needed, for basically the same reasons as he put. The number of times I've added a statement inside an if without braces and forget to add them is annoyingly high, especially as it's not always an obvious error upfront. Similarly, being involved in a downstream
2019 Oct 07
1
Newbie
...allow_duplicate_users" value="0"/> </authentication> <http-headers> <header name="Access-Control-Allow-Origin" value=" http://webplayer.example.org" /> <header name="baz" value="quux" /> </http-headers> </mount> --> <!-- <mount type="normal"> <mount-name>/auth_example.ogg</mount-name> <authentication type="url"> <option name="mount_add" v...