Re: [9fans] hg on plan 9

2011-10-27 Thread Akshat Kumar
I made a change to hg: mercurial/store.py: in def _buildencodefun(): -win_reserved = [ord(x) for x in '\\:*?|'] +win_reserved = [ord(x) for x in '\\:*?| '] in def _build_lower_encodefun(): -win_reserved = [ord(x) for x in '\\:*?|'] +win_reserved = [ord(x) for x in '\\:*?| ']

Re: [9fans] tcl, 9p

2011-10-27 Thread Axel Belinfante
since most of the follow-up discussion went sideways: Anyone know the state of the art of writing 9p clients/servers in tcl? at some point in time it seemed to be http://wiki.tcl.tk/15632 (but I seriously do hope you already found that) Axel - nowadays also enjoying go

Re: [9fans] hg on plan 9

2011-10-27 Thread cinap_lenrek
i told you this only mangles the files in the *repository*, not the *working directory*. special characters are not converted to ~ but to ~xx where xx is the hexadecimal byte value of the byte replaced. use hg clone -U so it wont try to check stuff out. then then use hgfs to access the files. --

Re: [9fans] hg on plan 9

2011-10-27 Thread erik quanstrom
you can also use ramfs instead of hgfs. you may need the 9atom version which allows unlimited files. - erik

[9fans] looking for bay area plan 9 member of the office of chief technology officer

2011-10-27 Thread Brantley Coile
i've not been on the list for a while because things are really moving fast here at coraid. i've started an office of the cto and staffing it with knowledgable people to do interesting things. my objective is for the office is for it to innovate, communicate and educate, and everyone codes

Re: [9fans] looking for bay area plan 9 member of the office of chief

2011-10-27 Thread Lucio De Re
right now i'm in dire need of someone in the bay area with strong plan 9 experience and/or deep knowledge of intel hardware platforms. if you know of anyone who might be interested, please let them know to send me an email. You wouldn't be needing a South African with an Italian (EU)

Re: [9fans] 9atom virtualbox 4.0.10 networking issue

2011-10-27 Thread andrey mirtchovski
reporting success with the latest extension pack http://download.virtualbox.org/virtualbox/4.1.4/Oracle_VM_VirtualBox_Extension_Pack-4.1.4-74291.vbox-extpack and the Plan 9 VBox image available online here: http://downloads.sourceforge.net/virtualboximage/Plan9.vdi.7z bridged networking with

Re: [9fans] hg on plan 9

2011-10-27 Thread Akshat Kumar
Ah, I wonder if that was the problem when I was trying trfs with ramfs. On Thu, Oct 27, 2011 at 6:10 AM, erik quanstrom quans...@quanstro.net wrote: you can also use ramfs instead of hgfs.  you may need the 9atom version which allows unlimited files. - erik

[9fans] is there a at91 port?

2011-10-27 Thread Jack Norton
Hello, I am asking around to see if there is anyone working on a port to the Atmel at91 platform (sam9xxx boards)? I have one somewhere (just finding the damn thing might take a while), and I am going to slowly start figuring this out. Honestly though, it is my first attempt at anything

Re: [9fans] nanosleep()?

2011-10-27 Thread ron minnich
On Thu, Oct 27, 2011 at 9:07 PM, Lucio De Re lu...@proxima.alt.za wrote: In porting the prof command from the Go distribution (src/cmd/prof), absence of the nanosleep() function seems to be the final stumbling block, at least for compilation purposes.  Any suggestions on how to implement it?

Re: [9fans] nanosleep()?

2011-10-27 Thread Lucio De Re
For a first pass, you could create a nanosleep for plan 9 that rounds to milliseconds and then use sleep() Sounds like a plan, because the man page for nanosleep() expects the underlying resolution to be implemented. The complexities of does not interact with signals can probably be ignored