Displaying 20 results from an estimated 100 matches similar to: "help with aggregate()"
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</a> <a
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
2005 May 21
2
Possible (ab)use of lexical scoping in R ?
Dear list,
I wish to define a set of functions *auxilliary* to another set of
"main" ones, and I wonder if there is some "clever" way do do this using
lexical scoping. Looking for that in the list's archives did not get me
easily understood answers. Perusing MASS (1st, 2nd, 3rd and 4th
editions!) and "Programming S" wasn't of much help either...
R easily
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
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
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>
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
I'm allocating { i8*, i32 } on the stack, and would like to add this as a
GC root, but I'm having trouble figuring this out.
This works as expected:
declare void @llvm.gcroot(i8** %ptrloc, i8* %metadata)
define i8* @bar(i8* %x) gc "shadow-stack" {
entry:
%objptr = alloca i8*
call void @llvm.gcroot(i8** %objptr, i8* null)
store i8* %x, i8** %objptr
%v = load i8*, i8**
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
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
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
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
2017 Nov 01
0
llvm.gcroot trouble with non-i8* allocas
Solved by using alloca i8*, i32 2 which the system seems happy enough with,
and bitcasting to the actual type for rest of the code after llvm.gcroot.
Not entirely sure if this is a terrible workaround or exactly the way
gcroot is supposed to be used...
On Wed, Nov 1, 2017 at 11:59 AM, Nikodemus Siivola <
nikodemus at random-state.net> wrote:
> I'm allocating { i8*, i32 } on the
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
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
2011 Mar 31
5
manage /etc/passwd and /etc/group
Hi again,
I am trying to add the following to my /etc/passwd and /etc/group
files
+:::::
and
+:::
this is for ldap search on the servers.
I am note quite sure on howto do this, I tryed with the following code
augeas{
"groups ldap":
context => "/files/etc/group",
changes => [
2019 Oct 07
1
Newbie
I am using Winamp, Icecast2 Server, and Edcast. I believe I have set these
up properly so that I can set up and broadcast an internet radio station.
These are the links I used to help me:
https://www.pcworld.com/article/190705/start_your_own_internet_radio_station_for_free.html
https://www.fastserv.com/kb/article/edcast_winamp_-_easy_steps_to_streaming_to_icecast_or_shoutcast/
2019 Sep 09
7
multiple instances?
Hello, unosonic,
======= At 2019-09-09, 04:54:14 you wrote: =======
>wilderzone.radio.2:
>> >What is the use case that you are trying to address? Icecast is well
>> >suited to running multiple streams in parallel and offers complex
>> >configuration options for many use cases.
>>
>> Well the "case" or as others would call it "use"
2017 Jan 03
0
dovecot.index.pvt view is inconsistent: error messages for public mailbox folder
Hi list,
running Dovecot 2.2.27 on Ubuntu 14.04. A public mailbox
"Public/Spam-Learning" in a public namespace with per-user "Seen" flags
is configured like this:
namespace pub {
hidden = no
inbox = no
list = children
location = maildir:/var/vmail/public:INDEXPVT=~/Maildir/public
prefix = Public/
separator = /
subscriptions = no
type = public
mailbox