9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] Git/fs: Possibly Usable
@ 2019-04-02  4:41 ori
  2019-04-02  6:10 ` Skip Tavakkolian
                   ` (5 more replies)
  0 siblings, 6 replies; 41+ messages in thread
From: ori @ 2019-04-02  4:41 UTC (permalink / raw)
  To: 9fans

It was mentioned on this list a short while ago. Now, it's
more or less at the point where it works for me. Expect
many bugs and problems, and many more missing tools, but
"the rest is just scripting".

One caveat I have: Git's index file format is a bit
boneheaded, so I'm ignoring it. The index doesn't affect
the wire protocol, so this isn't an interoperability issue,
unless you share the same physical repository on both
Plan 9 and Unix. If you do, expect them to get out of
sync on uncommitted but added files.

In fact, the entire concept of the staging area has been
removed, as it's both confusing and clunky. There are now
only three states that files can be in: 'untracked',
'dirty', and 'committed'. Tracking is done with empty
files under .git/index9/{removed,tracked}/path/to/file.

It's implemented in Plan 9 flavor C, and provides tools
for writing repository contents, and a file system for
read-only access, which will mirror the current state of
the repository.

The code is here: https://bitbucket.org/oridb/git9

Install with `mk install`. There's no recursive binding
of directories, so you need to union /rc/bin/git and
$objtype/bin/git` by hand.

Documentation has not yet been written. You'll need to
read the source.

Some usage examples:

	git/clone git://git.eigenstate.org/git/ori/mc.git
	git/log
	cd subdir/name
	git/add foo.c
	git/commit
	git/push

Scripts will generally mount git/fs as needed to do
their work, but if you want to browse the repository
manually, run it yourself. You'll get `/n/git` mounted,
with the following contents:

	/n/git/object:	The objects in the repo.
	/n/git/branch:	The branches in the repo.
	/n/git/ctl:		A file showing the status of the repo.
					Currently, it only shows the current branch.

Commits are presented as directories with the following
contents:

	author:	A file containing the author name
	hash:	A file containing the commit hash
	parent:	A file containing the commit parents, one per line.
	msg:	A file containing the log message for that commit
	tree:	A directory containing a view of the repository.

So, for example:

	% ls /n/git/branch/heads/master
	/n/git/branch/heads/master/author
	/n/git/branch/heads/master/hash
	/n/git/branch/heads/master/msg
	/n/git/branch/heads/master/parent
	/n/git/branch/heads/master/tree
	% cat /n/git/branch/heads/master/hash
	7d539a7c08aba3f31b3913e0efef11c43ea9

	# This is the same commit, with the same contents.
	% ls /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef
	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/author
	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/hash
	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/msg
	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/parent
	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/tree

	# what git/diff will hopefully do more concisely soon, filtering
	# out the non-git files.
	ape/diff -ur /n/git/branch/heads/master/tree .
	Only in .: .git
	Only in .: debug
	diff -ur /n/git/branch/heads/master/tree/fold.myr ./fold.myr
	--- /n/git/branch/heads/master/tree/fold.myr	Wed Dec 31 16:00:00 1969
	+++ ./fold.myr	Mon Apr  1 21:39:06 2019
	@@ -6,6 +6,8 @@
	 	const foldexpr : (e : expr# -> std.option(constval))
	 ;;

	+/* Look, diffing files just works, and I don't need any fancy glue! */
	+
	 const foldexpr = {e
	 	match e
	 	| &(`Eident &[.sc=`Sclassenum, .name=name, .ty=`Tyenum &(`Body enum)]):
	Only in .: refs


The following utilities and binaries are provided:

	fs:	The git filesystem.
	fetch:	The protocol bits for getting data from a git server.
	send:	The protocol bits for sending data to a git server.
	save:	The gnarly bits for storing the files for a commit.
	conf:	A program to extract information from a config file.
	clone:	Clones a repository.
	commit:	Commits a snapshot of the working directory.
	log:	Prints the contents of a commmit log.
	add:	Tells the repository to add a file to the next commit.
	walk:	`du`, but for git status.


Supported protocols: git:// and git+ssh://. If someone
implements others, I'll gladly accept patches.

TODOs:
	git/mkpatch:	Generate a 'git am' compatible patch.
	git/apply:	Apply a diff.
	git/diff:	Wrapper wrapper around git/walk that
			diffs the changed files.
	git/merge:	Yup, what it says on the label. Should
			also be a script around git/fs.
	git/log:	Need to figure out how to make it filter
			by files.
	/n/git/HEAD:	add /n/git/head subtree which points
			to the current commit.

...And a whole bunch more.




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-02  4:41 [9fans] Git/fs: Possibly Usable ori
@ 2019-04-02  6:10 ` Skip Tavakkolian
  2019-04-02 13:32 ` Dave MacFarlane
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 41+ messages in thread
From: Skip Tavakkolian @ 2019-04-02  6:10 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 5608 bytes --]

Very cool!  Thank you.

On Mon, Apr 1, 2019 at 9:48 PM <ori@eigenstate.org> wrote:

> It was mentioned on this list a short while ago. Now, it's
> more or less at the point where it works for me. Expect
> many bugs and problems, and many more missing tools, but
> "the rest is just scripting".
>
> One caveat I have: Git's index file format is a bit
> boneheaded, so I'm ignoring it. The index doesn't affect
> the wire protocol, so this isn't an interoperability issue,
> unless you share the same physical repository on both
> Plan 9 and Unix. If you do, expect them to get out of
> sync on uncommitted but added files.
>
> In fact, the entire concept of the staging area has been
> removed, as it's both confusing and clunky. There are now
> only three states that files can be in: 'untracked',
> 'dirty', and 'committed'. Tracking is done with empty
> files under .git/index9/{removed,tracked}/path/to/file.
>
> It's implemented in Plan 9 flavor C, and provides tools
> for writing repository contents, and a file system for
> read-only access, which will mirror the current state of
> the repository.
>
> The code is here: https://bitbucket.org/oridb/git9
>
> Install with `mk install`. There's no recursive binding
> of directories, so you need to union /rc/bin/git and
> $objtype/bin/git` by hand.
>
> Documentation has not yet been written. You'll need to
> read the source.
>
> Some usage examples:
>
>         git/clone git://git.eigenstate.org/git/ori/mc.git
>         git/log
>         cd subdir/name
>         git/add foo.c
>         git/commit
>         git/push
>
> Scripts will generally mount git/fs as needed to do
> their work, but if you want to browse the repository
> manually, run it yourself. You'll get `/n/git` mounted,
> with the following contents:
>
>         /n/git/object:  The objects in the repo.
>         /n/git/branch:  The branches in the repo.
>         /n/git/ctl:             A file showing the status of the repo.
>                                         Currently, it only shows the
> current branch.
>
> Commits are presented as directories with the following
> contents:
>
>         author: A file containing the author name
>         hash:   A file containing the commit hash
>         parent: A file containing the commit parents, one per line.
>         msg:    A file containing the log message for that commit
>         tree:   A directory containing a view of the repository.
>
> So, for example:
>
>         % ls /n/git/branch/heads/master
>         /n/git/branch/heads/master/author
>         /n/git/branch/heads/master/hash
>         /n/git/branch/heads/master/msg
>         /n/git/branch/heads/master/parent
>         /n/git/branch/heads/master/tree
>         % cat /n/git/branch/heads/master/hash
>         7d539a7c08aba3f31b3913e0efef11c43ea9
>
>         # This is the same commit, with the same contents.
>         % ls /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/author
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/hash
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/msg
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/parent
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/tree
>
>         # what git/diff will hopefully do more concisely soon, filtering
>         # out the non-git files.
>         ape/diff -ur /n/git/branch/heads/master/tree .
>         Only in .: .git
>         Only in .: debug
>         diff -ur /n/git/branch/heads/master/tree/fold.myr ./fold.myr
>         --- /n/git/branch/heads/master/tree/fold.myr    Wed Dec 31
> 16:00:00 1969
>         +++ ./fold.myr  Mon Apr  1 21:39:06 2019
>         @@ -6,6 +6,8 @@
>                 const foldexpr : (e : expr# -> std.option(constval))
>          ;;
>
>         +/* Look, diffing files just works, and I don't need any fancy
> glue! */
>         +
>          const foldexpr = {e
>                 match e
>                 | &(`Eident &[.sc=`Sclassenum, .name=name, .ty=`Tyenum
> &(`Body enum)]):
>         Only in .: refs
>
>
> The following utilities and binaries are provided:
>
>         fs:     The git filesystem.
>         fetch:  The protocol bits for getting data from a git server.
>         send:   The protocol bits for sending data to a git server.
>         save:   The gnarly bits for storing the files for a commit.
>         conf:   A program to extract information from a config file.
>         clone:  Clones a repository.
>         commit: Commits a snapshot of the working directory.
>         log:    Prints the contents of a commmit log.
>         add:    Tells the repository to add a file to the next commit.
>         walk:   `du`, but for git status.
>
>
> Supported protocols: git:// and git+ssh://. If someone
> implements others, I'll gladly accept patches.
>
> TODOs:
>         git/mkpatch:    Generate a 'git am' compatible patch.
>         git/apply:      Apply a diff.
>         git/diff:       Wrapper wrapper around git/walk that
>                         diffs the changed files.
>         git/merge:      Yup, what it says on the label. Should
>                         also be a script around git/fs.
>         git/log:        Need to figure out how to make it filter
>                         by files.
>         /n/git/HEAD:    add /n/git/head subtree which points
>                         to the current commit.
>
> ...And a whole bunch more.
>
>
>

[-- Attachment #2: Type: text/html, Size: 6813 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-02  4:41 [9fans] Git/fs: Possibly Usable ori
  2019-04-02  6:10 ` Skip Tavakkolian
@ 2019-04-02 13:32 ` Dave MacFarlane
  2019-04-02 14:37 ` Kyohei Kadota
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 41+ messages in thread
From: Dave MacFarlane @ 2019-04-02 13:32 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Tue, Apr 2, 2019 at 12:49 AM <ori@eigenstate.org> wrote:
> One caveat I have: Git's index file format is a bit
> boneheaded, so I'm ignoring it. The index doesn't affect
> the wire protocol, so this isn't an interoperability issue,
> unless you share the same physical repository on both
> Plan 9 and Unix. If you do, expect them to get out of
> sync on uncommitted but added files.
>

What problems did you have with the index format? In my experience
it was relatively sane (relative to the pack protocol/format, I mean,
which is a pretty low bar to set.)

- Dave



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-02  4:41 [9fans] Git/fs: Possibly Usable ori
  2019-04-02  6:10 ` Skip Tavakkolian
  2019-04-02 13:32 ` Dave MacFarlane
@ 2019-04-02 14:37 ` Kyohei Kadota
  2019-04-03 10:38 ` Giacomo
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 41+ messages in thread
From: Kyohei Kadota @ 2019-04-02 14:37 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Cool! It's very interesting what implement Git in native Plan 9 style to me.

2019年4月2日(火) 13:48 <ori@eigenstate.org>:
>
> It was mentioned on this list a short while ago. Now, it's
> more or less at the point where it works for me. Expect
> many bugs and problems, and many more missing tools, but
> "the rest is just scripting".
>
> One caveat I have: Git's index file format is a bit
> boneheaded, so I'm ignoring it. The index doesn't affect
> the wire protocol, so this isn't an interoperability issue,
> unless you share the same physical repository on both
> Plan 9 and Unix. If you do, expect them to get out of
> sync on uncommitted but added files.
>
> In fact, the entire concept of the staging area has been
> removed, as it's both confusing and clunky. There are now
> only three states that files can be in: 'untracked',
> 'dirty', and 'committed'. Tracking is done with empty
> files under .git/index9/{removed,tracked}/path/to/file.
>
> It's implemented in Plan 9 flavor C, and provides tools
> for writing repository contents, and a file system for
> read-only access, which will mirror the current state of
> the repository.
>
> The code is here: https://bitbucket.org/oridb/git9
>
> Install with `mk install`. There's no recursive binding
> of directories, so you need to union /rc/bin/git and
> $objtype/bin/git` by hand.
>
> Documentation has not yet been written. You'll need to
> read the source.
>
> Some usage examples:
>
>         git/clone git://git.eigenstate.org/git/ori/mc.git
>         git/log
>         cd subdir/name
>         git/add foo.c
>         git/commit
>         git/push
>
> Scripts will generally mount git/fs as needed to do
> their work, but if you want to browse the repository
> manually, run it yourself. You'll get `/n/git` mounted,
> with the following contents:
>
>         /n/git/object:  The objects in the repo.
>         /n/git/branch:  The branches in the repo.
>         /n/git/ctl:             A file showing the status of the repo.
>                                         Currently, it only shows the current branch.
>
> Commits are presented as directories with the following
> contents:
>
>         author: A file containing the author name
>         hash:   A file containing the commit hash
>         parent: A file containing the commit parents, one per line.
>         msg:    A file containing the log message for that commit
>         tree:   A directory containing a view of the repository.
>
> So, for example:
>
>         % ls /n/git/branch/heads/master
>         /n/git/branch/heads/master/author
>         /n/git/branch/heads/master/hash
>         /n/git/branch/heads/master/msg
>         /n/git/branch/heads/master/parent
>         /n/git/branch/heads/master/tree
>         % cat /n/git/branch/heads/master/hash
>         7d539a7c08aba3f31b3913e0efef11c43ea9
>
>         # This is the same commit, with the same contents.
>         % ls /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/author
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/hash
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/msg
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/parent
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/tree
>
>         # what git/diff will hopefully do more concisely soon, filtering
>         # out the non-git files.
>         ape/diff -ur /n/git/branch/heads/master/tree .
>         Only in .: .git
>         Only in .: debug
>         diff -ur /n/git/branch/heads/master/tree/fold.myr ./fold.myr
>         --- /n/git/branch/heads/master/tree/fold.myr    Wed Dec 31 16:00:00 1969
>         +++ ./fold.myr  Mon Apr  1 21:39:06 2019
>         @@ -6,6 +6,8 @@
>                 const foldexpr : (e : expr# -> std.option(constval))
>          ;;
>
>         +/* Look, diffing files just works, and I don't need any fancy glue! */
>         +
>          const foldexpr = {e
>                 match e
>                 | &(`Eident &[.sc=`Sclassenum, .name=name, .ty=`Tyenum &(`Body enum)]):
>         Only in .: refs
>
>
> The following utilities and binaries are provided:
>
>         fs:     The git filesystem.
>         fetch:  The protocol bits for getting data from a git server.
>         send:   The protocol bits for sending data to a git server.
>         save:   The gnarly bits for storing the files for a commit.
>         conf:   A program to extract information from a config file.
>         clone:  Clones a repository.
>         commit: Commits a snapshot of the working directory.
>         log:    Prints the contents of a commmit log.
>         add:    Tells the repository to add a file to the next commit.
>         walk:   `du`, but for git status.
>
>
> Supported protocols: git:// and git+ssh://. If someone
> implements others, I'll gladly accept patches.
>
> TODOs:
>         git/mkpatch:    Generate a 'git am' compatible patch.
>         git/apply:      Apply a diff.
>         git/diff:       Wrapper wrapper around git/walk that
>                         diffs the changed files.
>         git/merge:      Yup, what it says on the label. Should
>                         also be a script around git/fs.
>         git/log:        Need to figure out how to make it filter
>                         by files.
>         /n/git/HEAD:    add /n/git/head subtree which points
>                         to the current commit.
>
> ...And a whole bunch more.
>
>



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-02  4:41 [9fans] Git/fs: Possibly Usable ori
                   ` (2 preceding siblings ...)
  2019-04-02 14:37 ` Kyohei Kadota
@ 2019-04-03 10:38 ` Giacomo
  2019-04-03 18:29 ` Skip Tavakkolian
  2019-07-08 19:54 ` [9fans] Git/fs: Possibly Usable Ori Bernstein
  5 siblings, 0 replies; 41+ messages in thread
From: Giacomo @ 2019-04-03 10:38 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs, ori

On April 2, 2019 4:41:09 AM UTC, ori@eigenstate.org wrote:
>It was mentioned on this list a short while ago. Now, it's
>more or less at the point where it works for me. Expect
>many bugs and problems, and many more missing tools, but
>"the rest is just scripting".
>
>One caveat I have: Git's index file format is a bit
>boneheaded, so I'm ignoring it. The index doesn't affect
>the wire protocol, so this isn't an interoperability issue,
>unless you share the same physical repository on both
>Plan 9 and Unix. If you do, expect them to get out of
>sync on uncommitted but added files.
>
>In fact, the entire concept of the staging area has been
>removed, as it's both confusing and clunky. There are now
>only three states that files can be in: 'untracked',
>'dirty', and 'committed'. Tracking is done with empty
>files under .git/index9/{removed,tracked}/path/to/file.
>
>It's implemented in Plan 9 flavor C, and provides tools
>for writing repository contents, and a file system for
>read-only access, which will mirror the current state of
>the repository.
>
>The code is here: https://bitbucket.org/oridb/git9
>
>Install with `mk install`. There's no recursive binding
>of directories, so you need to union /rc/bin/git and
>$objtype/bin/git` by hand.
>
>Documentation has not yet been written. You'll need to
>read the source.
>
>Some usage examples:
>
>	git/clone git://git.eigenstate.org/git/ori/mc.git
>	git/log
>	cd subdir/name
>	git/add foo.c
>	git/commit
>	git/push
>
>Scripts will generally mount git/fs as needed to do
>their work, but if you want to browse the repository
>manually, run it yourself. You'll get `/n/git` mounted,
>with the following contents:
>
>	/n/git/object:	The objects in the repo.
>	/n/git/branch:	The branches in the repo.
>	/n/git/ctl:		A file showing the status of the repo.
>					Currently, it only shows the current branch.
>
>Commits are presented as directories with the following
>contents:
>
>	author:	A file containing the author name
>	hash:	A file containing the commit hash
>	parent:	A file containing the commit parents, one per line.
>	msg:	A file containing the log message for that commit
>	tree:	A directory containing a view of the repository.
>
>So, for example:
>
>	% ls /n/git/branch/heads/master
>	/n/git/branch/heads/master/author
>	/n/git/branch/heads/master/hash
>	/n/git/branch/heads/master/msg
>	/n/git/branch/heads/master/parent
>	/n/git/branch/heads/master/tree
>	% cat /n/git/branch/heads/master/hash
>	7d539a7c08aba3f31b3913e0efef11c43ea9
>
>	# This is the same commit, with the same contents.
>	% ls /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef
>	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/author
>	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/hash
>	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/msg
>	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/parent
>	/n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/tree
>
>	# what git/diff will hopefully do more concisely soon, filtering
>	# out the non-git files.
>	ape/diff -ur /n/git/branch/heads/master/tree .
>	Only in .: .git
>	Only in .: debug
>	diff -ur /n/git/branch/heads/master/tree/fold.myr ./fold.myr
>	--- /n/git/branch/heads/master/tree/fold.myr	Wed Dec 31 16:00:00 1969
>	+++ ./fold.myr	Mon Apr  1 21:39:06 2019
>	@@ -6,6 +6,8 @@
>	 	const foldexpr : (e : expr# -> std.option(constval))
>	 ;;
>	 
>	+/* Look, diffing files just works, and I don't need any fancy glue!
>*/
>	+
>	 const foldexpr = {e
>	 	match e
>	 	| &(`Eident &[.sc=`Sclassenum, .name=name, .ty=`Tyenum &(`Body
>enum)]):
>	Only in .: refs
>
>	
>The following utilities and binaries are provided:
>
>	fs:	The git filesystem.
>	fetch:	The protocol bits for getting data from a git server.
>	send:	The protocol bits for sending data to a git server.
>	save:	The gnarly bits for storing the files for a commit.
>	conf:	A program to extract information from a config file.
>	clone:	Clones a repository.
>	commit:	Commits a snapshot of the working directory.
>	log:	Prints the contents of a commmit log.
>	add:	Tells the repository to add a file to the next commit.
>	walk:	`du`, but for git status.
>
>
>Supported protocols: git:// and git+ssh://. If someone
>implements others, I'll gladly accept patches.
>
>TODOs:
>	git/mkpatch:	Generate a 'git am' compatible patch.
>	git/apply:	Apply a diff.
>	git/diff:	Wrapper wrapper around git/walk that
>			diffs the changed files.
>	git/merge:	Yup, what it says on the label. Should
>			also be a script around git/fs.
>	git/log:	Need to figure out how to make it filter
>			by files.
>	/n/git/HEAD:	add /n/git/head subtree which points
>			to the current commit.
>	
>...And a whole bunch more.

Impressive!

I didn't imagine one could implement git in so few lines of C! Thanks for challenging my assumptions!

I'd like to port it to Jehanne but I cannot find a license in the repository, so in theory it's "all rights reserved" under most jurisdictions.

What's your take on this?

Did you intend to put it under public domain instead? Maybe MIT? Or LPL?


Giacomo



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-02  4:41 [9fans] Git/fs: Possibly Usable ori
                   ` (3 preceding siblings ...)
  2019-04-03 10:38 ` Giacomo
@ 2019-04-03 18:29 ` Skip Tavakkolian
  2019-04-03 20:14   ` David du Colombier
  2019-04-03 20:23   ` Ori Bernstein
  2019-07-08 19:54 ` [9fans] Git/fs: Possibly Usable Ori Bernstein
  5 siblings, 2 replies; 41+ messages in thread
From: Skip Tavakkolian @ 2019-04-03 18:29 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 5749 bytes --]

Hi,

The avl library doesn't match up to 9legacy version. Any ideas?

BTW, I think your notes on this message are a great start for a README.

Thanks,
-Skip

On Mon, Apr 1, 2019 at 9:48 PM <ori@eigenstate.org> wrote:

> It was mentioned on this list a short while ago. Now, it's
> more or less at the point where it works for me. Expect
> many bugs and problems, and many more missing tools, but
> "the rest is just scripting".
>
> One caveat I have: Git's index file format is a bit
> boneheaded, so I'm ignoring it. The index doesn't affect
> the wire protocol, so this isn't an interoperability issue,
> unless you share the same physical repository on both
> Plan 9 and Unix. If you do, expect them to get out of
> sync on uncommitted but added files.
>
> In fact, the entire concept of the staging area has been
> removed, as it's both confusing and clunky. There are now
> only three states that files can be in: 'untracked',
> 'dirty', and 'committed'. Tracking is done with empty
> files under .git/index9/{removed,tracked}/path/to/file.
>
> It's implemented in Plan 9 flavor C, and provides tools
> for writing repository contents, and a file system for
> read-only access, which will mirror the current state of
> the repository.
>
> The code is here: https://bitbucket.org/oridb/git9
>
> Install with `mk install`. There's no recursive binding
> of directories, so you need to union /rc/bin/git and
> $objtype/bin/git` by hand.
>
> Documentation has not yet been written. You'll need to
> read the source.
>
> Some usage examples:
>
>         git/clone git://git.eigenstate.org/git/ori/mc.git
>         git/log
>         cd subdir/name
>         git/add foo.c
>         git/commit
>         git/push
>
> Scripts will generally mount git/fs as needed to do
> their work, but if you want to browse the repository
> manually, run it yourself. You'll get `/n/git` mounted,
> with the following contents:
>
>         /n/git/object:  The objects in the repo.
>         /n/git/branch:  The branches in the repo.
>         /n/git/ctl:             A file showing the status of the repo.
>                                         Currently, it only shows the
> current branch.
>
> Commits are presented as directories with the following
> contents:
>
>         author: A file containing the author name
>         hash:   A file containing the commit hash
>         parent: A file containing the commit parents, one per line.
>         msg:    A file containing the log message for that commit
>         tree:   A directory containing a view of the repository.
>
> So, for example:
>
>         % ls /n/git/branch/heads/master
>         /n/git/branch/heads/master/author
>         /n/git/branch/heads/master/hash
>         /n/git/branch/heads/master/msg
>         /n/git/branch/heads/master/parent
>         /n/git/branch/heads/master/tree
>         % cat /n/git/branch/heads/master/hash
>         7d539a7c08aba3f31b3913e0efef11c43ea9
>
>         # This is the same commit, with the same contents.
>         % ls /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/author
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/hash
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/msg
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/parent
>         /n/git/object/7d539a7c08aba3f31b3913e0efef11c43ea9f9ef/tree
>
>         # what git/diff will hopefully do more concisely soon, filtering
>         # out the non-git files.
>         ape/diff -ur /n/git/branch/heads/master/tree .
>         Only in .: .git
>         Only in .: debug
>         diff -ur /n/git/branch/heads/master/tree/fold.myr ./fold.myr
>         --- /n/git/branch/heads/master/tree/fold.myr    Wed Dec 31
> 16:00:00 1969
>         +++ ./fold.myr  Mon Apr  1 21:39:06 2019
>         @@ -6,6 +6,8 @@
>                 const foldexpr : (e : expr# -> std.option(constval))
>          ;;
>
>         +/* Look, diffing files just works, and I don't need any fancy
> glue! */
>         +
>          const foldexpr = {e
>                 match e
>                 | &(`Eident &[.sc=`Sclassenum, .name=name, .ty=`Tyenum
> &(`Body enum)]):
>         Only in .: refs
>
>
> The following utilities and binaries are provided:
>
>         fs:     The git filesystem.
>         fetch:  The protocol bits for getting data from a git server.
>         send:   The protocol bits for sending data to a git server.
>         save:   The gnarly bits for storing the files for a commit.
>         conf:   A program to extract information from a config file.
>         clone:  Clones a repository.
>         commit: Commits a snapshot of the working directory.
>         log:    Prints the contents of a commmit log.
>         add:    Tells the repository to add a file to the next commit.
>         walk:   `du`, but for git status.
>
>
> Supported protocols: git:// and git+ssh://. If someone
> implements others, I'll gladly accept patches.
>
> TODOs:
>         git/mkpatch:    Generate a 'git am' compatible patch.
>         git/apply:      Apply a diff.
>         git/diff:       Wrapper wrapper around git/walk that
>                         diffs the changed files.
>         git/merge:      Yup, what it says on the label. Should
>                         also be a script around git/fs.
>         git/log:        Need to figure out how to make it filter
>                         by files.
>         /n/git/HEAD:    add /n/git/head subtree which points
>                         to the current commit.
>
> ...And a whole bunch more.
>
>
>

[-- Attachment #2: Type: text/html, Size: 7032 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-03 18:29 ` Skip Tavakkolian
@ 2019-04-03 20:14   ` David du Colombier
  2019-04-03 20:23   ` Ori Bernstein
  1 sibling, 0 replies; 41+ messages in thread
From: David du Colombier @ 2019-04-03 20:14 UTC (permalink / raw)
  To: 9fans

> The avl library doesn't match up to 9legacy version. Any ideas?
>
> BTW, I think your notes on this message are a great start for a README.

git9 seems to use 9front's libavl, which is a rewrite of Plan 9's libavl.
9legacy uses the original Plan9's libavl.

Please try this patch: http://9legacy.org/9legacy/patch/git9-avl.diff

--
David du Colombier



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-03 18:29 ` Skip Tavakkolian
  2019-04-03 20:14   ` David du Colombier
@ 2019-04-03 20:23   ` Ori Bernstein
  2019-04-04  0:00     ` Skip Tavakkolian
  2019-04-04  1:22     ` Ori Bernstein
  1 sibling, 2 replies; 41+ messages in thread
From: Ori Bernstein @ 2019-04-03 20:23 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Wed, 3 Apr 2019 11:29:30 -0700
Skip Tavakkolian <skip.tavakkolian@gmail.com> wrote:

> Hi,
>
> The avl library doesn't match up to 9legacy version. Any ideas?

Looking at a few options. I can just say "well, patch it", but it'd
be nice to see the various plan9s playing better with each other.

There are a few options. The easy ones:

	- I can bundle the 9front libavl in git9.
	- I can remove the libavl usage, possibly replacing with
	  the objset implementation I already have.

The harder ones:

	- 9front can provide compatibility with 9legacy libavl
	- 9legacy can adopt the 9front libavl API.

The first two are easy. The other two involve herding cats,
but would make it possible for more code to be shared. Given
how few people are actually writing code on plan 9, it would
be nice to share what is there.

Right now, I'm leaning towards the second option, because all
I really use libavl for is a key-value lookup.

> BTW, I think your notes on this message are a great start for a README.

Already done.

--
Ori Bernstein <ori@eigenstate.org>



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-03 20:23   ` Ori Bernstein
@ 2019-04-04  0:00     ` Skip Tavakkolian
  2019-04-04  0:34       ` Kurt H Maier
  2019-04-04  1:22     ` Ori Bernstein
  1 sibling, 1 reply; 41+ messages in thread
From: Skip Tavakkolian @ 2019-04-04  0:00 UTC (permalink / raw)
  To: Ori Bernstein; +Cc: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 1650 bytes --]

I now realize there are two different libavl's.  It's easy enough to copy
from 9front repo (hopefully there are no cascading dependencies).

9front maintainers, can anyone speak to technical reasons for creating a
new version rather than fixing existing? Also, any thoughts on changing the
name slightly so they can both be on the same system? maybe libAVL?

Thanks,
-Skip

On Wed, Apr 3, 2019 at 1:23 PM Ori Bernstein <ori@eigenstate.org> wrote:

> On Wed, 3 Apr 2019 11:29:30 -0700
> Skip Tavakkolian <skip.tavakkolian@gmail.com> wrote:
>
> > Hi,
> >
> > The avl library doesn't match up to 9legacy version. Any ideas?
>
> Looking at a few options. I can just say "well, patch it", but it'd
> be nice to see the various plan9s playing better with each other.
>
> There are a few options. The easy ones:
>
>         - I can bundle the 9front libavl in git9.
>         - I can remove the libavl usage, possibly replacing with
>           the objset implementation I already have.
>
> The harder ones:
>
>         - 9front can provide compatibility with 9legacy libavl
>         - 9legacy can adopt the 9front libavl API.
>
> The first two are easy. The other two involve herding cats,
> but would make it possible for more code to be shared. Given
> how few people are actually writing code on plan 9, it would
> be nice to share what is there.
>
> Right now, I'm leaning towards the second option, because all
> I really use libavl for is a key-value lookup.
>
> > BTW, I think your notes on this message are a great start for a README.
>
> Already done.
>
> --
> Ori Bernstein <ori@eigenstate.org>
>

[-- Attachment #2: Type: text/html, Size: 2261 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-04  0:00     ` Skip Tavakkolian
@ 2019-04-04  0:34       ` Kurt H Maier
  0 siblings, 0 replies; 41+ messages in thread
From: Kurt H Maier @ 2019-04-04  0:34 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Wed, Apr 03, 2019 at 05:00:15PM -0700, Skip Tavakkolian wrote:
> 9front maintainers, can anyone speak to technical reasons for creating a
> new version rather than fixing existing? Also, any thoughts on changing the
> name slightly so they can both be on the same system? maybe libAVL?

In 2016 spew wrote libbst, which is a binary search tree library that
supports both AVL and left-leaning red-black tree.  While he was at it
he wrote a faster and simpler avl implementation, and fixed venti and
nupas to work with it.  Since those were the only two things in the tree
that used AVL, nobody really cared if the old implementation went away.

I'm not sure what the advantage is to reintroducing it to 9front (aside
from the desire for zen-garden reliquaries).  The programs that use the
old API can be counted on one hand and fixing them is not difficult.

The question was raised, at the time, if the old one might have been
hand-tuned for some venti-related performance characteristics, but I
don't think anyone followed through on measuring the difference.  If
there are such idiosyncracies in the old code, they were not documented.

khm



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-03 20:23   ` Ori Bernstein
  2019-04-04  0:00     ` Skip Tavakkolian
@ 2019-04-04  1:22     ` Ori Bernstein
  2019-04-14  9:58       ` [9fans] UI design | enhancements Darren Wise
  1 sibling, 1 reply; 41+ messages in thread
From: Ori Bernstein @ 2019-04-04  1:22 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Wed, 3 Apr 2019 13:23:08 -0700
Ori Bernstein <ori@eigenstate.org> wrote:

> 	- I can remove the libavl usage, possibly replacing with
> 	  the objset implementation I already have.

Did this one. Turned out to save a couple of lines, in the end.

--
Ori Bernstein <ori@eigenstate.org>



^ permalink raw reply	[flat|nested] 41+ messages in thread

* [9fans] UI design | enhancements.
  2019-04-04  1:22     ` Ori Bernstein
@ 2019-04-14  9:58       ` Darren Wise
  2019-04-14 11:30         ` Ethan Gardener
                           ` (4 more replies)
  0 siblings, 5 replies; 41+ messages in thread
From: Darren Wise @ 2019-04-14  9:58 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 1605 bytes --]

Hey folks,

I rarely post in-fact maybe my second ever, I was wondering if anyone
else or a group of us could work towards some window manager UI
modifications to appear more attractive in some form from the current
interface appearing in comparison to dwm(on other Nix forks) to a more
usable friendly interface like gnome, KDE and the like.

I'm just throwing the idea about really, I've not had much time at all
with Plan9 but from just my bare basic usage I can already see a great
future for Plan9 as a whole. As I say what with commitments currently
the last few years I could be way out of my depth and experience even
mentioning this and don't mind getting flamed a little.

 From my point of view and limited knowledge, usage even though very
streamlined, simple and very fast indeed it can become daunting for new
users to adopt, it's not off-putting just a little daunting and seems
somewhat inflexible to begin with. I'm sure it would attract a much
wider community with a few simple UI modifications and I'd like to hear
what others think about the subject in general.

*Maybe I should read and research more, either way I don't mean or wish
to offend anyone mentioning the above, even this post in some form might
jump start someone else or a group to just go ahead or have had thoughts
of the same previously.. Who know eh, it's Plan9.

--
WISECORP <https://wisecorp.co.uk>
Darren Wise
eMail: darren@wisecorp.co.uk <mailto:darren@wisecorp.co.uk>
www: https://wisecorp.co.uk





---
This email has been checked for viruses by AVG.
https://www.avg.com

[-- Attachment #2: Type: text/html, Size: 5580 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-14  9:58       ` [9fans] UI design | enhancements Darren Wise
@ 2019-04-14 11:30         ` Ethan Gardener
  2019-04-14 14:19         ` hiro
                           ` (3 subsequent siblings)
  4 siblings, 0 replies; 41+ messages in thread
From: Ethan Gardener @ 2019-04-14 11:30 UTC (permalink / raw)
  To: 9fans

No offense taken, but just to note: I found Plan 9 very refreshing and very useful as it is.  It was a relief after the massive noise and clumsiness of traditional GUI, and the different but still irritating inherent clumsiness and bugginess of terminal emulation. That's not to say Plan 9 is without irritants, but it's the least irritating window system I've ever used.

You know, I'm *sure* that any goodness in today's GUIs is not the result of the paradigm but rather a good deal of care and sense, requiring considerable time and education, respectively.  The paradigm helps by standardising a few aspects of interaction, but you can't just apply it to programs and expect good results. It arguably has too few standards and too many features.  Far too many programs end up with nonsense like Celestia, where View Options is not under View but under the adjacent Render menu. I often want View Options to toggle certain markers, choosing between orienting the view and taking in the scene, but it's too out of the way; it doesn't have a shortcut because the author didn't imagine my use case.  The item browsers which I want even more often don't have keybindings either, which is astonishing! Other options are hidden under sub-menus; immensely fiddly things that they are.

The goodness in Plan 9's interfaces comes largely from a desire not to implement too much.  Instead, many of them are programmable.  Despite this, there are still major faults.  For instance, Acme's own window system is intrusive unless you follow a very specific workflow which was designed for programming only, and doesn't even seem to work for all programmers. Sam's dual clipboards are seriously intrusive for anyone who deals with a lot of snippets of text inside and outside the editor. (I've finally started using Sam now my usage is different, but for the entirety of my actual Plan 9 use it was just too painful.)


Besides, why would we want to attract people who are put off by superficial differences when the differences go all the way down? And, if I remember right, many Linux-lovers have bigger problems with those deeper issues than they do with the window system.  Those who can accept good-but-different internal design can and do accept different interface design.



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-14  9:58       ` [9fans] UI design | enhancements Darren Wise
  2019-04-14 11:30         ` Ethan Gardener
@ 2019-04-14 14:19         ` hiro
  2019-04-15  5:07         ` Lucio De Re
                           ` (2 subsequent siblings)
  4 siblings, 0 replies; 41+ messages in thread
From: hiro @ 2019-04-14 14:19 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

> wondering if anyone else or a group of us could work towards

no, you!



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-14  9:58       ` [9fans] UI design | enhancements Darren Wise
  2019-04-14 11:30         ` Ethan Gardener
  2019-04-14 14:19         ` hiro
@ 2019-04-15  5:07         ` Lucio De Re
  2019-04-15  6:12           ` Bakul Shah
  2019-04-15 15:10         ` Chris McGee
  2019-04-15 18:11         ` ab
  4 siblings, 1 reply; 41+ messages in thread
From: Lucio De Re @ 2019-04-15  5:07 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

The thing is, a UI is a combination of far too many personal tastes
and habits and a GUI multi-dimensionally more so. It's like a marble
slab that needs a Michelangelo to turn it into an image.

We've had one Michelangelo and a Rodin and only a few Greek sculptors
in the past, what, three thousand years? Do we really think that a
near infinite number of monkeys is now going to solve that problem,
specially when the marble slab is undergoing its own metamorphosis
underfoot?

Good luck!

Lucio.



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15  5:07         ` Lucio De Re
@ 2019-04-15  6:12           ` Bakul Shah
  2019-04-15  6:25             ` Devine Lu Linvega
  0 siblings, 1 reply; 41+ messages in thread
From: Bakul Shah @ 2019-04-15  6:12 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Michelangelo or Rodin didn't have to worry about function, only form.

Da Vinci on the other hand....

> On Apr 14, 2019, at 10:07 PM, Lucio De Re <lucio.dere@gmail.com> wrote:
>
> The thing is, a UI is a combination of far too many personal tastes
> and habits and a GUI multi-dimensionally more so. It's like a marble
> slab that needs a Michelangelo to turn it into an image.
>
> We've had one Michelangelo and a Rodin and only a few Greek sculptors
> in the past, what, three thousand years? Do we really think that a
> near infinite number of monkeys is now going to solve that problem,
> specially when the marble slab is undergoing its own metamorphosis
> underfoot?
>
> Good luck!
>
> Lucio.
>




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15  6:12           ` Bakul Shah
@ 2019-04-15  6:25             ` Devine Lu Linvega
  2019-04-15  6:41               ` Michael Misch
  0 siblings, 1 reply; 41+ messages in thread
From: Devine Lu Linvega @ 2019-04-15  6:25 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Michelangelo would have been “middle-click!? Hell no”.

> On Apr 15, 2019, at 3:12 PM, Bakul Shah <bakul@bitblocks.com> wrote:
> 
> Michelangelo or Rodin didn't have to worry about function, only form.
> 
> Da Vinci on the other hand....
> 
>> On Apr 14, 2019, at 10:07 PM, Lucio De Re <lucio.dere@gmail.com> wrote:
>> 
>> The thing is, a UI is a combination of far too many personal tastes
>> and habits and a GUI multi-dimensionally more so. It's like a marble
>> slab that needs a Michelangelo to turn it into an image.
>> 
>> We've had one Michelangelo and a Rodin and only a few Greek sculptors
>> in the past, what, three thousand years? Do we really think that a
>> near infinite number of monkeys is now going to solve that problem,
>> specially when the marble slab is undergoing its own metamorphosis
>> underfoot?
>> 
>> Good luck!
>> 
>> Lucio.
>> 
> 
> 




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15  6:25             ` Devine Lu Linvega
@ 2019-04-15  6:41               ` Michael Misch
  2019-04-15  7:24                 ` Bakul Shah
  2019-04-15 19:59                 ` Ethan Gardener
  0 siblings, 2 replies; 41+ messages in thread
From: Michael Misch @ 2019-04-15  6:41 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 1313 bytes --]

The whole thing is a good discussion. plan9's design works, very well; for
about 80% of would be users. For differently abled people in any capacity
it all falls apart quickly. it's such a simple system though it wouldn't
take much work to extend support wherever needed.

On Mon., Apr. 15, 2019, 12:26 a.m. Devine Lu Linvega, <aliceffekt@gmail.com>
wrote:

> Michelangelo would have been “middle-click!? Hell no”.
>
> > On Apr 15, 2019, at 3:12 PM, Bakul Shah <bakul@bitblocks.com> wrote:
> >
> > Michelangelo or Rodin didn't have to worry about function, only form.
> >
> > Da Vinci on the other hand....
> >
> >> On Apr 14, 2019, at 10:07 PM, Lucio De Re <lucio.dere@gmail.com> wrote:
> >>
> >> The thing is, a UI is a combination of far too many personal tastes
> >> and habits and a GUI multi-dimensionally more so. It's like a marble
> >> slab that needs a Michelangelo to turn it into an image.
> >>
> >> We've had one Michelangelo and a Rodin and only a few Greek sculptors
> >> in the past, what, three thousand years? Do we really think that a
> >> near infinite number of monkeys is now going to solve that problem,
> >> specially when the marble slab is undergoing its own metamorphosis
> >> underfoot?
> >>
> >> Good luck!
> >>
> >> Lucio.
> >>
> >
> >
>
>
>

[-- Attachment #2: Type: text/html, Size: 1938 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15  6:41               ` Michael Misch
@ 2019-04-15  7:24                 ` Bakul Shah
  2019-04-15 11:20                   ` hiro
  2019-04-15 14:27                   ` Kurt H Maier
  2019-04-15 19:59                 ` Ethan Gardener
  1 sibling, 2 replies; 41+ messages in thread
From: Bakul Shah @ 2019-04-15  7:24 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

What I meant to say is you can't apply aesthetics of art
to UI as the latter has a functional purpose. And we don't
have to wait for a Michelangelo to design a perfect UI!
In other words, I don't think a UI discussion would be
fruitless. Not to replicate KDE/Gnome etc. but to find
other alternatives that feel more in tune with plan9.

> On Apr 14, 2019, at 11:41 PM, Michael Misch <michaelmisch1985@gmail.com> wrote:
> 
> The whole thing is a good discussion. plan9's design works, very well; for about 80% of would be users. For differently abled people in any capacity it all falls apart quickly. it's such a simple system though it wouldn't take much work to extend support wherever needed.
> 
> On Mon., Apr. 15, 2019, 12:26 a.m. Devine Lu Linvega, <aliceffekt@gmail.com> wrote:
> Michelangelo would have been “middle-click!? Hell no”.
> 
> > On Apr 15, 2019, at 3:12 PM, Bakul Shah <bakul@bitblocks.com> wrote:
> > 
> > Michelangelo or Rodin didn't have to worry about function, only form.
> > 
> > Da Vinci on the other hand....
> > 
> >> On Apr 14, 2019, at 10:07 PM, Lucio De Re <lucio.dere@gmail.com> wrote:
> >> 
> >> The thing is, a UI is a combination of far too many personal tastes
> >> and habits and a GUI multi-dimensionally more so. It's like a marble
> >> slab that needs a Michelangelo to turn it into an image.
> >> 
> >> We've had one Michelangelo and a Rodin and only a few Greek sculptors
> >> in the past, what, three thousand years? Do we really think that a
> >> near infinite number of monkeys is now going to solve that problem,
> >> specially when the marble slab is undergoing its own metamorphosis
> >> underfoot?
> >> 
> >> Good luck!
> >> 
> >> Lucio.
> >> 
> > 
> > 
> 
> 




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15  7:24                 ` Bakul Shah
@ 2019-04-15 11:20                   ` hiro
  2019-04-15 14:27                   ` Kurt H Maier
  1 sibling, 0 replies; 41+ messages in thread
From: hiro @ 2019-04-15 11:20 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

the only art in window management is how they manage to sustain so
much inconsistency



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15  7:24                 ` Bakul Shah
  2019-04-15 11:20                   ` hiro
@ 2019-04-15 14:27                   ` Kurt H Maier
  1 sibling, 0 replies; 41+ messages in thread
From: Kurt H Maier @ 2019-04-15 14:27 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Mon, Apr 15, 2019 at 12:24:44AM -0700, Bakul Shah wrote:
> And we don't have to wait for a Michelangelo to design a perfect UI!

Of course not.  We already have Mike Okuda.

khm



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-14  9:58       ` [9fans] UI design | enhancements Darren Wise
                           ` (2 preceding siblings ...)
  2019-04-15  5:07         ` Lucio De Re
@ 2019-04-15 15:10         ` Chris McGee
  2019-04-15 15:44           ` Darren Wise
  2019-04-15 18:11         ` ab
  4 siblings, 1 reply; 41+ messages in thread
From: Chris McGee @ 2019-04-15 15:10 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 3174 bytes --]

Hi Darren,

Your goal seem to be to make the system less daunting for new users. I
think there are a number of ways to accomplish this.

Dressing up the UI and/or making it more like popular used interfaces might
be one way to make new users feel more comfortable. One concern with doing
this is that it allows them to come with other assumptions that may
confusions about how the underlying system works. This effort could also
increase complexity and size of the core system. Simplicity, size and
consistency are aspects of Plan 9 that I really value. Otherwise, I might
as well just use BSD or even Linux.

In my experience one of the biggest hurdles to getting curious new users to
give Plan 9 a try is just getting access to a namespace so that they can
give it a try and learn. I think that the quickest path at the moment is to
install it onto a VM like qemu (or yuck, virtualbox) since you can bypass
the whole hardware selection and compatibility pain points. I put some
YouTube videos up showing people step-by-step with a decent number of views
and comments, so I think this helped some people just to get their hands on
it. There are more ideas that I'm playing with to help people get started,
such as building a website where you can get a drawterm in your web browser
and give it a try.

Once a new user has access to the system there could be some exercises and
tutorials to engage them. There could be a variety of these depending on
the background, whether programmer, Linux user, librarian, whatever. The
key in my opinion is to not hide the core system with layer after layer of
"pretty" GUI's, but instead reveal it gradually with decent explanations. I
think that the core of Plan 9 is much easier to explain than other systems
because of its smaller size, relatively consistent interfaces and
versatility. Once you grasp one area it is much easier to begin grasping
more of it using the skills you already have. I can't say the same thing
about Linux or any other system that I have used. Like any tool, there is
some required learning and practice. Good tools amplify your learning as
you practice with it.

Once someone understands how Plan 9 works then I think they will have many
of the tools that they need to build their own networks with it. I
recommend digging into man pages and /sys/doc at this stage. There's a
wealth of well written guides in there, although some could be made a bit
more current. A guide on how to build a home network using raspberry pi
terminals and a CPU/file server from easy to acquire, but well designed,
modern hardware would be a welcome addition.

The system is far from perfect as others will tell you but there's advances
and fixes happening steadily. I'm just not sure if focusing on the initial
user experience through UI look and feel is adding much. I think a more
general discussion of GUI capabilities, such as video and 3D graphics
capabilities, would be great, but more in the context of what kinds of
tasks people want to accomplish. The trick is to fit those improvements
into the rest of the system and not just jamming them in.

Cheers,
Chris

[-- Attachment #2: Type: text/html, Size: 3399 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15 15:10         ` Chris McGee
@ 2019-04-15 15:44           ` Darren Wise
  0 siblings, 0 replies; 41+ messages in thread
From: Darren Wise @ 2019-04-15 15:44 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 4457 bytes --]

Heya folks,

Thanks very much for the replies so far, I'm still reading them as they
come in and when the flutter has calmed down a little I'll then start to
reply. I'm just letting you know I am listening and reading and not
being ignorant firing off some random eMail and then doing-one elsewhere :D

Some very high quality responses so far, good giggles as well! Awesome
insights considering my level of Plan9 usage and knowledge at this stage.

Awesome stuff!

On 15/04/2019 16:10, Chris McGee wrote:
>
> Hi Darren,
>
> Your goal seem to be to make the system less daunting for new users. I
> think there are a number of ways to accomplish this.
>
> Dressing up the UI and/or making it more like popular used interfaces
> might be one way to make new users feel more comfortable. One concern
> with doing this is that it allows them to come with other assumptions
> that may confusions about how the underlying system works. This effort
> could also increase complexity and size of the core system.
> Simplicity, size and consistency are aspects of Plan 9 that I really
> value. Otherwise, I might as well just use BSD or even Linux.
>
> In my experience one of the biggest hurdles to getting curious new
> users to give Plan 9 a try is just getting access to a namespace so
> that they can give it a try and learn. I think that the quickest path
> at the moment is to install it onto a VM like qemu (or yuck,
> virtualbox) since you can bypass the whole hardware selection and
> compatibility pain points. I put some YouTube videos up showing people
> step-by-step with a decent number of views and comments, so I think
> this helped some people just to get their hands on it. There are more
> ideas that I'm playing with to help people get started, such as
> building a website where you can get a drawterm in your web browser
> and give it a try.
>
> Once a new user has access to the system there could be some exercises
> and tutorials to engage them. There could be a variety of these
> depending on the background, whether programmer, Linux user,
> librarian, whatever. The key in my opinion is to not hide the core
> system with layer after layer of "pretty" GUI's, but instead reveal it
> gradually with decent explanations. I think that the core of Plan 9 is
> much easier to explain than other systems because of its smaller size,
> relatively consistent interfaces and versatility. Once you grasp one
> area it is much easier to begin grasping more of it using the skills
> you already have. I can't say the same thing about Linux or any other
> system that I have used. Like any tool, there is some required
> learning and practice. Good tools amplify your learning as you
> practice with it.
>
> Once someone understands how Plan 9 works then I think they will have
> many of the tools that they need to build their own networks with it.
> I recommend digging into man pages and /sys/doc at this stage. There's
> a wealth of well written guides in there, although some could be made
> a bit more current. A guide on how to build a home network using
> raspberry pi terminals and a CPU/file server from easy to acquire, but
> well designed, modern hardware would be a welcome addition.
>
> The system is far from perfect as others will tell you but there's
> advances and fixes happening steadily. I'm just not sure if focusing
> on the initial user experience through UI look and feel is adding
> much. I think a more general discussion of GUI capabilities, such as
> video and 3D graphics capabilities, would be great, but more in the
> context of what kinds of tasks people want to accomplish. The trick is
> to fit those improvements into the rest of the system and not just
> jamming them in.
>
> Cheers,
> Chris
--
WISECORP <https://wisecorp.co.uk>
Darren Wise
eMail: darren@wisecorp.co.uk <mailto:darren@wisecorp.co.uk>
www: https://wisecorp.co.uk

The company [ WISECORP ] accepts no liability for the content of this
email, or for the consequences of any actions taken on the basis of the
information provided, unless that information is subsequently confirmed
in handwriting. If you are not the intended recipient you are notified
that disclosing, copying, distributing or taking any action in reliance
on the contents of this information is strictly prohibited.




---
This email has been checked for viruses by AVG.
https://www.avg.com

[-- Attachment #2: Type: text/html, Size: 9693 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-14  9:58       ` [9fans] UI design | enhancements Darren Wise
                           ` (3 preceding siblings ...)
  2019-04-15 15:10         ` Chris McGee
@ 2019-04-15 18:11         ` ab
  4 siblings, 0 replies; 41+ messages in thread
From: ab @ 2019-04-15 18:11 UTC (permalink / raw)
  To: 9fans

> Darren Wise wrote:
> snip

With all due respect (admittedly, I've thought about this before) but
Plan 9 may be better used as a model of how thoughtful engineering can
produce a great system.

Perhaps better inspiration could be achieved by setting up a public Plan
9 server (or private, it's your server) and letting people interact with
it on their own.

If you want to start smaller, you can always share some code that would
implement some graphical feature you find Plan 9 lacking in. This list
does have a disappointing lack of semicolons.

Good luck.



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15  6:41               ` Michael Misch
  2019-04-15  7:24                 ` Bakul Shah
@ 2019-04-15 19:59                 ` Ethan Gardener
  2019-04-15 20:04                   ` Michael Misch
  1 sibling, 1 reply; 41+ messages in thread
From: Ethan Gardener @ 2019-04-15 19:59 UTC (permalink / raw)
  To: 9fans

On Mon, Apr 15, 2019, at 7:43 AM, Michael Misch wrote:
> The whole thing is a good discussion. plan9's design works, very well; for about 80% of would be users. For differently abled people in any capacity it all falls apart quickly.

Begging your pardon, but for *this* differently abled person it's a huge improvement on WinGnoKDE.  Anyone who wants to make *text selection* complicated ought not to be allowed near a computer, to say nothing of the numerous other problems which get in the way of just getting accustomed to and fluently using traditional GUI.



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] UI design | enhancements.
  2019-04-15 19:59                 ` Ethan Gardener
@ 2019-04-15 20:04                   ` Michael Misch
  0 siblings, 0 replies; 41+ messages in thread
From: Michael Misch @ 2019-04-15 20:04 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 924 bytes --]

That's good to note. (I don't consider "WinGnoKDE" a good counterpoint
anyways) but for example I have reasonably debilitating carpal tunnel
issues, and the heavy mouse use is a major bane to my general enjoyment in
Rio when it happens.

On Mon., Apr. 15, 2019, 2:00 p.m. Ethan Gardener, <eekee57@fastmail.fm>
wrote:

> On Mon, Apr 15, 2019, at 7:43 AM, Michael Misch wrote:
> > The whole thing is a good discussion. plan9's design works, very well;
> for about 80% of would be users. For differently abled people in any
> capacity it all falls apart quickly.
>
> Begging your pardon, but for *this* differently abled person it's a huge
> improvement on WinGnoKDE.  Anyone who wants to make *text selection*
> complicated ought not to be allowed near a computer, to say nothing of the
> numerous other problems which get in the way of just getting accustomed to
> and fluently using traditional GUI.
>
>

[-- Attachment #2: Type: text/html, Size: 1214 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-02  4:41 [9fans] Git/fs: Possibly Usable ori
                   ` (4 preceding siblings ...)
  2019-04-03 18:29 ` Skip Tavakkolian
@ 2019-07-08 19:54 ` Ori Bernstein
  2019-07-12 18:27   ` Patrick Marchand
  5 siblings, 1 reply; 41+ messages in thread
From: Ori Bernstein @ 2019-07-08 19:54 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Mon, 1 Apr 2019 21:41:09 -0700
ori@eigenstate.org wrote:

> It was mentioned on this list a short while ago. Now, it's
> more or less at the point where it works for me. Expect
> many bugs and problems, and many more missing tools, but
> "the rest is just scripting".

An update: I'm now using this git implementation on a daily
basis. It's hosting its own development now, and tons of
bugs have been fixed.

All commits in the git mirror here were made with git9 on 9front:
https://github.com/oridb/git9

I'm also keeping the old mirror in hg alive:
https://bitbucket.org/oridb/git9

There's one incompatibility that I'm aware of with 9legacy, where
I use `$split{...} syntax in rc to make files with spaces work
cleanly. I don't think 9legacy imported that patch from 9atom.

The remaining missing bits, in my mind:

	- UI polish; There's some thought needed about how
	  the exposed functionality should work.

	- Patch import/export: probably git/diff -[pa] for
	  generating or importing `git format-patch` compatible
	  style diff.

	- Rebase-like functionality would be nice.

	- (Low priority, probably won't do it myself, but I'd
	  take a patch): HTTP protocol. Most places (including
	  github) serve up git protocol URLS, in the form

		git://github.com/user/repo

--
Ori Bernstein <ori@eigenstate.org>



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-07-08 19:54 ` [9fans] Git/fs: Possibly Usable Ori Bernstein
@ 2019-07-12 18:27   ` Patrick Marchand
  2019-07-12 20:21     ` Steve Simon
  0 siblings, 1 reply; 41+ messages in thread
From: Patrick Marchand @ 2019-07-12 18:27 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Hi Ori,

On 07/08, Ori Bernstein wrote:
> On Mon, 1 Apr 2019 21:41:09 -0700
> ori@eigenstate.org wrote:
>
> > It was mentioned on this list a short while ago. Now, it's
> > more or less at the point where it works for me. Expect
> > many bugs and problems, and many more missing tools, but
> > "the rest is just scripting".
>
> An update: I'm now using this git implementation on a daily
> basis. It's hosting its own development now, and tons of
> bugs have been fixed.
>

Good job ! Cant wait to get the chance to play around with it. I'll
be installing a plan9 server at my home next month so I'll be able
to test in detail then.

Have a good day



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-07-12 18:27   ` Patrick Marchand
@ 2019-07-12 20:21     ` Steve Simon
  2019-07-21 21:06       ` clueelf
  0 siblings, 1 reply; 41+ messages in thread
From: Steve Simon @ 2019-07-12 20:21 UTC (permalink / raw)
  To: 9fans

I agree 100%, well done Ori, I will be trying this soon,
I am in the process of changing jobs at the moment so
I am a bit distracted but the new job will include git so I
Will be needing it.

-Steve


> On 12 Jul 2019, at 19:27, Patrick Marchand <mail@patrickmarchand.com> wrote:
> 
> Hi Ori,
> 
> On 07/08, Ori Bernstein wrote:
>> On Mon, 1 Apr 2019 21:41:09 -0700
>> ori@eigenstate.org wrote:
>> 
>>> It was mentioned on this list a short while ago. Now, it's
>>> more or less at the point where it works for me. Expect
>>> many bugs and problems, and many more missing tools, but
>>> "the rest is just scripting".
>> 
>> An update: I'm now using this git implementation on a daily
>> basis. It's hosting its own development now, and tons of
>> bugs have been fixed.
>> 
> 
> Good job ! Cant wait to get the chance to play around with it. I'll
> be installing a plan9 server at my home next month so I'll be able
> to test in detail then.
> 
> Have a good day




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-07-12 20:21     ` Steve Simon
@ 2019-07-21 21:06       ` clueelf
  2019-07-25 21:59         ` Ori Bernstein
  0 siblings, 1 reply; 41+ messages in thread
From: clueelf @ 2019-07-21 21:06 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Thanks Ori!

I pulled it down today and started using it against a few GitHub repos I have.  For those who are thinking about using it, it only uses 'git' and 'git+ssh' style URLs, but they work so far without incident.

git/clone git+ssh://git@github.com:tmendoza/9front-user

Once I got keys generated and pushed to github.com, worked just fine.  My updates show up as expected.

Great job!

Tony

On 7/12/2019 at 3:22 PM, "Steve Simon" <steve@quintile.net> wrote:
>
>I agree 100%, well done Ori, I will be trying this soon,
>I am in the process of changing jobs at the moment so
>I am a bit distracted but the new job will include git so I
>Will be needing it.
>
>-Steve
>
>
>> On 12 Jul 2019, at 19:27, Patrick Marchand
><mail@patrickmarchand.com> wrote:
>>
>> Hi Ori,
>>
>> On 07/08, Ori Bernstein wrote:
>>> On Mon, 1 Apr 2019 21:41:09 -0700
>>> ori@eigenstate.org wrote:
>>>
>>>> It was mentioned on this list a short while ago. Now, it's
>>>> more or less at the point where it works for me. Expect
>>>> many bugs and problems, and many more missing tools, but
>>>> "the rest is just scripting".
>>>
>>> An update: I'm now using this git implementation on a daily
>>> basis. It's hosting its own development now, and tons of
>>> bugs have been fixed.
>>>
>>
>> Good job ! Cant wait to get the chance to play around with it.
>I'll
>> be installing a plan9 server at my home next month so I'll be
>able
>> to test in detail then.
>>
>> Have a good day




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-07-21 21:06       ` clueelf
@ 2019-07-25 21:59         ` Ori Bernstein
  2019-08-05 18:43           ` Skip Tavakkolian
  0 siblings, 1 reply; 41+ messages in thread
From: Ori Bernstein @ 2019-07-25 21:59 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Sun, 21 Jul 2019 16:06:54 -0500
clueelf@tonymendoza.us wrote:

> Thanks Ori!
>
> I pulled it down today and started using it against a few GitHub repos I have.  For those who are thinking about using it, it only uses 'git' and 'git+ssh' style URLs, but they work so far without incident.
>
> git/clone git+ssh://git@github.com:tmendoza/9front-user
>
> Once I got keys generated and pushed to github.com, worked just fine.  My updates show up as expected.

Good to hear!

--
Ori Bernstein <ori@eigenstate.org>



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-07-25 21:59         ` Ori Bernstein
@ 2019-08-05 18:43           ` Skip Tavakkolian
  2019-08-05 21:17             ` erik quanstrom
  2019-08-09  5:56             ` Ori Bernstein
  0 siblings, 2 replies; 41+ messages in thread
From: Skip Tavakkolian @ 2019-08-05 18:43 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 986 bytes --]

is this an equivalent fix for 9legacy env?  (i'm guessing the answer is no)

% diff clone /bin/git/clone
75c75
< for(f in `$nl{walk -f $tree | sed 's@^'$tree'/*@@'}){
---
> for(f in `{ifs=$nl walk -f $tree | sed 's@^'$tree'/*@@'}){

also, the earliest reference to `$split{...}` notation i found is in 9atom;
can anyone confirm?

On Thu, Jul 25, 2019 at 3:01 PM Ori Bernstein <ori@eigenstate.org> wrote:

> On Sun, 21 Jul 2019 16:06:54 -0500
> clueelf@tonymendoza.us wrote:
>
> > Thanks Ori!
> >
> > I pulled it down today and started using it against a few GitHub repos I
> have.  For those who are thinking about using it, it only uses 'git' and
> 'git+ssh' style URLs, but they work so far without incident.
> >
> > git/clone git+ssh://git@github.com:tmendoza/9front-user
> >
> > Once I got keys generated and pushed to github.com, worked just fine.
> My updates show up as expected.
>
> Good to hear!
>
> --
> Ori Bernstein <ori@eigenstate.org>
>
>

[-- Attachment #2: Type: text/html, Size: 1620 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-08-05 18:43           ` Skip Tavakkolian
@ 2019-08-05 21:17             ` erik quanstrom
  2019-08-05 21:22               ` erik quanstrom
  2019-08-09  5:56             ` Ori Bernstein
  1 sibling, 1 reply; 41+ messages in thread
From: erik quanstrom @ 2019-08-05 21:17 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/html, Size: 2126 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-08-05 21:17             ` erik quanstrom
@ 2019-08-05 21:22               ` erik quanstrom
  0 siblings, 0 replies; 41+ messages in thread
From: erik quanstrom @ 2019-08-05 21:22 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/html, Size: 555 bytes --]

^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-08-05 18:43           ` Skip Tavakkolian
  2019-08-05 21:17             ` erik quanstrom
@ 2019-08-09  5:56             ` Ori Bernstein
  1 sibling, 0 replies; 41+ messages in thread
From: Ori Bernstein @ 2019-08-09  5:56 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Mon, 5 Aug 2019 11:43:33 -0700, Skip Tavakkolian <skip.tavakkolian@gmail.com> wrote:

> is this an equivalent fix for 9legacy env?  (i'm guessing the answer is no)
>
> % diff clone /bin/git/clone
> 75c75
> < for(f in `$nl{walk -f $tree | sed 's@^'$tree'/*@@'}){
> ---
> > for(f in `{ifs=$nl walk -f $tree | sed 's@^'$tree'/*@@'}){
>

You can also set ifs outside of the `{...}.

However, I think it's worth importing the 9atom change into 9legacy
rc. It's an elegant solution.

--
    Ori Bernstein



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-03 16:59 ` Giacomo
  2019-04-03 18:41   ` Cull
@ 2019-04-03 18:44   ` Ori Bernstein
  1 sibling, 0 replies; 41+ messages in thread
From: Ori Bernstein @ 2019-04-03 18:44 UTC (permalink / raw)
  To: Giacomo; +Cc: 9fans

On Wed, 03 Apr 2019 16:59:22 +0000
Giacomo <giacomo@tesio.it> wrote:

> On April 3, 2019 4:02:49 PM UTC, ori@eigenstate.org wrote:
> >Don't particularly care. At some point I'd like to commit it to 9front,
> >but I can relicense it then.
> >
> >Do you have a preference?
>
> Probably MIT or a BSD.
>
> But I can also live with any copyleft of your choice.
>
>
> Giacomo
>

MIT it is, since it matches the 9front license.

--
Ori Bernstein <ori@eigenstate.org>



^ permalink raw reply	[flat|nested] 41+ messages in thread

* [9fans] Git/fs: Possibly Usable
  2019-04-03 16:59 ` Giacomo
@ 2019-04-03 18:41   ` Cull
  2019-04-03 18:44   ` Ori Bernstein
  1 sibling, 0 replies; 41+ messages in thread
From: Cull @ 2019-04-03 18:41 UTC (permalink / raw)



>Sent: Wednesday, April 3, 2019 10:08 AM
>>On April 3, 2019 4:02:49 PM UTC, ori at eigenstate.org wrote:
>>Don't particularly care. At some point I'd like to commit it to 9front,
>>but I can relicense it then.
>>
>>Do you have a preference?
>?
>Probably MIT or a BSD.
>
>But I can also live with any copyleft of your choice.

Wouldn't BSD (2 clause) be the easiest to reliscence down the road?




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
  2019-04-03 16:02 ori
@ 2019-04-03 16:59 ` Giacomo
  2019-04-03 18:41   ` Cull
  2019-04-03 18:44   ` Ori Bernstein
  0 siblings, 2 replies; 41+ messages in thread
From: Giacomo @ 2019-04-03 16:59 UTC (permalink / raw)
  To: ori, 9fans

On April 3, 2019 4:02:49 PM UTC, ori@eigenstate.org wrote:
>Don't particularly care. At some point I'd like to commit it to 9front,
>but I can relicense it then.
>
>Do you have a preference?

Probably MIT or a BSD.

But I can also live with any copyleft of your choice.


Giacomo



^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
@ 2019-04-03 16:02 ori
  2019-04-03 16:59 ` Giacomo
  0 siblings, 1 reply; 41+ messages in thread
From: ori @ 2019-04-03 16:02 UTC (permalink / raw)
  To: giacomo, 9fans, ori


> Impressive!
>
> I didn't imagine one could implement git in so few lines of C! Thanks for challenging my assumptions!
>
> I'd like to port it to Jehanne but I cannot find a license in the repository, so in theory it's "all rights reserved" under most jurisdictions.
>
> What's your take on this?
>
> Did you intend to put it under public domain instead? Maybe MIT? Or LPL?
>
>
> Giacomo

Don't particularly care. At some point I'd like to commit it to 9front, but I can relicense it then.

Do you have a preference?




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
@ 2019-04-02 15:35 ori
  0 siblings, 0 replies; 41+ messages in thread
From: ori @ 2019-04-02 15:35 UTC (permalink / raw)
  To: driusan, 9fans

> On Tue, Apr 2, 2019 at 12:49 AM <ori@eigenstate.org> wrote:
>> One caveat I have: Git's index file format is a bit
>> boneheaded, so I'm ignoring it. The index doesn't affect
>> the wire protocol, so this isn't an interoperability issue,
>> unless you share the same physical repository on both
>> Plan 9 and Unix. If you do, expect them to get out of
>> sync on uncommitted but added files.
>>
>
> What problems did you have with the index format? In my experience
> it was relatively sane (relative to the pack protocol/format, I mean,
> which is a pretty low bar to set.)

It's easy to implement, but the tool is more useful without it.
The concept of staged files that it implies makes git clunkier
to use.

The index would also require a special tool to manipulate it,
which makes manipulating it from a script much clunkier.




^ permalink raw reply	[flat|nested] 41+ messages in thread

* Re: [9fans] Git/fs: Possibly Usable
@ 2019-04-02  5:36 cinap_lenrek
  0 siblings, 0 replies; 41+ messages in thread
From: cinap_lenrek @ 2019-04-02  5:36 UTC (permalink / raw)
  To: 9fans

excellent work! thank you!

--
cinap



^ permalink raw reply	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2019-08-09  5:56 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-02  4:41 [9fans] Git/fs: Possibly Usable ori
2019-04-02  6:10 ` Skip Tavakkolian
2019-04-02 13:32 ` Dave MacFarlane
2019-04-02 14:37 ` Kyohei Kadota
2019-04-03 10:38 ` Giacomo
2019-04-03 18:29 ` Skip Tavakkolian
2019-04-03 20:14   ` David du Colombier
2019-04-03 20:23   ` Ori Bernstein
2019-04-04  0:00     ` Skip Tavakkolian
2019-04-04  0:34       ` Kurt H Maier
2019-04-04  1:22     ` Ori Bernstein
2019-04-14  9:58       ` [9fans] UI design | enhancements Darren Wise
2019-04-14 11:30         ` Ethan Gardener
2019-04-14 14:19         ` hiro
2019-04-15  5:07         ` Lucio De Re
2019-04-15  6:12           ` Bakul Shah
2019-04-15  6:25             ` Devine Lu Linvega
2019-04-15  6:41               ` Michael Misch
2019-04-15  7:24                 ` Bakul Shah
2019-04-15 11:20                   ` hiro
2019-04-15 14:27                   ` Kurt H Maier
2019-04-15 19:59                 ` Ethan Gardener
2019-04-15 20:04                   ` Michael Misch
2019-04-15 15:10         ` Chris McGee
2019-04-15 15:44           ` Darren Wise
2019-04-15 18:11         ` ab
2019-07-08 19:54 ` [9fans] Git/fs: Possibly Usable Ori Bernstein
2019-07-12 18:27   ` Patrick Marchand
2019-07-12 20:21     ` Steve Simon
2019-07-21 21:06       ` clueelf
2019-07-25 21:59         ` Ori Bernstein
2019-08-05 18:43           ` Skip Tavakkolian
2019-08-05 21:17             ` erik quanstrom
2019-08-05 21:22               ` erik quanstrom
2019-08-09  5:56             ` Ori Bernstein
2019-04-02  5:36 cinap_lenrek
2019-04-02 15:35 ori
2019-04-03 16:02 ori
2019-04-03 16:59 ` Giacomo
2019-04-03 18:41   ` Cull
2019-04-03 18:44   ` Ori Bernstein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).