• Smalltalk/Self

    From hseiken@ABINARY to All on Wed Sep 13 00:28:00 2017
    Hi all. Anyone here into Smalltalk or Self as a language/playground for
    code? I'm a noob on them, but I have to say, it really changes the way you think about not only programming but how you think about programming. Plus they're kinda fun to just tinker with, more-so than a text editor, imho.

    Anyway, just throwing feelers out there, seeing if all the Smalltalkers and Selfies are hiding out in bbs land maybe..since there aren't a whole lot of them out in internet land.

    Peace.
  • From Digital Man to hseiken on Wed Sep 13 12:53:33 2017
    Re: Smalltalk/Self
    By: hseiken to All on Wed Sep 13 2017 12:28 am

    I'm a noob on them, but I have to say, it really changes the way you
    think about not only programming but how you think about programming.

    Is that what you meant to say? :-)


    digital man

    Synchronet "Real Fact" #85:
    The ZMODEM file transfer protocol is limited to files of 4 gigabytes or smaller.
    Norco, CA WX: 76.1°F, 65.0% humidity, 6 mph ENE wind, 0.00 inches rain/24hrs
  • From Accession@PHARCYDE to Digital Man on Wed Sep 13 16:02:54 2017
    Hello Digital,

    On Wed Sep 13 2017 12:53:32, Digital Man wrote to hseiken:

    I'm a noob on them, but I have to say, it really changes the way
    you think about not only programming but how you think about
    programming.

    Is that what you meant to say? :-)

    Dude, to be, or not to be? THAT is the question! ;)

    Regards,
    Nick

    ... "Не знаю. Я здесь только работаю."
    --- GoldED+/LNX 1.1.5-b20170303
    * Origin: thePharcyde_ distribution system (Wisconsin) (723:1/1)
    ■ Synchronet ■ thePharcyde_ telnet://bbs.pharcyde.org (Wisconsin)
  • From KK4QBN@KK4QBN to Digital Man on Wed Sep 13 20:51:14 2017
    Re: Smalltalk/Self
    By: Digital Man to hseiken on Wed Sep 13 2017 12:53:33

    I'm a noob on them, but I have to say, it really changes the way you
    think about not only programming but how you think about programming.

    Is that what you meant to say? :-)

    HAHAHA!


    This really made me think about not only writing.. but writing.. :-)

    --

    Tim Smith (KK4QBN)
    KK4QBN BBS

    ---
    * Synchronet * KK4QBN - kk4qbn.synchro.net - 7064229538 - Chatsworth GA USA
  • From KK4QBN@KK4QBN to Accession on Wed Sep 13 20:52:14 2017
    Re: Smalltalk/Self
    By: Accession to Digital Man on Wed Sep 13 2017 16:02:54

    I'm a noob on them, but I have to say, it really changes the way
    you think about not only programming but how you think about
    programming.

    Is that what you meant to say? :-)

    Dude, to be, or not to be? THAT is the question! ;)

    Friggin Chicken and Egg type stuff.. far beyond my scope of knowledge..

    --

    Tim Smith (KK4QBN)
    KK4QBN BBS

    ---
    * Synchronet * KK4QBN - kk4qbn.synchro.net - 7064229538 - Chatsworth GA USA
  • From Deavmi@KK4QBN to hseiken on Sat Sep 16 21:59:51 2017
    On 2017-09-13 02:28 AM, hseiken wrote:
    Hi all. Anyone here into Smalltalk or Self as a language/playground for code? I'm a noob on them, but I have to say, it really changes the way you think about not only programming but how you think about programming. Plus they're kinda fun to just tinker with, more-so than a text editor, imho.

    Anyway, just throwing feelers out there, seeing if all the Smalltalkers and Selfies are hiding out in bbs land maybe..since there aren't a whole lot of them out in internet land.

    Peace.

    Show me some example code please.

    Played in smalltalk once, maybe now I will understand it - it will
    probably make sense now. Will have to take a look at it again though.

    ---
    * Synchronet * KK4QBN - kk4qbn.synchro.net - 7064229538 - Chatsworth GA USA
  • From Deavmi@KK4QBN to hseiken on Sat Sep 16 22:01:25 2017
    On 2017-09-13 02:28 AM, hseiken wrote:
    Hi all. Anyone here into Smalltalk or Self as a language/playground for code? I'm a noob on them, but I have to say, it really changes the way you think about not only programming but how you think about programming. Plus they're kinda fun to just tinker with, more-so than a text editor, imho.

    Anyway, just throwing feelers out there, seeing if all the Smalltalkers and Selfies are hiding out in bbs land maybe..since there aren't a whole lot of them out in internet land.

    Peace.

    Have you checked Usenet? There is probably a group for that there and
    there is definetaly a community for these languages. I am sure.

    ---
    * Synchronet * KK4QBN - kk4qbn.synchro.net - 7064229538 - Chatsworth GA USA
  • From hseiken@ABINARY to Deavmi on Fri Sep 22 02:24:00 2017
    AnObject doSomething: withThis

    AGlobalVariable := (Object doingSomething)

    AGlobalVariable ifFalse: [ArbitraryObject andItsMessage]

    Since the entire system is live, there's no textual editor, it would make no sense: it's code you're meant to dissect while it's running, even if it's crashing, you can still examine it as it runs 'wrong', all the way down to
    the bytecode level if you wish. I'm not that hardcore, I just like making stuff do things without worrying about having to remember if I initialized something or not...smalltalk is a sketchpad, if nothing else, where concept
    is first, syntax be damned. In fact, it's kind of like a weird way to always write your own language...which ends up being useful when you come back to
    code you haven't looked at in ages...it kinda is it's own rosetta stone.