The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
* [TUHS] dead bstj unix link on wikipedia
@ 2018-04-02 17:34 Noel Chiappa
  0 siblings, 0 replies; 8+ messages in thread
From: Noel Chiappa @ 2018-04-02 17:34 UTC (permalink / raw)


    > From: Ron Minnich

    > anyone got a fix?

Google quickly shows that Dennis' home page is now at:

  https://www.bell-labs.com/usr/dmr/www/

From there, the CACM paper (HTML form) is at:

  https://www.bell-labs.com/usr/dmr/www/cacm.html

	Noel


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

* [TUHS] dead bstj unix link on wikipedia
  2018-04-02 16:11 ron minnich
  2018-04-02 16:24 ` Leonardo Taccari
  2018-04-02 17:36 ` David du Colombier
@ 2018-04-05 21:37 ` Jonathan Gevaryahu
  2 siblings, 0 replies; 8+ messages in thread
From: Jonathan Gevaryahu @ 2018-04-05 21:37 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1249 bytes --]

The BSTJ 1922-1983 back catalog is now available (some paywalled? ip-watermarked?) at the IEEE explore site at http://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=6731005
(see https://www.bell-labs.com/our-research/technical-journal/ )

However, archived copies of the old bell/lucent site (http://www3.alcatel-lucent.com/bstj/) with some but not all of the pdfs can be found at https://web.archive.org/web/20110810202426/www3.alcatel-lucent.com/bstj/
Individual items containing all(?) the journals and pdfs are available at archive.org at https://archive.org/details/bstj-archives

On 4/2/2018 12:11 PM, ron minnich wrote:
anyone got a fix?

https://en.wikipedia.org/wiki/Bell_System_Technical_Journal

see this text


  1.   Ritchie, D.M.; K. Thompson (July–August 1978). "The UNIX Time-Sharing System"<http://cm.bell-labs.com/cm/cs/who/dmr/cacm.html>. Bell System Technical Journal. 57 (6). Retrieved 2010-10-22



--
Jonathan Gevaryahu AKA Lord Nightmare
jgevaryahu at gmail.com<mailto:jgevaryahu at gmail.com>
jgevaryahu at hotmail.com<mailto:jgevaryahu at hotmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20180405/b92a8d5f/attachment.html>


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

* [TUHS] dead bstj unix link on wikipedia
  2018-04-02 22:53   ` ron minnich
  2018-04-03  5:11     ` David du Colombier
@ 2018-04-05 21:17     ` Jonathan Gevaryahu
  1 sibling, 0 replies; 8+ messages in thread
From: Jonathan Gevaryahu @ 2018-04-05 21:17 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1590 bytes --]

That reminds me of the multicharacter constant vs 'byte' index used in speak.c, I didn't realize this was an intended 'feature' for faking tuples (and allowing to index by either the first or second element) in early C, it seemed a bit of a hack to me.
I was hoping there was some elegant way to achieve nearly the same thing in modern C, but I didn't find anything obvious short of string comparisons and an array with a byte and a pointer to a string.

On 4/2/2018 6:53 PM, ron minnich wrote:
That turned out to be the wrong paper.

I'm looking for a paper that describes the (early) dialect of C that let you do stuff like this:

struct w {
char lo, hi;
};

int x;

char b = x.lo;

I can't find my hardcopy so was looking for a pdf.

ron

On Mon, Apr 2, 2018 at 10:36 AM David du Colombier <0intro at gmail.com<mailto:0intro at gmail.com>> wrote:
> anyone got a fix?
>
> https://en.wikipedia.org/wiki/Bell_System_Technical_Journal
>
> see this text
>
>  Ritchie, D.M.; K. Thompson (July–August 1978). "The UNIX Time-Sharing
> System". Bell System Technical Journal. 57 (6). Retrieved 2010-10-22

https://9p.io/cm/cs/who/dmr/cacm.html

More generally, just replace "cm.bell-labs.com<http://cm.bell-labs.com>" with "9p.io<http://9p.io>".

--
David du Colombier


--
Jonathan Gevaryahu AKA Lord Nightmare
jgevaryahu at gmail.com<mailto:jgevaryahu at gmail.com>
jgevaryahu at hotmail.com<mailto:jgevaryahu at hotmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20180405/cfa43318/attachment.html>


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

* [TUHS] dead bstj unix link on wikipedia
  2018-04-02 22:53   ` ron minnich
@ 2018-04-03  5:11     ` David du Colombier
  2018-04-05 21:17     ` Jonathan Gevaryahu
  1 sibling, 0 replies; 8+ messages in thread
From: David du Colombier @ 2018-04-03  5:11 UTC (permalink / raw)


> That turned out to be the wrong paper.
>
> I'm looking for a paper that describes the (early) dialect of C that let you
> do stuff like this:
>
> struct w {
> char lo, hi;
> };
>
> int x;
>
> char b = x.lo;
>
> I can't find my hardcopy so was looking for a pdf.

There is a list of C-related papers on Dennis Ritchie's page:

http://9p.io/who/dmr/

-- 
David du Colombier


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

* [TUHS] dead bstj unix link on wikipedia
  2018-04-02 17:36 ` David du Colombier
@ 2018-04-02 22:53   ` ron minnich
  2018-04-03  5:11     ` David du Colombier
  2018-04-05 21:17     ` Jonathan Gevaryahu
  0 siblings, 2 replies; 8+ messages in thread
From: ron minnich @ 2018-04-02 22:53 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 899 bytes --]

That turned out to be the wrong paper.

I'm looking for a paper that describes the (early) dialect of C that let
you do stuff like this:

struct w {
char lo, hi;
};

int x;

char b = x.lo;

I can't find my hardcopy so was looking for a pdf.

ron

On Mon, Apr 2, 2018 at 10:36 AM David du Colombier <0intro at gmail.com> wrote:

> > anyone got a fix?
> >
> > https://en.wikipedia.org/wiki/Bell_System_Technical_Journal
> >
> > see this text
> >
> >  Ritchie, D.M.; K. Thompson (July–August 1978). "The UNIX Time-Sharing
> > System". Bell System Technical Journal. 57 (6). Retrieved 2010-10-22
>
> https://9p.io/cm/cs/who/dmr/cacm.html
>
> More generally, just replace "cm.bell-labs.com" with "9p.io".
>
> --
> David du Colombier
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20180402/e7cc9661/attachment.html>


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

* [TUHS] dead bstj unix link on wikipedia
  2018-04-02 16:11 ron minnich
  2018-04-02 16:24 ` Leonardo Taccari
@ 2018-04-02 17:36 ` David du Colombier
  2018-04-02 22:53   ` ron minnich
  2018-04-05 21:37 ` Jonathan Gevaryahu
  2 siblings, 1 reply; 8+ messages in thread
From: David du Colombier @ 2018-04-02 17:36 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 377 bytes --]

> anyone got a fix?
>
> https://en.wikipedia.org/wiki/Bell_System_Technical_Journal
>
> see this text
>
>  Ritchie, D.M.; K. Thompson (July–August 1978). "The UNIX Time-Sharing
> System". Bell System Technical Journal. 57 (6). Retrieved 2010-10-22

https://9p.io/cm/cs/who/dmr/cacm.html

More generally, just replace "cm.bell-labs.com" with "9p.io".

-- 
David du Colombier


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

* [TUHS] dead bstj unix link on wikipedia
  2018-04-02 16:11 ron minnich
@ 2018-04-02 16:24 ` Leonardo Taccari
  2018-04-02 17:36 ` David du Colombier
  2018-04-05 21:37 ` Jonathan Gevaryahu
  2 siblings, 0 replies; 8+ messages in thread
From: Leonardo Taccari @ 2018-04-02 16:24 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 434 bytes --]

Hello ron,

ron minnich writes:
> anyone got a fix?
>
> https://en.wikipedia.org/wiki/Bell_System_Technical_Journal
>
> see this text
>
>
>    1.  Ritchie, D.M.; K. Thompson (July–August 1978). "The UNIX
>    Time-Sharing System"
> <http://cm.bell-labs.com/cm/cs/who/dmr/cacm.html>. *Bell
>    System Technical Journal*. *57* (6). Retrieved 2010-10-22
>

archive.org seems to have it:

 <https://archive.org/details/bstj57-6-1905>


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

* [TUHS] dead bstj unix link on wikipedia
@ 2018-04-02 16:11 ron minnich
  2018-04-02 16:24 ` Leonardo Taccari
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: ron minnich @ 2018-04-02 16:11 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 471 bytes --]

anyone got a fix?

https://en.wikipedia.org/wiki/Bell_System_Technical_Journal

see this text


   1.  Ritchie, D.M.; K. Thompson (July–August 1978). "The UNIX
   Time-Sharing System"
<http://cm.bell-labs.com/cm/cs/who/dmr/cacm.html>. *Bell
   System Technical Journal*. *57* (6). Retrieved 2010-10-22
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20180402/8751df16/attachment.html>


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

end of thread, other threads:[~2018-04-05 21:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-02 17:34 [TUHS] dead bstj unix link on wikipedia Noel Chiappa
  -- strict thread matches above, loose matches on Subject: below --
2018-04-02 16:11 ron minnich
2018-04-02 16:24 ` Leonardo Taccari
2018-04-02 17:36 ` David du Colombier
2018-04-02 22:53   ` ron minnich
2018-04-03  5:11     ` David du Colombier
2018-04-05 21:17     ` Jonathan Gevaryahu
2018-04-05 21:37 ` Jonathan Gevaryahu

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