[Newbies] Re: Beginners Digest, Vol 42, Issue 8

Gabriel La Torre latorregab at gmail.com
Wed Oct 28 13:45:52 UTC 2009


Thank you Herbert it worked this is the way wrote it:

Object subclass: #Tablero
    instanceVariableNames: 'celdas rango'
    classVariableNames: ''
    poolDictionaries: ''
    category: 'fiuba-explorador'

initialize
    "Inicializa por defecto"
    celdas := Dictionary new.
    rango := 6

And this is what I put in each cell:

Object subclass: #Casillero
    instanceVariableNames: 'volteado posicion'
    classVariableNames: ''
    poolDictionaries: ''
    category: 'fiuba-explorador'

But now it's working so, thank you very much.

2009/10/28 <beginners-request at lists.squeakfoundation.org>

> Send Beginners mailing list submissions to
>        beginners at lists.squeakfoundation.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://lists.squeakfoundation.org/mailman/listinfo/beginners
> or, via email, send a message with subject or body 'help' to
>        beginners-request at lists.squeakfoundation.org
>
> You can reach the person managing the list at
>        beginners-owner at lists.squeakfoundation.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Beginners digest..."
>
>
> Today's Topics:
>
>   1. [croquet-user] Re: [squeak-dev] [ANN] Krestianstvo SDK -
>      Smalltalk,  Croquet, Seaside... programming on native spoken
>      language (Russian) (Bert Freudenberg)
>   2. Matrix with Objetcs (Gabriel La Torre)
>   3. Re: Matrix with Objetcs (Herbert K?nig)
>   4.  [croquet-user] [ANN] Krestianstvo SDK - Smalltalk, Croquet,
>      Seaside... programming on  native spoken language (Russian)
>      (Nikolay Suslov)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 16 Sep 2009 18:03:35 +0200
> From: Bert Freudenberg <bert at freudenbergs.de>
> Subject: [Newbies] [croquet-user] Re: [squeak-dev] [ANN] Krestianstvo
>        SDK - Smalltalk,  Croquet, Seaside... programming on native spoken
>        language (Russian)
> To: The general-purpose Squeak developers list
>        <squeak-dev at lists.squeakfoundation.org>
> Cc: croquet-user at duke.edu, croquet-dev at duke.edu,
>        beginners at lists.squeakfoundation.org,
> cobaltcroquet at googlegroups.com,
>        Seaside - developer list <seaside-dev at lists.squeakfoundation.org>
> Message-ID: <C55DAB00-722A-42DE-89A6-E72B364868BF at freudenbergs.de>
> Content-Type: text/plain; charset=UTF-8; format=flowed; delsp=yes
>
> On 16.09.2009, at 16:13, Nikolay Suslov wrote:
>
> > Hello!
> >
> > Introducing Krestianstvo SDK.
> >
> > Krestianstvo SDK is built on top of OpenCroquet SDK with preloaded
> > packages (some of the list: Sophie XUL-CSS, Seaside, OMeta, and
> > Krestianstvo itself).
> > From now it will be entirely native spoken language based (Russian).
> > The SDK is updated through change set's update stream and source
> > code could be easily filed in/filed out containing unicode chars.
> > The current developing version of the Krestianstvo SDK could be
> > downloaded here (one-click image for Windows, Mac OS X, Linux).
> >
> > More information:
> >
> http://nsuslovi.blogspot.com/2009/09/krestianstvo-sdk-smalltalk-croquet.html
> >
> > Official web site:
> > http://www.krestianstvo.ru
> > Discussion Group:
> > http://groups.google.com/group/krestianstvo
> >
> > Thanks,
> > Nikolay Suslov
>
>
> Guess I need to brush up my Russian ... Очень хорошо! :)
>
> Congratulations on the release.
>
> - Bert -
>
>
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 28 Oct 2009 00:34:37 -0300
> From: Gabriel La Torre <boludecesvarias at gmail.com>
> Subject: [Newbies] Matrix with Objetcs
> To: beginners at lists.squeakfoundation.org
> Message-ID:
>        <963463db0910272034o24e0569ev324b016bfd0a1082 at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi! this is the first time I use Smalltalk. I created a class called Celd
> and I wanted to create a class called Matrix which will be a 2D-array of
> Celd or a Matrix if you prefere.
>
> Could someone help me with the code?
>
> I tried this:
>
> Object subclass: #Matrix
>    instanceVariableNames: 'cells range'
>    classVariableNames: ''
>    poolDictionaries: ''
>    category: 'fiuba-explorador'
>
> initialize
>    "Inicializa por defecto"
>    cells := Celd new.
>    range := 6
>
>
> But when I try to add a Cell... I can't thank you very much in advance.
>
> Gabriel
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://lists.squeakfoundation.org/pipermail/beginners/attachments/20091028/daf77626/attachment.html
>
> ------------------------------
>
> Message: 3
> Date: Wed, 28 Oct 2009 09:17:23 +0100
> From: Herbert K?nig <herbertkoenig at gmx.net>
> Subject: Re: [Newbies] Matrix with Objetcs
> To: "A friendly place to get answers to even the most basic questions
>        about   Squeak." <beginners at lists.squeakfoundation.org>
> Message-ID: <86340317.20091028091723 at gmx.net>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi Gabriel,
>
>
> GLT> Hi! this is the first time I use Smalltalk. I created a
>
> welcome to a brand new world!
>
> GLT> class called Celd and I wanted to create a class called Matrix
> GLT> which will be a 2D-array of Celd or a Matrix if you prefere.
>
> There is a class Matrix already. And in older Squeaks (3.6) there was
> Array2D class.
>
> GLT> Could someone help me with the code?
>
> We need more details.
>
> GLT> I tried this:
>
> GLT> Object subclass: #Matrix
> GLT> ��  instanceVariableNames: 'cells range'
> GLT> ��  classVariableNames: ''
> GLT> ��  poolDictionaries: ''
> GLT> ��  category: 'fiuba-explorador'
>
> GLT> initialize
> GLT> ��  "Inicializa por defecto"
> GLT> ��  cells := Celd new.
> GLT> ��  range := 6
>
>
> GLT> But when I try to add a Cell... I can't thank you very much in
> advance.
>
> Which code do you use? And what is the definition of Class Celd?
>
> You need a Collection or one of it's subclasses to implement a matrix.
>
>
> Cheers,
>
> Herbert
>
>
>
> ------------------------------
>
> Message: 4
> Date: Wed, 16 Sep 2009 18:13:56 +0400
> From: Nikolay Suslov <nsuslovi at gmail.com>
> Subject: [Newbies]  [croquet-user] [ANN] Krestianstvo SDK - Smalltalk,
>        Croquet, Seaside... programming on  native spoken language (Russian)
> To: croquet-dev at duke.edu, croquet-user at duke.edu,
>        cobaltcroquet at googlegroups.com, The general-purpose Squeak
> developers
>        list    <squeak-dev at lists.squeakfoundation.org>,
>        beginners at lists.squeakfoundation.org,   Seaside - developer list
>        <seaside-dev at lists.squeakfoundation.org>
> Message-ID:
>        <33801fca0909160713h75421d76h27964fd9524f559f at mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Hello!
>
> Introducing Krestianstvo SDK.
>
> Krestianstvo SDK is built on top of OpenCroquet SDK with preloaded packages
> (some of the list: Sophie XUL-CSS, Seaside, OMeta, and Krestianstvo
> itself).
> >From now it will be entirely native spoken language based (Russian).
> The SDK is updated through change set's update
> stream<http://www.krestianstvo.ru/sdk/Krestianstvo/updates>and source
> code could be easily filed in/filed out containing unicode chars.
> The current developing version of the Krestianstvo SDK could be downloaded
> here <http://www.krestianstvo.ru/sdk/Krestianstvo1.0a.zip> (one-click
> image
> for Windows, Mac OS X, Linux).
>
> More information:
>
> http://nsuslovi.blogspot.com/2009/09/krestianstvo-sdk-smalltalk-croquet.html
>
> Official web site:
> http://www.krestianstvo.ru
> Discussion Group:
> http://groups.google.com/group/krestianstvo
>
> Thanks,
> Nikolay Suslov
>
> ----for Russian spoken---
>
> Здравствуйте!
>
> Представляем вашему вниманию открытый проект Крестьянство SDK.
> Наконец-то, стало возможным программирование в SmallTalk, Croquet, Seaside
> на родном языке (Русском).
> Мы еще только в начале пути, но тем неменее уже доступен для скачивания
> базовый образ для основных платформ (Windows, Linux, Mac OS X).
>
> Крестьянство SDK построен на основе OpenCroquet SDK с предустановленными
> пакетами (некоторые из списка: Sophie XUL-CSS, Seaside, OMeta и
> Крестьянство).
> Отныне она будет разрабатываться полностью на родном языке (русский).
> Крестьянство обновляется путем потока изменений и исходный код может быть
> легко (загружаться в/ выгружаться из) образа приложения.
>
> Текущий вариант Крестьянство SDK можно загрузить
> здесь<http://www.krestianstvo.ru/sdk/Krestianstvo1.0a.zip>(однокликовый
> образ).
>
> Дополнительная информация:
>
> http://nsuslovi.blogspot.com/2009/09/krestianstvo-sdk-smalltalk-croquet.html
>
> Официальный сайт:
> http://www.krestianstvo.ru
> Группа для обсуждений:
> http://groups.google.com/group/krestianstvo
>
> С уважением,
> Николай Суслов
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://lists.squeakfoundation.org/pipermail/beginners/attachments/20090916/8a5549df/attachment-0002.htm
>
> ------------------------------
>
> _______________________________________________
> Beginners mailing list
> Beginners at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/mailman/listinfo/beginners
>
>
> End of Beginners Digest, Vol 42, Issue 8
> ****************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/beginners/attachments/20091028/1ef0d0c9/attachment-0001.htm


More information about the Beginners mailing list