Re: [9fans] Drawterm and OS X 10.8

2013-09-05 Thread erik quanstrom
Result is, while Drawterm comes up, and gives me a password prompt, nothing else happens, no connection to my CPU server is made, and rio never starts. Does anyone have any thoughts on this? are you using jas/drawterm-cocoa from bitbucket? - erik

Re: [9fans] Drawterm and OS X 10.8

2013-09-05 Thread Jeff Sickel
On Sep 5, 2013, at 9:16 PM, erik quanstrom quans...@labs.coraid.com wrote: Result is, while Drawterm comes up, and gives me a password prompt, nothing else happens, no connection to my CPU server is made, and rio never starts. Does anyone have any thoughts on this? are you using

Re: [9fans] Drawterm and OS X 10.8

2013-09-05 Thread Shane Morris
All good - I Googled. Thanks for the heads up! On Fri, Sep 6, 2013 at 5:24 AM, Shane Morris edgecombe...@gmail.com wrote: Uh, no, I had no idea that drawterm-cocoa existed. Could I have a link please? =) On Fri, Sep 6, 2013 at 5:20 AM, Jeff Sickel j...@corpus-callosum.comwrote: On Sep

Re: [9fans] Drawterm and OS X 10.8

2013-09-05 Thread Shane Morris
Uh, no, I had no idea that drawterm-cocoa existed. Could I have a link please? =) On Fri, Sep 6, 2013 at 5:20 AM, Jeff Sickel j...@corpus-callosum.com wrote: On Sep 5, 2013, at 9:16 PM, erik quanstrom quans...@labs.coraid.com wrote: Result is, while Drawterm comes up, and gives me a

[9fans] Drawterm and OS X 10.8

2013-09-05 Thread Shane Morris
Hello 9fans, I believe I am seeing a typical case of new OS X breaks open source software with the following error: Shanes-MacBook-Air:Applications boris$ ./drawterm -a 'tcp!10.0.0.10!17059' -c 'tcp!10.0.0.10!17060' -u glenda 2013-09-05 07:40:22.391 drawterm[2884:2d03] [IMKInputSession activate]

Re: [9fans] Drawterm and OS X 10.8

2013-09-05 Thread erik quanstrom
I guess we really should try and merge the cocoa fork back into sources and Russ' repo. resizing needs to work on linux, bsd and windows, first. :-) - erik

Re: [9fans] Acme win and 75+ character Send commands

2013-09-05 Thread James A. Robinson
D'oh, I'm thinking maybe it's bash that is doing this (since bash is my default shell instead of rc). On Thu, Sep 5, 2013 at 1:16 PM, James A. Robinson j...@highwire.stanford.edu wrote: Hi folks, I can't spot anything in the man page about this: is it expected that Acme win will echo the

[9fans] Acme win and 75+ character Send commands

2013-09-05 Thread James A. Robinson
Hi folks, I can't spot anything in the man page about this: is it expected that Acme win will echo the trailing part of a Send command if the length of the command exceeds 75 characters? An example: http://highwire.stanford.edu/~jimr/acme-win-76.png Jim

[9fans] Closed nix development is an insult

2013-09-05 Thread Aram Hăvărneanu
Is nix closed source, dead, or vaporware? The daily generated nix.tgz is either not daily generated or the tree which it is archiving is dead. Most files are from 2012, most recent file (nix/sys/log/nixdistr) is from Feb 8 2013, the kernel is from Jul 10 2012. The variant posted on sources is

Re: [9fans] Closed nix development is an insult

2013-09-05 Thread erik quanstrom
Interestingly, the nix source published in 9atom contains newer files, May 20th to be exact. It's not just new drivers ported from 9atom, the newest non-driver, k10-specific file is stamped May 16th. I don't know if the timestamps are simply wrong or some priviledged people do get access to

Re: [9fans] Closed nix development is an insult

2013-09-05 Thread Francisco J Ballesteros
the mark I nix was, thanks to erik, made public and got stuff like graphics. Im sure you know where to find it. We have another version which is still experimental and unreleased, but we were distracted by other things. Hopefully we will publish it in the near future. But, we do what we can.

Re: [9fans] Acme win and 75+ character Send commands

2013-09-05 Thread erik quanstrom
On Thu Sep 5 16:19:19 EDT 2013, j...@highwire.stanford.edu wrote: D'oh, I'm thinking maybe it's bash that is doing this (since bash is my default shell instead of rc). it's likely readline, which has an 80-column mind. - erik

Re: [9fans] Closed nix development is an insult

2013-09-05 Thread Kurt H Maier
I was going to post something along the lines of if you can't increase the quality of a product, you can increase its value via artificial scarcity, but I've been out-trolled already: Quoting Francisco J Ballesteros n...@lsub.org: Sorry to hear that working on it is insulting. This is

Re: [9fans] Acme win and 75+ character Send commands

2013-09-05 Thread Rob Pike
Try set +o emacs (sic) -rob

Re: [9fans] Acme win and 75+ character Send commands

2013-09-05 Thread James A. Robinson
2013/9/5 Rob Pike robp...@gmail.com Try set +o emacs (sic) Thank you, that did it. Interesting that it's a +o command to turn something off. bash(1) ... READLINE This is the library that handles reading input when using an interactive shell, unless the --noediting option

[9fans] Back to basics

2013-09-05 Thread Shane Morris
Hello 9fans, Forgive me if this is an exceedingly mind numbing question, curiosity did kill the cat...! I have an ANTS 9worker image as CPU server, an ANTS 9queen image as auth server, both running on my Linux workstation under QEMU, a Drawterm session on the Linux workstation, and a Drawterm

Re: [9fans] p9p on Retina Macs

2013-09-05 Thread marius a . eriksen
Thanks for the pointers. I finally did some sleuthing and experimentation. Indeed, devdraw now knows about a display’s DPI, and launching a devdraw app with environment devdrawretina=1 enables detection of retina displays, and setting the current DPI accordingly. DPI seems to affect a few

Re: [9fans] Acme win and 75+ character Send commands

2013-09-05 Thread Rob Pike
You give a shell command the flag -X to turn on X, so +X to turn off X makes sense in a negative true kinda way. -rob

Re: [9fans] p9p on Retina Macs

2013-09-05 Thread Russ Cox
What Marius wrote is mostly accurate. If you set devdrawretina=1 you get tinier pixels; acme, sam, and 9term know to draw thicker lines in response; other programs do not. If you want fonts that look somewhat like the Plan 9 bitmaps, I use this with acme: #!/bin/bash export devdrawretina=1

Re: [9fans] p9p on Retina Macs

2013-09-05 Thread marius eriksen
On Sep 5, 2013, at 9:14 PM, Russ Cox r...@swtch.com wrote: For fun, try 'devdrawretina=1 9term -f /mnt/font/Menlo-Regular/80a/font' and then in that window run 'unicode fffe’. Oh yes. I have been enjoying the pjw stare. -m.

Re: [9fans] Acme win and 75+ character Send commands

2013-09-05 Thread Bruce Ellis
just don't forget to unset nonomatch On 6 September 2013 14:10, Rob Pike robp...@gmail.com wrote: You give a shell command the flag -X to turn on X, so +X to turn off X makes sense in a negative true kinda way. -rob