The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
* [TUHS] the origin of dotfiles
@ 2012-08-17  5:13 Kuroishi Mitsuo
  2012-08-18 17:51 ` Jason Hellenthal
  0 siblings, 1 reply; 7+ messages in thread
From: Kuroishi Mitsuo @ 2012-08-17  5:13 UTC (permalink / raw)



Hi. Just FYI.

It's an interesting article about the origin of dotfiles.

https://plus.google.com/101960720994009339267/posts/R58WgWwN9jp

--
Kuroishi Mitsuo



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

* [TUHS] the origin of dotfiles
  2012-08-17  5:13 [TUHS] the origin of dotfiles Kuroishi Mitsuo
@ 2012-08-18 17:51 ` Jason Hellenthal
  2012-08-18 18:49   ` Ori Idan
  2012-08-18 22:46   ` Dario Niedermann
  0 siblings, 2 replies; 7+ messages in thread
From: Jason Hellenthal @ 2012-08-18 17:51 UTC (permalink / raw)


On Fri, Aug 17, 2012 at 02:13:00PM +0900, Kuroishi Mitsuo wrote:
> 
> Hi. Just FYI.
> 
> It's an interesting article about the origin of dotfiles.
> 
> https://plus.google.com/101960720994009339267/posts/R58WgWwN9jp
> 

With all due respect to Rob Pike, I really do not find it all that
interesting. .files being no different than any other file other than
not being displayed in a listing ? it seriously makes utterly no
difference other than the human PoV. Just because "We did it in Plan 9"
does mean squat other than "We did it differently".

$ ls -A |grep ^\\. |wc -l
     108

     All of which I know how they got there and why they are there.


You have to keep in mind that the old UNIX systems did not have all the
crap that has evolved today for "Desktop" use and programmers in any
given situation will leverage all aspects available in any environment
to achieve a goal, just as Plan 9 does.


-- 

 - (2^(N-1)) JJH48-ARIN




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

* [TUHS] the origin of dotfiles
  2012-08-18 17:51 ` Jason Hellenthal
@ 2012-08-18 18:49   ` Ori Idan
  2012-08-18 19:07     ` sl
  2012-08-18 19:16     ` Lyndon Nerenberg
  2012-08-18 22:46   ` Dario Niedermann
  1 sibling, 2 replies; 7+ messages in thread
From: Ori Idan @ 2012-08-18 18:49 UTC (permalink / raw)


On Sat, Aug 18, 2012 at 8:51 PM, Jason Hellenthal <jhellenthal at dataix.net>wrote:

> On Fri, Aug 17, 2012 at 02:13:00PM +0900, Kuroishi Mitsuo wrote:
> >
> > Hi. Just FYI.
> >
> > It's an interesting article about the origin of dotfiles.
> >
> > https://plus.google.com/101960720994009339267/posts/R58WgWwN9jp
> >
>
> With all due respect to Rob Pike, I really do not find it all that
> interesting. .files being no different than any other file other than
> not being displayed in a listing ? it seriously makes utterly no
> difference other than the human PoV. Just because "We did it in Plan 9"
> does mean squat other than "We did it differently".
>
> $ ls -A |grep ^\\. |wc -l
>      108
>
>      All of which I know how they got there and why they are there.
>
>
> You have to keep in mind that the old UNIX systems did not have all the
> crap that has evolved today for "Desktop" use and programmers in any
> given situation will leverage all aspects available in any environment
> to achieve a goal, just as Plan 9 does.
>
>
> Just out of curiosity, how does plan 9 handles it?
Are there hidden files there? I am sure there are but how are they handled?

-- 
Ori Idan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20120818/4b83d9e5/attachment.html>


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

* [TUHS] the origin of dotfiles
  2012-08-18 18:49   ` Ori Idan
@ 2012-08-18 19:07     ` sl
  2012-08-18 19:16     ` Lyndon Nerenberg
  1 sibling, 0 replies; 7+ messages in thread
From: sl @ 2012-08-18 19:07 UTC (permalink / raw)


> Just out of curiosity, how does plan 9 handles it?
> Are there hidden files there? I am sure there are but how are they handled?

The vast majority of Plan 9 programs don't use config files. For those that
do, user configuration is typically stored in $home/lib/.

-sl



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

* [TUHS] the origin of dotfiles
  2012-08-18 18:49   ` Ori Idan
  2012-08-18 19:07     ` sl
@ 2012-08-18 19:16     ` Lyndon Nerenberg
  1 sibling, 0 replies; 7+ messages in thread
From: Lyndon Nerenberg @ 2012-08-18 19:16 UTC (permalink / raw)


> Just out of curiosity, how does plan 9 handles it?
> Are there hidden files there? I am sure there are but how are they handled?

ls(1) in Plan9 reports everything. There are no 'hidden' files according to the traditional UNIX meaning. The convention for config files is to place them under $home/lib. But there are so few of these it's not really an issue.  Most users get away with lib/profile and lib/plumbing and don't require anything else.

--lyndon

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 841 bytes
Desc: Message signed with OpenPGP using GPGMail
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20120818/17012d29/attachment.sig>


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

* [TUHS] the origin of dotfiles
  2012-08-18 17:51 ` Jason Hellenthal
  2012-08-18 18:49   ` Ori Idan
@ 2012-08-18 22:46   ` Dario Niedermann
  2012-08-18 23:08     ` Tim Newsham
  1 sibling, 1 reply; 7+ messages in thread
From: Dario Niedermann @ 2012-08-18 22:46 UTC (permalink / raw)


Jason Hellenthal <jhellenthal at dataix.net> wrote:

> With all due respect to Rob Pike, I really do not find it all that
> interesting. .files being no different than any other file other than
> not being displayed in a listing ? it seriously makes utterly no
> difference other than the human PoV. Just because "We did it in Plan
> 9" does mean squat other than "We did it differently".


IMO the interesting - and funny - part is that dotfiles were born as an
unintended side effect of a flagrant kludge.

DN



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

* [TUHS] the origin of dotfiles
  2012-08-18 22:46   ` Dario Niedermann
@ 2012-08-18 23:08     ` Tim Newsham
  0 siblings, 0 replies; 7+ messages in thread
From: Tim Newsham @ 2012-08-18 23:08 UTC (permalink / raw)


good bugs dont die.. they turn into features.

On Sat, Aug 18, 2012 at 12:46 PM, Dario Niedermann <dnied at tiscali.it> wrote:
> Jason Hellenthal <jhellenthal at dataix.net> wrote:
>
>> With all due respect to Rob Pike, I really do not find it all that
>> interesting. .files being no different than any other file other than
>> not being displayed in a listing ? it seriously makes utterly no
>> difference other than the human PoV. Just because "We did it in Plan
>> 9" does mean squat other than "We did it differently".
>
>
> IMO the interesting - and funny - part is that dotfiles were born as an
> unintended side effect of a flagrant kludge.
>
> DN
> _______________________________________________
> TUHS mailing list
> TUHS at minnie.tuhs.org
> https://minnie.tuhs.org/mailman/listinfo/tuhs



-- 
Tim Newsham | www.thenewsh.com/~newsham | thenewsh.blogspot.com



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

end of thread, other threads:[~2012-08-18 23:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-17  5:13 [TUHS] the origin of dotfiles Kuroishi Mitsuo
2012-08-18 17:51 ` Jason Hellenthal
2012-08-18 18:49   ` Ori Idan
2012-08-18 19:07     ` sl
2012-08-18 19:16     ` Lyndon Nerenberg
2012-08-18 22:46   ` Dario Niedermann
2012-08-18 23:08     ` Tim Newsham

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).