Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

UNIX is many things to many people, but it's never been everything to anybody.


devel / comp.lang.javascript / What does the Controller really do in MVC?

SubjectAuthor
* What does the Controller really do in MVC?luserdroog
+* Re: What does the Controller really do in MVC?luserdroog
|`* Re: What does the Controller really do in MVC?Elhwen Dico
| `- Re: What does the Controller really do in MVC?luserdroog
`* Re: What does the Controller really do in MVC?Michael Haufe (TNO)
 +* Re: What does the Controller really do in MVC?Julio Di Egidio
 |`* Re: What does the Controller really do in MVC?Michael Haufe (TNO)
 | +* Re: What does the Controller really do in MVC?Julio Di Egidio
 | |`- OT: behaviour (was: Re: What does the Controller really do in MVC?)Arno Welzel
 | `* Re: What does the Controller really do in MVC?Thomas 'PointedEars' Lahn
 |  `- Re: What does the Controller really do in MVC?Julio Di Egidio
 `* Re: What does the Controller really do in MVC?luserdroog
  `* Re: What does the Controller really do in MVC?Julio Di Egidio
   +* Re: What does the Controller really do in MVC?Jonas Thörnvall
   |`* Re: What does the Controller really do in MVC?Julio Di Egidio
   | +* Re: What does the Controller really do in MVC?Arno Welzel
   | |`* Re: What does the Controller really do in MVC?Julio Di Egidio
   | | +* Re: What does the Controller really do in MVC?Arno Welzel
   | | |`* Re: What does the Controller really do in MVC?Julio Di Egidio
   | | | `* OT: behaviour (was: Re: What does the Controller really do in MVC?)Arno Welzel
   | | |  +* Re: OT: behaviour (was: Re: What does the Controller really do inJan van den Broek
   | | |  |`- Re: OT: behaviour (was: Re: What does the Controller really do in MVC?)Julio Di Egidio
   | | |  `* Re: OT: behaviour (was: Re: What does the Controller really do inJon Ribbens
   | | |   +- Re: OT: behaviour (was: Re: What does the Controller really do in MVC?)Julio Di Egidio
   | | |   `* Re: OT: behaviour (was: Re: What does the Controller really do in MVC?)Thomas 'PointedEars' Lahn
   | | |    `- Re: OT: behaviour (was: Re: What does the Controller really do inJulio Di Egidio
   | | `* Re: What does the Controller really do in MVC?John Harris
   | |  `* Re: What does the Controller really do in MVC?Julio Di Egidio
   | |   `* Re: What does the Controller really do in MVC?The Natural Philosopher
   | |    +- Re: What does the Controller really do in MVC?Jonas Thörnvall
   | |    `* Re: What does the Controller really do in MVC?John Harris
   | |     `- Re: What does the Controller really do in MVC?The Natural Philosopher
   | `- Re: What does the Controller really do in MVC?Jonas Thörnvall
   +- Re: What does the Controller really do in MVC?Jonas Thörnvall
   `- OT: bots posting here? (was: Re: What does the Controller really doArno Welzel

Pages:12
What does the Controller really do in MVC?

<dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17472&group=comp.lang.javascript#17472

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:622a:180c:: with SMTP id t12mr18473709qtc.507.1638498245924;
Thu, 02 Dec 2021 18:24:05 -0800 (PST)
X-Received: by 2002:aca:a897:: with SMTP id r145mr7477950oie.136.1638498245607;
Thu, 02 Dec 2021 18:24:05 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Thu, 2 Dec 2021 18:24:05 -0800 (PST)
Injection-Info: google-groups.googlegroups.com; posting-host=97.87.183.68; posting-account=G1KGwgkAAAAyw4z0LxHH0fja6wAbo7Cz
NNTP-Posting-Host: 97.87.183.68
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
Subject: What does the Controller really do in MVC?
From: luser.droog@gmail.com (luserdroog)
Injection-Date: Fri, 03 Dec 2021 02:24:05 +0000
Content-Type: text/plain; charset="UTF-8"
 by: luserdroog - Fri, 3 Dec 2021 02:24 UTC

I'm trying to make a simple web app that displays a piano-roll
style grid that you can click in to activate or deactivate notes.
And I'm building it off of the MVC classes that I borrowed from
Michael Haufe. But I feel like I'm not really making use of the
Controller part.

What does the Controller really do in an MVC design? Should I
stuff all my button handlers (and their helper functions) in there?
In the current implementation, the Controller is just 4 functions
to access an associated Model and View.

class Controller {
getModel(){ return this._model; }
setModel( model ){ this._model = model; }
getView(){ return this._view; }
setView( view ){ this._view = view; }
}

Is there more stuff it could do? Or more stuff it ought to do according
to other interpretations of MVC?

Re: What does the Controller really do in MVC?

<e5b7151b-6c77-4cf4-9088-5045eb0ffe66n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17474&group=comp.lang.javascript#17474

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:622a:100a:: with SMTP id d10mr18805109qte.548.1638513249720;
Thu, 02 Dec 2021 22:34:09 -0800 (PST)
X-Received: by 2002:a4a:e288:: with SMTP id k8mr11659760oot.23.1638513249443;
Thu, 02 Dec 2021 22:34:09 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Thu, 2 Dec 2021 22:34:09 -0800 (PST)
In-Reply-To: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=97.87.183.68; posting-account=G1KGwgkAAAAyw4z0LxHH0fja6wAbo7Cz
NNTP-Posting-Host: 97.87.183.68
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <e5b7151b-6c77-4cf4-9088-5045eb0ffe66n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: luser.droog@gmail.com (luserdroog)
Injection-Date: Fri, 03 Dec 2021 06:34:09 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 26
 by: luserdroog - Fri, 3 Dec 2021 06:34 UTC

On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luserdroog wrote:
> I'm trying to make a simple web app that displays a piano-roll
> style grid that you can click in to activate or deactivate notes.
> And I'm building it off of the MVC classes that I borrowed from
> Michael Haufe. But I feel like I'm not really making use of the
> Controller part.
>
> What does the Controller really do in an MVC design? Should I
> stuff all my button handlers (and their helper functions) in there?
> In the current implementation, the Controller is just 4 functions
> to access an associated Model and View.
>
> class Controller {
> getModel(){ return this._model; }
> setModel( model ){ this._model = model; }
> getView(){ return this._view; }
> setView( view ){ this._view = view; }
> }
>
> Is there more stuff it could do? Or more stuff it ought to do according
> to other interpretations of MVC?

I stumbled upon this concise answer.
https://stackoverflow.com/a/8497887/733077
which suggests that yes, the controller should encapsulate all the
"actions" and do manipulations on the model. The way I'm doing it
now, the model manipulates itself.

Re: What does the Controller really do in MVC?

<61aa1d7d$0$29512$426a74cc@news.free.fr>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17475&group=comp.lang.javascript#17475

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!feed.abavia.com!abe004.abavia.com!abe002.abavia.com!proxad.net!feeder1-1.proxad.net!cleanfeed2-b.proxad.net!nnrp1-1.free.fr!not-for-mail
Date: Fri, 3 Dec 2021 14:37:02 +0100
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: What does the Controller really do in MVC?
Content-Language: fr
Newsgroups: comp.lang.javascript
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<e5b7151b-6c77-4cf4-9088-5045eb0ffe66n@googlegroups.com>
From: elhwen.dicote@gmail.com (Elhwen Dico)
In-Reply-To: <e5b7151b-6c77-4cf4-9088-5045eb0ffe66n@googlegroups.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 44
Message-ID: <61aa1d7d$0$29512$426a74cc@news.free.fr>
Organization: Guest of ProXad - France
NNTP-Posting-Date: 03 Dec 2021 14:37:01 CET
NNTP-Posting-Host: 91.169.85.6
X-Trace: 1638538621 news-1.free.fr 29512 91.169.85.6:59804
X-Complaints-To: abuse@proxad.net
X-Received-Bytes: 2889
 by: Elhwen Dico - Fri, 3 Dec 2021 13:37 UTC

Le 03/12/2021 à 07:34, luserdroog a écrit :
> On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luserdroog wrote:
>> I'm trying to make a simple web app that displays a piano-roll
>> style grid that you can click in to activate or deactivate notes.
>> And I'm building it off of the MVC classes that I borrowed from
>> Michael Haufe. But I feel like I'm not really making use of the
>> Controller part.
>>
>> What does the Controller really do in an MVC design? Should I
>> stuff all my button handlers (and their helper functions) in there?
>> In the current implementation, the Controller is just 4 functions
>> to access an associated Model and View.
>>
>> class Controller {
>> getModel(){ return this._model; }
>> setModel( model ){ this._model = model; }
>> getView(){ return this._view; }
>> setView( view ){ this._view = view; }
>> }
>>
>> Is there more stuff it could do? Or more stuff it ought to do according
>> to other interpretations of MVC?
>
> I stumbled upon this concise answer.
> https://stackoverflow.com/a/8497887/733077
> which suggests that yes, the controller should encapsulate all the
> "actions" and do manipulations on the model. The way I'm doing it
> now, the model manipulates itsel >

In my understanding,

Model is passive. It just ensure data store coherency. It handle
semantics of the application, invariants, ...

Views display Model in the UI. Views listen to Model to ensure
accuracy of display. Views also display widgets that let the user
interact (buttons, text fields).

Controllers listen Views for User interactions and translate its as
actions on the model. Theese interactions update the Model that notify
Views that update to display the new state.

Re: What does the Controller really do in MVC?

<7058ce63-f70b-4956-a32d-475cbcd4e105n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17476&group=comp.lang.javascript#17476

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:620a:1991:: with SMTP id bm17mr20977573qkb.459.1638587349829;
Fri, 03 Dec 2021 19:09:09 -0800 (PST)
X-Received: by 2002:a05:6808:bc9:: with SMTP id o9mr13212840oik.150.1638587349534;
Fri, 03 Dec 2021 19:09:09 -0800 (PST)
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Fri, 3 Dec 2021 19:09:09 -0800 (PST)
In-Reply-To: <61aa1d7d$0$29512$426a74cc@news.free.fr>
Injection-Info: google-groups.googlegroups.com; posting-host=97.87.183.68; posting-account=G1KGwgkAAAAyw4z0LxHH0fja6wAbo7Cz
NNTP-Posting-Host: 97.87.183.68
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<e5b7151b-6c77-4cf4-9088-5045eb0ffe66n@googlegroups.com> <61aa1d7d$0$29512$426a74cc@news.free.fr>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <7058ce63-f70b-4956-a32d-475cbcd4e105n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: luser.droog@gmail.com (luserdroog)
Injection-Date: Sat, 04 Dec 2021 03:09:09 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 3888
 by: luserdroog - Sat, 4 Dec 2021 03:09 UTC

On Friday, December 3, 2021 at 7:44:47 AM UTC-6, Elhwen Dico wrote:
> Le 03/12/2021 à 07:34, luserdroog a écrit :
> > On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luserdroog wrote:
> >> I'm trying to make a simple web app that displays a piano-roll
> >> style grid that you can click in to activate or deactivate notes.
> >> And I'm building it off of the MVC classes that I borrowed from
> >> Michael Haufe. But I feel like I'm not really making use of the
> >> Controller part.
> >>
> >> What does the Controller really do in an MVC design? Should I
> >> stuff all my button handlers (and their helper functions) in there?
> >> In the current implementation, the Controller is just 4 functions
> >> to access an associated Model and View.
> >>
> >> class Controller {
> >> getModel(){ return this._model; }
> >> setModel( model ){ this._model = model; }
> >> getView(){ return this._view; }
> >> setView( view ){ this._view = view; }
> >> }
> >>
> >> Is there more stuff it could do? Or more stuff it ought to do according
> >> to other interpretations of MVC?
> >
> > I stumbled upon this concise answer.
> > https://stackoverflow.com/a/8497887/733077
> > which suggests that yes, the controller should encapsulate all the
> > "actions" and do manipulations on the model. The way I'm doing it
> > now, the model manipulates itsel >
> In my understanding,
>
> Model is passive. It just ensure data store coherency. It handle
> semantics of the application, invariants, ...
>
> Views display Model in the UI. Views listen to Model to ensure
> accuracy of display. Views also display widgets that let the user
> interact (buttons, text fields).
>
> Controllers listen Views for User interactions and translate its as
> actions on the model. Theese interactions update the Model that notify
> Views that update to display the new state.

Ok. Yeah, that makes sense. This sounds like a more "classical" MVC
division. So if I wanted to move towards this with my piano roll app,
then my Control Panel should be a View or maybe even each button.
Then the View gets event notifications, passing those to the Controller.
And the Controller should have all my app's "actions". In the piano roll
app all these actions are currently methods of the Model, so they
ought to be methods of the Controller, called when the controller gets
an event from View.

That does seem like a more "organized" organization than the way
I'm doing it now.

Re: What does the Controller really do in MVC?

<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17490&group=comp.lang.javascript#17490

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:620a:28d0:: with SMTP id l16mr24734488qkp.500.1638654769249;
Sat, 04 Dec 2021 13:52:49 -0800 (PST)
X-Received: by 2002:a05:6830:22cf:: with SMTP id q15mr22512114otc.255.1638654768983;
Sat, 04 Dec 2021 13:52:48 -0800 (PST)
Path: i2pn2.org!i2pn.org!news.swapon.de!news.uzoreto.com!feeder1.cambriumusenet.nl!feed.tweak.nl!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Sat, 4 Dec 2021 13:52:48 -0800 (PST)
In-Reply-To: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2603:6000:8900:6915:d1cb:769b:6087:39a4;
posting-account=hYRygAoAAABkmvJVmPilz9Q1TOjgPQAq
NNTP-Posting-Host: 2603:6000:8900:6915:d1cb:769b:6087:39a4
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: tno@thenewobjective.com (Michael Haufe (TNO))
Injection-Date: Sat, 04 Dec 2021 21:52:49 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Michael Haufe (TNO) - Sat, 4 Dec 2021 21:52 UTC

On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luser...@gmail.com wrote:
> I'm trying to make a simple web app that displays a piano-roll
> style grid that you can click in to activate or deactivate notes.
> And I'm building it off of the MVC classes that I borrowed from
> Michael Haufe. But I feel like I'm not really making use of the
> Controller part.
> [...]

I threw together a quick MVC example this morning. Imperfect and a bit verbose but conceptually
you might find it useful:

<https://codepen.io/mlhaufe/pen/eYGpBzE?editors=0011>

Re: What does the Controller really do in MVC?

<bea95ac0-2b59-49a7-986b-6726206b7b1cn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17493&group=comp.lang.javascript#17493

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:620a:652:: with SMTP id a18mr27079719qka.146.1638701554609;
Sun, 05 Dec 2021 02:52:34 -0800 (PST)
X-Received: by 2002:aca:f20a:: with SMTP id q10mr18428602oih.176.1638701554403;
Sun, 05 Dec 2021 02:52:34 -0800 (PST)
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsreader4.netcologne.de!news.netcologne.de!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Sun, 5 Dec 2021 02:52:34 -0800 (PST)
In-Reply-To: <f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=93.41.97.118; posting-account=F3H0JAgAAADcYVukktnHx7hFG5stjWse
NNTP-Posting-Host: 93.41.97.118
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com> <f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <bea95ac0-2b59-49a7-986b-6726206b7b1cn@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: julio@diegidio.name (Julio Di Egidio)
Injection-Date: Sun, 05 Dec 2021 10:52:34 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1972
 by: Julio Di Egidio - Sun, 5 Dec 2021 10:52 UTC

On Saturday, 4 December 2021 at 22:52:53 UTC+1, Michael Haufe (TNO) wrote:
> On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luser...@gmail.com wrote:
> > I'm trying to make a simple web app that displays a piano-roll
> > style grid that you can click in to activate or deactivate notes.
> > And I'm building it off of the MVC classes that I borrowed from
> > Michael Haufe. But I feel like I'm not really making use of the
> > Controller part.
> > [...]
>
> I threw together a quick MVC example this morning. Imperfect and a bit verbose but conceptually
> you might find it useful:
>
> <https://codepen.io/mlhaufe/pen/eYGpBzE?editors=0011>

That is not MVC, indeed that is just nonsensical.

When Dunning-Kruger is a compliment...

*Plonk*

Julio

Re: What does the Controller really do in MVC?

<461c2ce9-cfdd-4338-9cdf-1bf432c2fb45n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17497&group=comp.lang.javascript#17497

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:620a:e0c:: with SMTP id y12mr28190325qkm.109.1638725279973;
Sun, 05 Dec 2021 09:27:59 -0800 (PST)
X-Received: by 2002:aca:a897:: with SMTP id r145mr19627118oie.136.1638725279776;
Sun, 05 Dec 2021 09:27:59 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Sun, 5 Dec 2021 09:27:59 -0800 (PST)
In-Reply-To: <bea95ac0-2b59-49a7-986b-6726206b7b1cn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2603:6000:8900:6915:d1cb:769b:6087:39a4;
posting-account=hYRygAoAAABkmvJVmPilz9Q1TOjgPQAq
NNTP-Posting-Host: 2603:6000:8900:6915:d1cb:769b:6087:39a4
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <bea95ac0-2b59-49a7-986b-6726206b7b1cn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <461c2ce9-cfdd-4338-9cdf-1bf432c2fb45n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: tno@thenewobjective.com (Michael Haufe (TNO))
Injection-Date: Sun, 05 Dec 2021 17:27:59 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 23
 by: Michael Haufe (TNO) - Sun, 5 Dec 2021 17:27 UTC

On Sunday, December 5, 2021 at 4:52:39 AM UTC-6, ju...@diegidio.name wrote:
> On Saturday, 4 December 2021 at 22:52:53 UTC+1, Michael Haufe (TNO) wrote:
> > On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luser...@gmail.com wrote:
> > > I'm trying to make a simple web app that displays a piano-roll
> > > style grid that you can click in to activate or deactivate notes.
> > > And I'm building it off of the MVC classes that I borrowed from
> > > Michael Haufe. But I feel like I'm not really making use of the
> > > Controller part.
> > > [...]
> >
> > I threw together a quick MVC example this morning. Imperfect and a bit verbose but conceptually
> > you might find it useful:
> >
> > <https://codepen.io/mlhaufe/pen/eYGpBzE?editors=0011>
> That is not MVC, indeed that is just nonsensical.
>
> When Dunning-Kruger is a compliment...
>
> *Plonk*
>
> Julio

Your betaness is showing. You're never one to write code just drive-by noise from a lesser mortal. Feel free to actually write some. I even started you off with an example...

Re: What does the Controller really do in MVC?

<852aaaeb-4678-4099-9e82-8a56a863cc48n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17498&group=comp.lang.javascript#17498

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:ac8:7f8b:: with SMTP id z11mr35557431qtj.513.1638745277538;
Sun, 05 Dec 2021 15:01:17 -0800 (PST)
X-Received: by 2002:a9d:74d0:: with SMTP id a16mr25579323otl.237.1638745275837;
Sun, 05 Dec 2021 15:01:15 -0800 (PST)
Path: i2pn2.org!rocksolid2!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Sun, 5 Dec 2021 15:01:15 -0800 (PST)
In-Reply-To: <461c2ce9-cfdd-4338-9cdf-1bf432c2fb45n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=93.41.97.118; posting-account=F3H0JAgAAADcYVukktnHx7hFG5stjWse
NNTP-Posting-Host: 93.41.97.118
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <bea95ac0-2b59-49a7-986b-6726206b7b1cn@googlegroups.com>
<461c2ce9-cfdd-4338-9cdf-1bf432c2fb45n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <852aaaeb-4678-4099-9e82-8a56a863cc48n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: julio@diegidio.name (Julio Di Egidio)
Injection-Date: Sun, 05 Dec 2021 23:01:17 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 38
 by: Julio Di Egidio - Sun, 5 Dec 2021 23:01 UTC

On Sunday, 5 December 2021 at 18:28:04 UTC+1, Michael Haufe (TNO) wrote:
> On Sunday, December 5, 2021 at 4:52:39 AM UTC-6, ju...@diegidio.name wrote:
> > On Saturday, 4 December 2021 at 22:52:53 UTC+1, Michael Haufe (TNO) wrote:
> > > On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luser...@gmail.com wrote:
> > > > I'm trying to make a simple web app that displays a piano-roll
> > > > style grid that you can click in to activate or deactivate notes.
> > > > And I'm building it off of the MVC classes that I borrowed from
> > > > Michael Haufe. But I feel like I'm not really making use of the
> > > > Controller part.
> > > > [...]
> > >
> > > I threw together a quick MVC example this morning. Imperfect and a bit verbose but conceptually
> > > you might find it useful:
> > >
> > > <https://codepen.io/mlhaufe/pen/eYGpBzE?editors=0011>
> > That is not MVC, indeed that is just nonsensical.
> >
> > When Dunning-Kruger is a compliment...
> >
> > *Plonk*
>
> Your betaness is showing. You're never one to write code just drive-by noise from a lesser mortal. Feel free to actually write some. I even started you off with an example...

My "betaness", you piece of shit?? Your code *is* fucking pathetic, but Dunning-Kruger remains a compliment: I *do* have posted so many code already, you retarded piece of lying shit, you and co., including a didactic example of MVC + knockout + timers + what-not, and *you* were not even able to understand what was what...!! You yet another planetary fucking *fraud*.

*Plonk*

Julio

Re: What does the Controller really do in MVC?

<1897894.usQuhbGJ8B@PointedEars.de>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17499&group=comp.lang.javascript#17499

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!aioe.org!news.mb-net.net!open-news-network.org!.POSTED.178.197.209.140!not-for-mail
From: PointedEars@web.de (Thomas 'PointedEars' Lahn)
Newsgroups: comp.lang.javascript
Subject: Re: What does the Controller really do in MVC?
Date: Mon, 06 Dec 2021 01:11:12 +0100
Organization: PointedEars Software (PES)
Lines: 10
Message-ID: <1897894.usQuhbGJ8B@PointedEars.de>
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com> <f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <bea95ac0-2b59-49a7-986b-6726206b7b1cn@googlegroups.com> <461c2ce9-cfdd-4338-9cdf-1bf432c2fb45n@googlegroups.com>
Reply-To: Thomas 'PointedEars' Lahn <cljs@PointedEars.de>
Mime-Version: 1.0
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 8Bit
Injection-Info: gwaiyur.mb-net.net; posting-host="178.197.209.140";
logging-data="3268388"; mail-complaints-to="abuse@open-news-network.org"
User-Agent: KNode/4.14.10
Cancel-Lock: sha1:zEQXJsxPeqWW5sLSWzGu/s5gMsU=
X-User-ID: U2FsdGVkX19irnE2xqo9bCNAd30qBXwRXD/OFbmMcKyqKxzET+2uwQ==
X-Face: %i>XG-yXR'\"2P/C_aO%~;2o~?g0pPKmbOw^=NT`tprDEf++D.m7"}HW6.#=U:?2GGctkL,f89@H46O$ASoW&?s}.k+&.<b';Md8`dH6iqhT)6C^.Px|[=M@7=Ik[_w<%n1Up"LPQNu2m8|L!/3iby{-]A+#YE}Kl{Cw$\U!kD%K}\2jz"QQP6Uqr],./"?;=4v
Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEXTxa4RFk5dUWANED8PFEfy7+MGBiW+n3ZNF/QuAAACaElEQVQ4jVXUwVOcMBQG8Dc7Rc4PUntdWV2uxjDpGaGeozOp1woar4jd5t/v9wLstMwsA/ntlxdCAgUc1hjTc9/JCZfGoo3wG3HdmdAWrIJRHe7GM/TmpY5VFefuVcAkkPbLIaN8rmPmjloyZxgyR3GuJ4K0AGtJ2htz8o7yqikm759fldQXaMpbDzjKAG+8v+AugVTOPO5DOjLvGtUYQwh0CPjnVMyGd+8/GfUB5nLKJDD2aLDh5HYyMDJGDwQIo2ZmZcKbowNmAdB/AzyFhrmF2MHRb0QJJfaAnwGB6orZhoykLzJtGwF/xpYxI1dswomiUj3gTuAIqCn/4C7cULwGNBtwMTk3Y4LfKB5YUaOKBKYtpplm7u0vip8tU1NWWyI/7XdcSuIDoMt6rVHMWT0DbjHPGqDqZVSa6zleLcUTcIKLoMv3ueJluALtAo9B302zPPlrtiVScRdCjXvVh3e3JpYa/jjkuC9N+LrBMlz/eAN4eQijX2EdLo6c5tGGHwLyHFtXk89dDGHwCVhG9T0S/j55AhRZgkMCmUQXJ49TnS1wnQDvw0eAh9ICeMmEFbCnPMFzjAvsWoEWEFdYEx+S0MoUZ1gT1wId8+AF3Bl2OoEu906AUHx5VLw/gXYg/x84loOah/2UYNrgiwSwGO7RfUzVBbx/kgpckumGOi6QirtD6gkLTitbnxNol47S2jVc2vsN5kPqaAHT8uUdAJM4v/DanjYOwmUjWznGfwB7sGtAtor5BgofDuzaRj4kSQAqDakTsKORa3Q3xKi3gE1fhl71KRMqrdZ2AWNNg/YOhQyrVBnb+i+nEg4bsDA+egAAAABJRU5ErkJggg==
 by: Thomas 'Pointed - Mon, 6 Dec 2021 00:11 UTC

Michael Haufe (TNO) wrote:

> Your betaness is showing. […]

:-D

--
PointedEars
FAQ: <http://PointedEars.de/faq> | <http://PointedEars.de/es-matrix>
<https://github.com/PointedEars> | <http://PointedEars.de/wsvn/>
Twitter: @PointedEars2 | Please do not cc me./Bitte keine Kopien per E-Mail.

Re: What does the Controller really do in MVC?

<0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17500&group=comp.lang.javascript#17500

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:ac8:5c50:: with SMTP id j16mr36969808qtj.255.1638752961879;
Sun, 05 Dec 2021 17:09:21 -0800 (PST)
X-Received: by 2002:a05:6808:53:: with SMTP id v19mr21173703oic.8.1638752960149;
Sun, 05 Dec 2021 17:09:20 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Sun, 5 Dec 2021 17:09:19 -0800 (PST)
In-Reply-To: <f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=97.87.183.68; posting-account=G1KGwgkAAAAyw4z0LxHH0fja6wAbo7Cz
NNTP-Posting-Host: 97.87.183.68
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com> <f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: luser.droog@gmail.com (luserdroog)
Injection-Date: Mon, 06 Dec 2021 01:09:21 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 19
 by: luserdroog - Mon, 6 Dec 2021 01:09 UTC

On Saturday, December 4, 2021 at 3:52:53 PM UTC-6, Michael Haufe (TNO) wrote:
> On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luser...@gmail.com wrote:
> > I'm trying to make a simple web app that displays a piano-roll
> > style grid that you can click in to activate or deactivate notes.
> > And I'm building it off of the MVC classes that I borrowed from
> > Michael Haufe. But I feel like I'm not really making use of the
> > Controller part.
> > [...]
>
> I threw together a quick MVC example this morning. Imperfect and a bit verbose but conceptually
> you might find it useful:
>
> <https://codepen.io/mlhaufe/pen/eYGpBzE?editors=0011>

Very cool. Thanks. It seems that my problem is not applying MVC per se, but applying
Object Orientation more generally. But my big take-away is that the app itself *is* the
controller, or more perspicuously an instance of a subclass of a controller.

That both answers my question and sheds light on my X/Y problem to boot.
Nice one. Thanks again.

Re: What does the Controller really do in MVC?

<623ccbed-8b64-4279-b362-b8c29fa467c3n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17501&group=comp.lang.javascript#17501

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:ac8:5bca:: with SMTP id b10mr37887396qtb.170.1638777218418;
Sun, 05 Dec 2021 23:53:38 -0800 (PST)
X-Received: by 2002:a05:6808:218b:: with SMTP id be11mr23324481oib.80.1638777218174;
Sun, 05 Dec 2021 23:53:38 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Sun, 5 Dec 2021 23:53:37 -0800 (PST)
In-Reply-To: <1897894.usQuhbGJ8B@PointedEars.de>
Injection-Info: google-groups.googlegroups.com; posting-host=93.41.97.118; posting-account=F3H0JAgAAADcYVukktnHx7hFG5stjWse
NNTP-Posting-Host: 93.41.97.118
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <bea95ac0-2b59-49a7-986b-6726206b7b1cn@googlegroups.com>
<461c2ce9-cfdd-4338-9cdf-1bf432c2fb45n@googlegroups.com> <1897894.usQuhbGJ8B@PointedEars.de>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <623ccbed-8b64-4279-b362-b8c29fa467c3n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: julio@diegidio.name (Julio Di Egidio)
Injection-Date: Mon, 06 Dec 2021 07:53:38 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 22
 by: Julio Di Egidio - Mon, 6 Dec 2021 07:53 UTC

On Monday, 6 December 2021 at 01:11:24 UTC+1, Thomas 'PointedEars' Lahn wrote:
> Michael Haufe (TNO) wrote:
>
> > Your betaness is showing. […]
>
> :-D
>
> --
> PointedEars
> FAQ: <http://PointedEars.de/faq> | <http://PointedEars.de/es-matrix>
> <https://github.com/PointedEars> | <http://PointedEars.de/wsvn/>
> Twitter: @PointedEars2 | Please do not cc me./Bitte keine Kopien per E-Mail.

I do not have it with your patent mental retardedness, I have it with your lack of any good faith.

Bunch of retarded cunts, parasites and polluters of all ponds. ESAD.

*Plonk*

Julio

Re: What does the Controller really do in MVC?

<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17502&group=comp.lang.javascript#17502

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:6214:260c:: with SMTP id gu12mr35579740qvb.87.1638777308731;
Sun, 05 Dec 2021 23:55:08 -0800 (PST)
X-Received: by 2002:a4a:eb08:: with SMTP id f8mr21458809ooj.43.1638777308516;
Sun, 05 Dec 2021 23:55:08 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Sun, 5 Dec 2021 23:55:08 -0800 (PST)
In-Reply-To: <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=93.41.97.118; posting-account=F3H0JAgAAADcYVukktnHx7hFG5stjWse
NNTP-Posting-Host: 93.41.97.118
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: julio@diegidio.name (Julio Di Egidio)
Injection-Date: Mon, 06 Dec 2021 07:55:08 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 27
 by: Julio Di Egidio - Mon, 6 Dec 2021 07:55 UTC

On Monday, 6 December 2021 at 02:09:26 UTC+1, luser...@gmail.com wrote:
> On Saturday, December 4, 2021 at 3:52:53 PM UTC-6, Michael Haufe (TNO) wrote:
> > On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luser...@gmail.com wrote:
> > > I'm trying to make a simple web app that displays a piano-roll
> > > style grid that you can click in to activate or deactivate notes.
> > > And I'm building it off of the MVC classes that I borrowed from
> > > Michael Haufe. But I feel like I'm not really making use of the
> > > Controller part.
> > > [...]
> >
> > I threw together a quick MVC example this morning. Imperfect and a bit verbose but conceptually
> > you might find it useful:
> >
> > <https://codepen.io/mlhaufe/pen/eYGpBzE?editors=0011>
> Very cool. Thanks. It seems that my problem is not applying MVC per se, but applying
> Object Orientation more generally. But my big take-away is that the app itself *is* the
> controller, or more perspicuously an instance of a subclass of a controller.
>
> That both answers my question and sheds light on my X/Y problem to boot.
> Nice one. Thanks again.

It's the usual piece of crap code and compendium of all one should NOT do.

You spamming pieces of shit. ESAD, both of you!

*Plonk*

Julio

Re: What does the Controller really do in MVC?

<8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17503&group=comp.lang.javascript#17503

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:622a:389:: with SMTP id j9mr39216620qtx.504.1638785067549;
Mon, 06 Dec 2021 02:04:27 -0800 (PST)
X-Received: by 2002:a4a:d9c8:: with SMTP id l8mr21562642oou.81.1638785067284;
Mon, 06 Dec 2021 02:04:27 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Mon, 6 Dec 2021 02:04:27 -0800 (PST)
In-Reply-To: <f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Mon, 06 Dec 2021 10:04:27 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 49
 by: Jonas Thörnvall - Mon, 6 Dec 2021 10:04 UTC

måndag 6 december 2021 kl. 08:55:14 UTC+1 skrev ju...@diegidio.name:
> On Monday, 6 December 2021 at 02:09:26 UTC+1, luser...@gmail.com wrote:
> > On Saturday, December 4, 2021 at 3:52:53 PM UTC-6, Michael Haufe (TNO) wrote:
> > > On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luser...@gmail.com wrote:
> > > > I'm trying to make a simple web app that displays a piano-roll
> > > > style grid that you can click in to activate or deactivate notes.
> > > > And I'm building it off of the MVC classes that I borrowed from
> > > > Michael Haufe. But I feel like I'm not really making use of the
> > > > Controller part.
> > > > [...]
> > >
> > > I threw together a quick MVC example this morning. Imperfect and a bit verbose but conceptually
> > > you might find it useful:
> > >
> > > <https://codepen.io/mlhaufe/pen/eYGpBzE?editors=0011>
> > Very cool. Thanks. It seems that my problem is not applying MVC per se, but applying
> > Object Orientation more generally. But my big take-away is that the app itself *is* the
> > controller, or more perspicuously an instance of a subclass of a controller.
> >
> > That both answers my question and sheds light on my X/Y problem to boot..
> > Nice one. Thanks again.
> It's the usual piece of crap code and compendium of all one should NOT do..
>
> You spamming pieces of shit. ESAD, both of you!
>
> *Plonk*
>
> Julio
Your just so anal Julio i think the programmer paradigm have eaten you. You can do things not by the book and still get results.
This is a 50$ soundcanvas SC-7 one of Rolands first, played on an old Tascam FW1884 device.

A song played up with my vanilla javascript sequenser through the gear i mention above 200$ total, it ought to sound shit but it sounds lovely, because even i know my programming skills really not there i put my effort where it matter.
I would say the recording abilities match the playup, if not too aggresively hit with input data.
https://www.facebook.com/jonas.thornvall/videos/886147958755444

Re: What does the Controller really do in MVC?

<6b74b2cc-0f9e-4efe-80a0-d7abb4dc9135n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17504&group=comp.lang.javascript#17504

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:620a:1253:: with SMTP id a19mr31464476qkl.293.1638785335195;
Mon, 06 Dec 2021 02:08:55 -0800 (PST)
X-Received: by 2002:a9d:2486:: with SMTP id z6mr29346092ota.210.1638785334965;
Mon, 06 Dec 2021 02:08:54 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Mon, 6 Dec 2021 02:08:54 -0800 (PST)
In-Reply-To: <f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <6b74b2cc-0f9e-4efe-80a0-d7abb4dc9135n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Mon, 06 Dec 2021 10:08:55 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 38
 by: Jonas Thörnvall - Mon, 6 Dec 2021 10:08 UTC

måndag 6 december 2021 kl. 08:55:14 UTC+1 skrev ju...@diegidio.name:
> On Monday, 6 December 2021 at 02:09:26 UTC+1, luser...@gmail.com wrote:
> > On Saturday, December 4, 2021 at 3:52:53 PM UTC-6, Michael Haufe (TNO) wrote:
> > > On Thursday, December 2, 2021 at 8:24:09 PM UTC-6, luser...@gmail.com wrote:
> > > > I'm trying to make a simple web app that displays a piano-roll
> > > > style grid that you can click in to activate or deactivate notes.
> > > > And I'm building it off of the MVC classes that I borrowed from
> > > > Michael Haufe. But I feel like I'm not really making use of the
> > > > Controller part.
> > > > [...]
> > >
> > > I threw together a quick MVC example this morning. Imperfect and a bit verbose but conceptually
> > > you might find it useful:
> > >
> > > <https://codepen.io/mlhaufe/pen/eYGpBzE?editors=0011>
> > Very cool. Thanks. It seems that my problem is not applying MVC per se, but applying
> > Object Orientation more generally. But my big take-away is that the app itself *is* the
> > controller, or more perspicuously an instance of a subclass of a controller.
> >
> > That both answers my question and sheds light on my X/Y problem to boot..
> > Nice one. Thanks again.
> It's the usual piece of crap code and compendium of all one should NOT do..
>
> You spamming pieces of shit. ESAD, both of you!
>
> *Plonk*
>
> Julio
https://jtmidi.000webhostapp.com/

Re: What does the Controller really do in MVC?

<37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17507&group=comp.lang.javascript#17507

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:6214:2427:: with SMTP id gy7mr45283742qvb.38.1638886229170;
Tue, 07 Dec 2021 06:10:29 -0800 (PST)
X-Received: by 2002:a05:6830:1008:: with SMTP id a8mr35984092otp.373.1638886228583;
Tue, 07 Dec 2021 06:10:28 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Tue, 7 Dec 2021 06:10:28 -0800 (PST)
In-Reply-To: <8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=93.41.98.246; posting-account=F3H0JAgAAADcYVukktnHx7hFG5stjWse
NNTP-Posting-Host: 93.41.98.246
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com> <8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: julio@diegidio.name (Julio Di Egidio)
Injection-Date: Tue, 07 Dec 2021 14:10:29 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 18
 by: Julio Di Egidio - Tue, 7 Dec 2021 14:10 UTC

On Monday, 6 December 2021 at 11:04:31 UTC+1, jonas.t...@gmail.com wrote:

> Your just so anal Julio i think the programmer paradigm have eaten you.

You asshole(s) have just got no clue what *programming* even means.

So let me give you a kick-start: there is no such thing as a "programming
paradigm", but there is such essential thing as a *programming discipline*.
An engineering discipline, to be specific.

> You can do things not by the book and still get results.

Meanwhile an entire and truly critical industry gone down the drain...

You bloody morons.

(HTH.)

Julio

OT: behaviour (was: Re: What does the Controller really do in MVC?)

<j19ninFp10dU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17508&group=comp.lang.javascript#17508

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: usenet@arnowelzel.de (Arno Welzel)
Newsgroups: comp.lang.javascript
Subject: OT: behaviour (was: Re: What does the Controller really do in MVC?)
Date: Tue, 7 Dec 2021 19:30:48 +0100
Lines: 27
Message-ID: <j19ninFp10dU1@mid.individual.net>
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
<bea95ac0-2b59-49a7-986b-6726206b7b1cn@googlegroups.com>
<461c2ce9-cfdd-4338-9cdf-1bf432c2fb45n@googlegroups.com>
<852aaaeb-4678-4099-9e82-8a56a863cc48n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Trace: individual.net OxUNOEa251WUUtLgGGBpEQgnsPNvnKD/hxSm3VGhSawrlzPBT6
Cancel-Lock: sha1:xn5URB01WY4yVph4CRq3M+tYnxE=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Betterbird/91.3.2
Content-Language: en-US
In-Reply-To: <852aaaeb-4678-4099-9e82-8a56a863cc48n@googlegroups.com>
 by: Arno Welzel - Tue, 7 Dec 2021 18:30 UTC

Julio Di Egidio:

[...]
> My "betaness", you piece of shit?? Your code *is* fucking pathetic,
> but Dunning-Kruger remains a compliment: I *do* have posted so many
> code already, you retarded piece of lying shit, you and co.,
> including a didactic example of MVC + knockout + timers + what-not,
> and *you* were not even able to understand what was what...!! You
> yet another planetary fucking *fraud*.
>
> *Plonk*

1) You don't know what "Plonk" means - otherwise you would not even have
read the post which you replied to.

To "plonk" someone means to add the sender to a killfile to ignore all
future postings. Obviously you don't even know what a killfile is. You
just write "*Plonk*" but still read everything someone writes.

2) What exactly do you think to achiev with calling someing "piece of
shit", "piece of lyging shit", "another planetary fraud" etc.?

--
Arno Welzel
https://arnowelzel.de

OT: bots posting here? (was: Re: What does the Controller really do in MVC?)

<j19nlrFp10dU2@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17509&group=comp.lang.javascript#17509

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: usenet@arnowelzel.de (Arno Welzel)
Newsgroups: comp.lang.javascript
Subject: OT: bots posting here? (was: Re: What does the Controller really do
in MVC?)
Date: Tue, 7 Dec 2021 19:32:28 +0100
Lines: 18
Message-ID: <j19nlrFp10dU2@mid.individual.net>
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
<0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Trace: individual.net f/NoMUu2ZfsRobE5SAUeFwYDRy60R4FHaeuBXtqMk60asrYl4A
Cancel-Lock: sha1:+eSjVlsHHZ4yAqV4CHD5Ac/5IDs=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Betterbird/91.3.2
Content-Language: en-US
In-Reply-To: <f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
 by: Arno Welzel - Tue, 7 Dec 2021 18:32 UTC

Julio Di Egidio:

[...]
> It's the usual piece of crap code and compendium of all one should NOT do.
>
> You spamming pieces of shit. ESAD, both of you!
>
> *Plonk*

ROTFLMAO

Is this a bot? I can't believe that any sane real person ever acts like
this.

--
Arno Welzel
https://arnowelzel.de

Re: What does the Controller really do in MVC?

<j19nscFp2llU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17510&group=comp.lang.javascript#17510

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: usenet@arnowelzel.de (Arno Welzel)
Newsgroups: comp.lang.javascript
Subject: Re: What does the Controller really do in MVC?
Date: Tue, 7 Dec 2021 19:35:57 +0100
Lines: 27
Message-ID: <j19nscFp2llU1@mid.individual.net>
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
<0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
<8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
<37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Trace: individual.net Ju0FQrnAivv/IoEdXtkt1AXPljs2/vtdolocjAJ25KQCedFHaY
Cancel-Lock: sha1:dI/U40pxUqRgFIeWzCWS/Z66Yhw=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Betterbird/91.3.2
Content-Language: en-US
In-Reply-To: <37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
 by: Arno Welzel - Tue, 7 Dec 2021 18:35 UTC

Julio Di Egidio:

> On Monday, 6 December 2021 at 11:04:31 UTC+1, jonas.t...@gmail.com wrote:
>
>> Your just so anal Julio i think the programmer paradigm have eaten you.
>
> You asshole(s) have just got no clue what *programming* even means.

And you have no clue how to communicate without trying to insult people
all the time. Do you have a tourette syndrome?

> So let me give you a kick-start: there is no such thing as a "programming
> paradigm", but there is such essential thing as a *programming discipline*.

There is a programming paradigm, maybe just not in your world:

<http://people.cs.aau.dk/~normark/prog3-03/html/notes/paradigms_themes-paradigm-overview-section.html>

<https://books.google.de/books?id=_bmyEnUnfTsC&redir_esc=y>

<https://www.info.ucl.ac.be/~pvr/VanRoyChapter.pdf>

--
Arno Welzel
https://arnowelzel.de

Re: What does the Controller really do in MVC?

<2211cd7e-3390-4b7d-9efb-fb2329728809n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17511&group=comp.lang.javascript#17511

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:622a:180c:: with SMTP id t12mr1362468qtc.507.1638902578572; Tue, 07 Dec 2021 10:42:58 -0800 (PST)
X-Received: by 2002:a9d:4f0b:: with SMTP id d11mr36882068otl.227.1638902578326; Tue, 07 Dec 2021 10:42:58 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!feeder1.feed.usenet.farm!feed.usenet.farm!tr3.eu1.usenetexpress.com!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Tue, 7 Dec 2021 10:42:58 -0800 (PST)
In-Reply-To: <37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com> <f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com> <f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com> <8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com> <37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <2211cd7e-3390-4b7d-9efb-fb2329728809n@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Tue, 07 Dec 2021 18:42:58 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 20
 by: Jonas Thörnvall - Tue, 7 Dec 2021 18:42 UTC

tisdag 7 december 2021 kl. 15:10:35 UTC+1 skrev ju...@diegidio.name:
> On Monday, 6 December 2021 at 11:04:31 UTC+1, jonas.t...@gmail.com wrote:
>
> > Your just so anal Julio i think the programmer paradigm have eaten you.
> You asshole(s) have just got no clue what *programming* even means.
>
> So let me give you a kick-start: there is no such thing as a "programming
> paradigm", but there is such essential thing as a *programming discipline*.
> An engineering discipline, to be specific.
> > You can do things not by the book and still get results.
> Meanwhile an entire and truly critical industry gone down the drain...
>
> You bloody morons.
>
> (HTH.)
>
> Julio
Have you ever noticed Julio its never the anal obsessed disciplined that come up with the good ideas, they are just caretakers of ideas, they love to drivel in documentation.
They are just the janitors of ideas LoL.

That said obviously both parties needed, to get anything done.

Re: What does the Controller really do in MVC?

<49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17513&group=comp.lang.javascript#17513

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:620a:45aa:: with SMTP id bp42mr4758115qkb.561.1638950024160; Tue, 07 Dec 2021 23:53:44 -0800 (PST)
X-Received: by 2002:aca:a897:: with SMTP id r145mr9824334oie.136.1638950023880; Tue, 07 Dec 2021 23:53:43 -0800 (PST)
Path: i2pn2.org!i2pn.org!news.swapon.de!news.uzoreto.com!tr2.eu1.usenetexpress.com!feeder.usenetexpress.com!tr3.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Tue, 7 Dec 2021 23:53:43 -0800 (PST)
In-Reply-To: <j19nscFp2llU1@mid.individual.net>
Injection-Info: google-groups.googlegroups.com; posting-host=93.41.98.246; posting-account=F3H0JAgAAADcYVukktnHx7hFG5stjWse
NNTP-Posting-Host: 93.41.98.246
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com> <f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com> <f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com> <8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com> <37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com> <j19nscFp2llU1@mid.individual.net>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: julio@diegidio.name (Julio Di Egidio)
Injection-Date: Wed, 08 Dec 2021 07:53:44 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 31
 by: Julio Di Egidio - Wed, 8 Dec 2021 07:53 UTC

On Tuesday, 7 December 2021 at 19:36:05 UTC+1, Arno Welzel wrote:
> Julio Di Egidio:
> > On Monday, 6 December 2021 at 11:04:31 UTC+1, jonas.t...@gmail.com wrote:
> >
> >> Your just so anal Julio i think the programmer paradigm have eaten you.
> >
> > You asshole(s) have just got no clue what *programming* even means.
> And you have no clue how to communicate without trying to insult people
> all the time. Do you have a tourette syndrome?
> > So let me give you a kick-start: there is no such thing as a "programming
> > paradigm", but there is such essential thing as a *programming discipline*.
> There is a programming paradigm, maybe just not in your world:
>
> <http://people.cs.aau.dk/~normark/prog3-03/html/notes/paradigms_themes-paradigm-overview-section.html>
>
> <https://books.google.de/books?id=_bmyEnUnfTsC&redir_esc=y>
>
> <https://www.info.ucl.ac.be/~pvr/VanRoyChapter.pdf>

Another resident retarded cunt retorts with some links... but, can you even read English? As I have *repeatedly* pointed out around here, the whole arena has been hijacked and flooded with just FRAUDULENT BULLSHIT since the mid '90s.

But, even that aside, *you* cannot discern, but those articles you together with the whole bandwagon take for gospel, are utterly fucking WRONG on the WHOLE line!! Just you don't know shit and will only trust your authorities...

And, even aside that, you fucking retarded cunt: one thing is "coding paradigms" a la functional vs imperative, another is "*the* programming paradigm" a la Jonas and a la what a bunch of fucking retarded polluters of all ponds you are.

And even said that, what just a *sucker* in fact you are, by the way...

Just fuck off you and this pathetic rotten brigade. (EOD.)

*Plonk*

Julio

Re: What does the Controller really do in MVC?

<j1b8idF39t9U1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17514&group=comp.lang.javascript#17514

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: usenet@arnowelzel.de (Arno Welzel)
Newsgroups: comp.lang.javascript
Subject: Re: What does the Controller really do in MVC?
Date: Wed, 8 Dec 2021 09:26:53 +0100
Lines: 12
Message-ID: <j1b8idF39t9U1@mid.individual.net>
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
<0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
<8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
<37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
<j19nscFp2llU1@mid.individual.net>
<49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Trace: individual.net iBAy1/5AqwMu685a8JSongjAbsrm5t+7HscoMtdQUjWYaEet9o
Cancel-Lock: sha1:J0uvpyiilDs9EiCg4peXZIIKJSg=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Betterbird/91.3.2
Content-Language: en-US
In-Reply-To: <49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com>
 by: Arno Welzel - Wed, 8 Dec 2021 08:26 UTC

Julio Di Egidio:

> Just fuck off you and this pathetic rotten brigade. (EOD.)
>
> *Plonk*

As usual.

--
Arno Welzel
https://arnowelzel.de

Re: What does the Controller really do in MVC?

<ac9e8775-d89d-49ed-b358-43175dbb24fbn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17515&group=comp.lang.javascript#17515

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:622a:453:: with SMTP id o19mr5990733qtx.648.1638952616946;
Wed, 08 Dec 2021 00:36:56 -0800 (PST)
X-Received: by 2002:a9d:805:: with SMTP id 5mr39620906oty.383.1638952616742;
Wed, 08 Dec 2021 00:36:56 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!2.eu.feeder.erje.net!feeder.erje.net!news.uzoreto.com!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Wed, 8 Dec 2021 00:36:56 -0800 (PST)
In-Reply-To: <j1b8idF39t9U1@mid.individual.net>
Injection-Info: google-groups.googlegroups.com; posting-host=93.41.98.246; posting-account=F3H0JAgAAADcYVukktnHx7hFG5stjWse
NNTP-Posting-Host: 93.41.98.246
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com> <0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com> <8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
<37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com> <j19nscFp2llU1@mid.individual.net>
<49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com> <j1b8idF39t9U1@mid.individual.net>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <ac9e8775-d89d-49ed-b358-43175dbb24fbn@googlegroups.com>
Subject: Re: What does the Controller really do in MVC?
From: julio@diegidio.name (Julio Di Egidio)
Injection-Date: Wed, 08 Dec 2021 08:36:56 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1807
 by: Julio Di Egidio - Wed, 8 Dec 2021 08:36 UTC

On Wednesday, 8 December 2021 at 09:27:01 UTC+1, Arno Welzel wrote:
> Julio Di Egidio:
>
> > Just fuck off you and this pathetic rotten brigade. (EOD.)
> >
> > *Plonk*
>
> As usual.

As usual you just cannot even read.

How fucking *pathetic*.

*Plonk*

Julio

Re: What does the Controller really do in MVC?

<sor2i0$mju$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17516&group=comp.lang.javascript#17516

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: niam@jghnorth.org.uk.invalid (John Harris)
Newsgroups: comp.lang.javascript
Subject: Re: What does the Controller really do in MVC?
Date: Wed, 8 Dec 2021 19:54:39 +0000
Organization: A noiseless patient Spider
Lines: 11
Message-ID: <sor2i0$mju$1@dont-email.me>
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
<0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
<8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
<37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
<j19nscFp2llU1@mid.individual.net>
<49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com>
Reply-To: jgharris@ic4life.net
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 8 Dec 2021 19:54:40 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="6bd3a038d2069e3995c0d0f990096a39";
logging-data="23166"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX185MGgiBEJgq62hYr1NFAifzvc9gDeN0oM="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Cancel-Lock: sha1:On89W2JspcSloKLFuqCXoHPbVjM=
In-Reply-To: <49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com>
Content-Language: en-US
 by: John Harris - Wed, 8 Dec 2021 19:54 UTC

On 08/12/2021 07:53, Julio Di Egidio wrote:

<snip>
> As I have *repeatedly* pointed out around here, the whole arena has been hijacked and flooded with just FRAUDULENT BULLSHIT since the mid '90s.
<snip>
And you have *repeatedly* failed to say it clearly enough for us to work
out why you say that.

Hint : Curses aren't clear enough.

John

Re: What does the Controller really do in MVC?

<sor7rc$rru$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17518&group=comp.lang.javascript#17518

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: julio@diegidio.name (Julio Di Egidio)
Newsgroups: comp.lang.javascript
Subject: Re: What does the Controller really do in MVC?
Date: Wed, 8 Dec 2021 22:24:59 +0100
Organization: A noiseless patient Spider
Lines: 26
Message-ID: <sor7rc$rru$1@dont-email.me>
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
<0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
<8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
<37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
<j19nscFp2llU1@mid.individual.net>
<49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com>
<sor2i0$mju$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Wed, 8 Dec 2021 21:25:00 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="5d937f58728870b3499b1fd0c1ec941a";
logging-data="28542"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/RoGJhf6WWzIubfHEN6/LyklRPk1AW8Bs="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Cancel-Lock: sha1:591m5H5W2tJ7wEdrutGrbawDctc=
In-Reply-To: <sor2i0$mju$1@dont-email.me>
Content-Language: en-GB
 by: Julio Di Egidio - Wed, 8 Dec 2021 21:24 UTC

On 08/12/2021 20:54, John Harris wrote:
> On 08/12/2021 07:53, Julio Di Egidio wrote:
>
>   <snip>
>> As I have *repeatedly* pointed out around here, the whole arena has
>> been hijacked and flooded with just FRAUDULENT BULLSHIT since the mid
>> '90s.
>   <snip>
> And you have *repeatedly* failed to say it clearly enough for us to work
> out why you say that.
>
> Hint : Curses aren't clear enough.

Learn to use question marks, you bunch of pieces of lying shit.

Indeed, be reassure, you stupid lying nazi retarded cunts: I am indeed
gonna call everybody by their fucking real name from this point on with
no discounts made, until either you get a grip or you get at least as
livid as the fucking poison you keep spilling makes everything that
breathes.

You fucking *retarded cunts*, ESAD.

*Plonk*

Julio

Re: What does the Controller really do in MVC?

<sosihe$qen$2@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17522&group=comp.lang.javascript#17522

  copy link   Newsgroups: comp.lang.javascript
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: tnp@invalid.invalid (The Natural Philosopher)
Newsgroups: comp.lang.javascript
Subject: Re: What does the Controller really do in MVC?
Date: Thu, 9 Dec 2021 09:33:34 +0000
Organization: A little, after lunch
Lines: 37
Message-ID: <sosihe$qen$2@dont-email.me>
References: <dad148ea-607b-4c76-b9d0-88d81632f1c0n@googlegroups.com>
<f3d4e68a-222a-413c-a690-4325a5764e20n@googlegroups.com>
<0e774c04-ece7-47d3-a642-486c3a0060d8n@googlegroups.com>
<f44d4c53-139c-459f-a243-0e936db6437bn@googlegroups.com>
<8ebeb8cb-92ee-47b3-b524-dbc00aa829bfn@googlegroups.com>
<37fa838e-7432-4474-8c9f-4da9486725f7n@googlegroups.com>
<j19nscFp2llU1@mid.individual.net>
<49346ba5-030e-4624-95ef-4d0e427aca8en@googlegroups.com>
<sor2i0$mju$1@dont-email.me> <sor7rc$rru$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 9 Dec 2021 09:33:34 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="99c0448d015d4ff524005e24d033f77b";
logging-data="27095"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18X07Du3WT1xh02NMTUSg2ypiZajK4QDt0="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101
Thunderbird/78.14.0
Cancel-Lock: sha1:OruBGTVn6Eq4BAp2cftymmqaJOE=
In-Reply-To: <sor7rc$rru$1@dont-email.me>
Content-Language: en-GB
 by: The Natural Philosop - Thu, 9 Dec 2021 09:33 UTC

On 08/12/2021 21:24, Julio Di Egidio wrote:
> On 08/12/2021 20:54, John Harris wrote:
>> On 08/12/2021 07:53, Julio Di Egidio wrote:
>>
>>    <snip>
>>> As I have *repeatedly* pointed out around here, the whole arena has
>>> been hijacked and flooded with just FRAUDULENT BULLSHIT since the mid
>>> '90s.
>>    <snip>
>> And you have *repeatedly* failed to say it clearly enough for us to
>> work out why you say that.
>>
>> Hint : Curses aren't clear enough.
>
> Learn to use question marks, you bunch of pieces of lying shit.
>
> Indeed, be reassure, you stupid lying nazi retarded cunts: I am indeed
> gonna call everybody by their fucking real name from this point on with
> no discounts made, until either you get a grip or you get at least as
> livid as the fucking poison you keep spilling makes everything that
> breathes.
>
> You fucking *retarded cunts*, ESAD.
>
> *Plonk*
>
> Julio
With that amount of anger., perhaps coding is an occupation that you
should eschew in favour of - say - needlepoint, or flower arranging?

--
Religion is regarded by the common people as true, by the wise as
foolish, and by the rulers as useful.

(Seneca the Younger, 65 AD)


devel / comp.lang.javascript / What does the Controller really do in MVC?

Pages:12
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor