home.social

Search

111 results for “nosrednayduj”

  1. #lispyGopherClimate @kentpitman #live #interview #computerScience #programming #lisp #commonLisp #python with some special announcements and releases.
    #teco #emacs #conditions

    archives.anonradio.net/2025021

    #archive Thanks for the incredible interview and livechat everyone!

    Interview 1 / ?

    Please drop questions here beforehand or join us live in #lambdaMOO as always !
    telnet lambda.moo.mud.org 8888
    co guest
    @join screwtape

    @nosrednayduj @sacha @hairylarry @pkw @rat @pizzapal

  2. #LispyGopherClimate #lisp #ai #peertube
    communitymedia.video/w/7KpDL8d

    @kentpitman #haiku

    Resurrected Sandewall's #softwareIndividuals from 2014.

    This episode is dedicated to general purpose interaction in the software individual / #CAISOR paradigm.

    Next will be porting the dynamicwindows zetalisp zwei to McCLIM #commonlisp.

    @prahou #unix_surrealism next #openbsd release art??

    Also @pesco and @dougmerritt on IPE '84

    co guest and join in on #lambdaMOO as always!

    @mdhughes @nosrednayduj @sacha

  3. #lispygopherclimate archives.anonradio.net/2025012 #archive
    #ClimateCrisis haiku/wildfires by @kentpitman

    Electric (guitar) #music by @ksaj, community message from @TheGibson

    Arrokoth #McClim Graphical adventure Game creation system #lisp
    by five decade #gamedev veteran @mdhughes
    #NUD #codegolf / adopting Arrokoth
    @baruchel #lisp destructive permutation

    #mastobook club - Snow crash

    #livechat in #lambdaMOO
    telnet lambda.moo.mud.org 8888
    co guest
    @join screwtape

    @nosrednayduj @ratxue @hairylarry

  4. #lispygopherclimate archives.anonradio.net/2025012 #archive
    #ClimateCrisis haiku/wildfires by @kentpitman

    Electric (guitar) #music by @ksaj, community message from @TheGibson

    Arrokoth #McClim Graphical adventure Game creation system #lisp
    by five decade #gamedev veteran @mdhughes
    #NUD #codegolf / adopting Arrokoth
    @baruchel #lisp destructive permutation

    #mastobook club - Snow crash

    #livechat in #lambdaMOO
    telnet lambda.moo.mud.org 8888
    co guest
    @join screwtape

    @nosrednayduj @ratxue @hairylarry

  5. #lispygopherclimate archives.anonradio.net/2025012 #archive
    #ClimateCrisis haiku/wildfires by @kentpitman

    Electric (guitar) #music by @ksaj, community message from @TheGibson

    Arrokoth #McClim Graphical adventure Game creation system #lisp
    by five decade #gamedev veteran @mdhughes
    #NUD #codegolf / adopting Arrokoth
    @baruchel #lisp destructive permutation

    #mastobook club - Snow crash

    #livechat in #lambdaMOO
    telnet lambda.moo.mud.org 8888
    co guest
    @join screwtape

    @nosrednayduj @ratxue @hairylarry

  6. #lispygopherclimate archives.anonradio.net/2025012 #archive
    #ClimateCrisis haiku/wildfires by @kentpitman

    Electric (guitar) #music by @ksaj, community message from @TheGibson

    Arrokoth #McClim Graphical adventure Game creation system #lisp
    by five decade #gamedev veteran @mdhughes
    #NUD #codegolf / adopting Arrokoth
    @baruchel #lisp destructive permutation

    #mastobook club - Snow crash

    #livechat in #lambdaMOO
    telnet lambda.moo.mud.org 8888
    co guest
    @join screwtape

    @nosrednayduj @ratxue @hairylarry

  7. #lispygopherclimate archives.anonradio.net/2025012 #archive
    #ClimateCrisis haiku/wildfires by @kentpitman

    Electric (guitar) #music by @ksaj, community message from @TheGibson

    Arrokoth #McClim Graphical adventure Game creation system #lisp
    by five decade #gamedev veteran @mdhughes
    #NUD #codegolf / adopting Arrokoth
    @baruchel #lisp destructive permutation

    #mastobook club - Snow crash

    #livechat in #lambdaMOO
    telnet lambda.moo.mud.org 8888
    co guest
    @join screwtape

    @nosrednayduj @ratxue @hairylarry

  8. On the tangential topic of quines.

    Here is my "due diligence".
    By the way, in October I realized on my own a quine could be done with
    `lambda' and `let', tried to work it out, ran out of time, left it
    aside, and, alas, never went back to it...

    (defun quinep (form)
    "Test whether a non-atom FORM evaluates to itself.
    Test equality with `equalp' for better coverage (of implementations
    that construct structures when reading backquoted expressions)."
    ;; A justified use of `eval'.
    (and (not (atom form))
    (equalp form (eval form))))

    ;; NB: `*print-pretty*' may affect the printing of backquotes.

    (defconstant pitmanual-funnies-eni-mmcm
    '(LET ((LET '`(LET ((LET ',LET)) ,LET)))
    `(LET ((LET ',LET)) ,LET))
    "MMcM's quine.
    See <maclisp.info/pitmanual/funnies>,
    «MMcM@MIT-AI 09/17/79 15:37:16 Re: ''s».")

    (defconstant pitmanual-funnies-eni-rwk-kmp
    '((LAMBDA (LAMBDA) (LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    '(LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    "RWK-KMP's quine.
    See <maclisp.info/pitmanual/funnies>,
    «KMP,RWK@MIT-ML (Sent by KMP@MIT-ML) 09/18/79 03:37:32».")

    (assert (quinep pitmanual-funnies-eni-mmcm))
    (assert (quinep pitmanual-funnies-eni-rwk-kmp))

    #CommonLisp
    #ForKicks
    #Pitmanual
    #PitmanualFunnies
    #Quine

    @kentpitman @dougmerritt @screwlisp @nosrednayduj

  9. On the tangential topic of quines.

    Here is my "due diligence".
    By the way, in October I realized on my own a quine could be done with
    `lambda' and `let', tried to work it out, ran out of time, left it
    aside, and, alas, never went back to it...

    (defun quinep (form)
    "Test whether a non-atom FORM evaluates to itself.
    Test equality with `equalp' for better coverage (of implementations
    that construct structures when reading backquoted expressions)."
    ;; A justified use of `eval'.
    (and (not (atom form))
    (equalp form (eval form))))

    ;; NB: `*print-pretty*' may affect the printing of backquotes.

    (defconstant pitmanual-funnies-eni-mmcm
    '(LET ((LET '`(LET ((LET ',LET)) ,LET)))
    `(LET ((LET ',LET)) ,LET))
    "MMcM's quine.
    See <maclisp.info/pitmanual/funnies>,
    «MMcM@MIT-AI 09/17/79 15:37:16 Re: ''s».")

    (defconstant pitmanual-funnies-eni-rwk-kmp
    '((LAMBDA (LAMBDA) (LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    '(LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    "RWK-KMP's quine.
    See <maclisp.info/pitmanual/funnies>,
    «KMP,RWK@MIT-ML (Sent by KMP@MIT-ML) 09/18/79 03:37:32».")

    (assert (quinep pitmanual-funnies-eni-mmcm))
    (assert (quinep pitmanual-funnies-eni-rwk-kmp))

    #CommonLisp
    #ForKicks
    #Pitmanual
    #PitmanualFunnies
    #Quine

    @kentpitman @dougmerritt @screwlisp @nosrednayduj

  10. On the tangential topic of quines.

    Here is my "due diligence".
    By the way, in October I realized on my own a quine could be done with
    `lambda' and `let', tried to work it out, ran out of time, left it
    aside, and, alas, never went back to it...

    (defun quinep (form)
    "Test whether a non-atom FORM evaluates to itself.
    Test equality with `equalp' for better coverage (of implementations
    that construct structures when reading backquoted expressions)."
    ;; A justified use of `eval'.
    (and (not (atom form))
    (equalp form (eval form))))

    ;; NB: `*print-pretty*' may affect the printing of backquotes.

    (defconstant pitmanual-funnies-eni-mmcm
    '(LET ((LET '`(LET ((LET ',LET)) ,LET)))
    `(LET ((LET ',LET)) ,LET))
    "MMcM's quine.
    See <maclisp.info/pitmanual/funnies>,
    «MMcM@MIT-AI 09/17/79 15:37:16 Re: ''s».")

    (defconstant pitmanual-funnies-eni-rwk-kmp
    '((LAMBDA (LAMBDA) (LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    '(LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    "RWK-KMP's quine.
    See <maclisp.info/pitmanual/funnies>,
    «KMP,RWK@MIT-ML (Sent by KMP@MIT-ML) 09/18/79 03:37:32».")

    (assert (quinep pitmanual-funnies-eni-mmcm))
    (assert (quinep pitmanual-funnies-eni-rwk-kmp))

    #CommonLisp
    #ForKicks
    #Pitmanual
    #PitmanualFunnies
    #Quine

    @kentpitman @dougmerritt @screwlisp @nosrednayduj

  11. On the tangential topic of quines.

    Here is my "due diligence".
    By the way, in October I realized on my own a quine could be done with
    `lambda' and `let', tried to work it out, ran out of time, left it
    aside, and, alas, never went back to it...

    (defun quinep (form)
    "Test whether a non-atom FORM evaluates to itself.
    Test equality with `equalp' for better coverage (of implementations
    that construct structures when reading backquoted expressions)."
    ;; A justified use of `eval'.
    (and (not (atom form))
    (equalp form (eval form))))

    ;; NB: `*print-pretty*' may affect the printing of backquotes.

    (defconstant pitmanual-funnies-eni-mmcm
    '(LET ((LET '`(LET ((LET ',LET)) ,LET)))
    `(LET ((LET ',LET)) ,LET))
    "MMcM's quine.
    See <maclisp.info/pitmanual/funnies>,
    «MMcM@MIT-AI 09/17/79 15:37:16 Re: ''s».")

    (defconstant pitmanual-funnies-eni-rwk-kmp
    '((LAMBDA (LAMBDA) (LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    '(LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    "RWK-KMP's quine.
    See <maclisp.info/pitmanual/funnies>,
    «KMP,RWK@MIT-ML (Sent by KMP@MIT-ML) 09/18/79 03:37:32».")

    (assert (quinep pitmanual-funnies-eni-mmcm))
    (assert (quinep pitmanual-funnies-eni-rwk-kmp))

    #CommonLisp
    #ForKicks
    #Pitmanual
    #PitmanualFunnies
    #Quine

    @kentpitman @dougmerritt @screwlisp @nosrednayduj

  12. On the tangential topic of quines.

    Here is my "due diligence".
    By the way, in October I realized on my own a quine could be done with
    `lambda' and `let', tried to work it out, ran out of time, left it
    aside, and, alas, never went back to it...

    (defun quinep (form)
    "Test whether a non-atom FORM evaluates to itself.
    Test equality with `equalp' for better coverage (of implementations
    that construct structures when reading backquoted expressions)."
    ;; A justified use of `eval'.
    (and (not (atom form))
    (equalp form (eval form))))

    ;; NB: `*print-pretty*' may affect the printing of backquotes.

    (defconstant pitmanual-funnies-eni-mmcm
    '(LET ((LET '`(LET ((LET ',LET)) ,LET)))
    `(LET ((LET ',LET)) ,LET))
    "MMcM's quine.
    See <maclisp.info/pitmanual/funnies>,
    «MMcM@MIT-AI 09/17/79 15:37:16 Re: ''s».")

    (defconstant pitmanual-funnies-eni-rwk-kmp
    '((LAMBDA (LAMBDA) (LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    '(LIST (LIST 'LAMBDA '(LAMBDA) LAMBDA)
    (LIST 'QUOTE LAMBDA)))
    "RWK-KMP's quine.
    See <maclisp.info/pitmanual/funnies>,
    «KMP,RWK@MIT-ML (Sent by KMP@MIT-ML) 09/18/79 03:37:32».")

    (assert (quinep pitmanual-funnies-eni-mmcm))
    (assert (quinep pitmanual-funnies-eni-rwk-kmp))

    #CommonLisp
    #ForKicks
    #Pitmanual
    #PitmanualFunnies
    #Quine

    @kentpitman @dougmerritt @screwlisp @nosrednayduj

  13. Being frustrated by the lack of concrete information about #NoKings Boston on the 18th. #Mass50501 still says "details coming"; #MassachusettsPeaceAction and #mobilize.us say BOTH noon-4 AND "time to be announced"; #SwingBlueAlliance (who I've never heard of before) says 10-1. What time is a body to show up? I guess they're arguing with the city about use of Boston Common or something, because they all also say "exact location to be announced".

    It's only three weeks away!

  14. Being frustrated by the lack of concrete information about #NoKings Boston on the 18th. #Mass50501 still says "details coming"; #MassachusettsPeaceAction and #mobilize.us say BOTH noon-4 AND "time to be announced"; #SwingBlueAlliance (who I've never heard of before) says 10-1. What time is a body to show up? I guess they're arguing with the city about use of Boston Common or something, because they all also say "exact location to be announced".

    It's only three weeks away!

  15. Being frustrated by the lack of concrete information about Boston on the 18th. still says "details coming"; and .us say BOTH noon-4 AND "time to be announced"; (who I've never heard of before) says 10-1. What time is a body to show up? I guess they're arguing with the city about use of Boston Common or something, because they all also say "exact location to be announced".

    It's only three weeks away!

  16. Being frustrated by the lack of concrete information about #NoKings Boston on the 18th. #Mass50501 still says "details coming"; #MassachusettsPeaceAction and #mobilize.us say BOTH noon-4 AND "time to be announced"; #SwingBlueAlliance (who I've never heard of before) says 10-1. What time is a body to show up? I guess they're arguing with the city about use of Boston Common or something, because they all also say "exact location to be announced".

    It's only three weeks away!

  17. Being frustrated by the lack of concrete information about #NoKings Boston on the 18th. #Mass50501 still says "details coming"; #MassachusettsPeaceAction and #mobilize.us say BOTH noon-4 AND "time to be announced"; #SwingBlueAlliance (who I've never heard of before) says 10-1. What time is a body to show up? I guess they're arguing with the city about use of Boston Common or something, because they all also say "exact location to be announced".

    It's only three weeks away!

  18. Anecdote from my partner:

    "I have just installed 96TB of disk space in an external enclosure on [work computer]. [coworker] wants it for storing astronomical images. The first time I installed a disk drive on a computer it was 48 years ago and the drive held 90kB. Today's storage is one billion times larger.

    Moore's Law is really about chips and not disks, and says that things double every two years. According to that, a billion-fold increase should take 60 years, so I'm somewhat ahead of that rate."

    #RetroComputing #MooresLaw

  19. @dplattsf ...aaaand the #BostonGlobe censored today's Doonesbury. Thanks for posting the real one.

  20. @screwlisp Thought you would be interested in this.

    On the ex-Symbolics employees mailing list somebody posted a link to a "history of the Lisp machine".

    youtu.be/sV7C6Ezl35A?si=S4uh4-

    It's kind of long and so I didn't watch the whole thing, but just skipped around a little bit. Somebody else who did watch it said,

    'Fascinating exposition. Given his mispronunciations of "CADR" and "Macsyma", it's clear that he wasn't in the room where it happened, nor spoke to anyone who was. But I can't quarrel with his research or cause-and-effect analysis of both the industry as a whole and Symbolics in particular.'

    #symbolics #lispMachine