On Sun, 24 May 2015 17:25:54 EDT minux wrote:
>
> On Sun, May 24, 2015 at 11:55 AM, erik quanstrom
> wrote:
>
> > > Uhm I might be mistaken, but I guess [8192]byte is an array, and []byte
> > are
> > > slices - therefore they are different types.
> > >
> >
> > yes, exactly. i suppose this impl
i'm using plan9port mk on linux and just hit the environment+argument
length limit -- linux' execve($PLAN9/bin/rc, ... ) returns E2BIG because
$newprereq gets too large.
how do i work around? is there an idiomatic way of splitting up $newprereq
into smaller chunks?
the mkfile is:
TIMESTAMP_FILE:
do you mean other than using xargs?
On Mon, May 25, 2015 at 5:31 AM dexen deVries
wrote:
> i'm using plan9port mk on linux and just hit the environment+argument
> length limit -- linux' execve($PLAN9/bin/rc, ... ) returns E2BIG because
> $newprereq gets too large.
>
> how do i work around? is th
Hi all.
I tried using the following shim header to satisfy in a package I
want to build.
https://raw.githubusercontent.com/libressl-portable/portable/master/include/err.h
It looked pretty neat since it does everything in the header.
It did however not work (I guess the "..." and "##" are to bl
Turns out the CSR wasn’t acceptable because of the MD5 signature. It seems the
that they should be signed as RSA and not MD5. MD5 is not deemed secure
enough. The plan 9 code is signing everything with MD5. Who owns this code?
Has anyone fixed this yet?
> On May 24, 2015, at 11:10 AM, Skip Ta
Hello,
I cannot make the plumbing to work on acme.
I have create a plumbing file at ~/lib/plumbing with:
# isbn10 search through Amazon
type is text
data matches '([0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9])'
plumb start open 'http://www.amazon.com/s/?field-keywords='$1
Initially I real
It seems I solve my own problem by accident. In the end I am using this script:
#!/bin/bash
/usr/local/plan9/bin/plumber
cat /usr/local/plan9/plumb/fileaddr /usr/local/plan9/plumb/basic
$HOME/lib/plumbing | 9p write plumb/rules
export tabstop=8; /usr/local/plan9/bin/acme -a -l ~/acme.dump &
Is t