• What does the Controller really do in MVC?

    From luserdroog@21:1/5 to All on Thu Dec 2 18:24:05 2021
    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?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From luserdroog@21:1/5 to luserdroog on Thu Dec 2 22:34:09 2021
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Elhwen Dico@21:1/5 to All on Fri Dec 3 14:37:02 2021
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From luserdroog@21:1/5 to Elhwen Dico on Fri Dec 3 19:09:09 2021
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Michael Haufe (TNO)@21:1/5 to luser...@gmail.com on Sat Dec 4 13:52:48 2021
    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>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to All on Sun Dec 5 02:52:34 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Michael Haufe (TNO)@21:1/5 to ju...@diegidio.name on Sun Dec 5 09:27:59 2021
    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...

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to All on Sun Dec 5 15:01:15 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Thomas 'PointedEars' Lahn@21:1/5 to All on Mon Dec 6 01:11:12 2021
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From luserdroog@21:1/5 to All on Sun Dec 5 17:09:19 2021
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to Thomas 'PointedEars' Lahn on Sun Dec 5 23:53:37 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to luser...@gmail.com on Sun Dec 5 23:55:08 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From =?UTF-8?Q?Jonas_Th=C3=B6rnvall?=@21:1/5 to All on Mon Dec 6 02:08:54 2021
    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/

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From =?UTF-8?Q?Jonas_Th=C3=B6rnvall?=@21:1/5 to All on Mon Dec 6 02:04:27 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to jonas.t...@gmail.com on Tue Dec 7 06:10:28 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From =?UTF-8?Q?Jonas_Th=C3=B6rnvall?=@21:1/5 to All on Tue Dec 7 10:42:58 2021
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Arno Welzel@21:1/5 to All on Tue Dec 7 19:30:48 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Arno Welzel@21:1/5 to All on Tue Dec 7 19:35:57 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Arno Welzel@21:1/5 to All on Tue Dec 7 19:32:28 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to Arno Welzel on Tue Dec 7 23:53:43 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to Arno Welzel on Wed Dec 8 00:36:56 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Arno Welzel@21:1/5 to All on Wed Dec 8 09:26:53 2021
    Julio Di Egidio:

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

    *Plonk*

    As usual.


    --
    Arno Welzel
    https://arnowelzel.de

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Harris@21:1/5 to Julio Di Egidio on Wed Dec 8 19:54:39 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to John Harris on Wed Dec 8 22:24:59 2021
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From The Natural Philosopher@21:1/5 to Julio Di Egidio on Thu Dec 9 09:33:34 2021
    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)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From =?UTF-8?Q?Jonas_Th=C3=B6rnvall?=@21:1/5 to All on Thu Dec 9 07:53:30 2021
    torsdag 9 december 2021 kl. 10:33:42 UTC+1 skrev The Natural Philosopher:
    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)
    LoL

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From The Natural Philosopher@21:1/5 to John Harris on Thu Dec 9 19:44:29 2021
    On 09/12/2021 19:41, John Harris wrote:
    On 09/12/2021 09:33, The Natural Philosopher wrote:
    On 08/12/2021 21:24, Julio Di Egidio wrote:

      <snip>
    Julio
    With that amount of anger., perhaps coding is an occupation that you
    should eschew in favour of - say - needlepoint, or flower arranging?

    It's a characteristic of Julio. After talking sensibly for a day or two
    he switches into cursing mode with no information content at all. It's
    rather sad.

      John

    Probably chemical


    --
    The New Left are the people they warned you about.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Harris@21:1/5 to The Natural Philosopher on Thu Dec 9 19:41:59 2021
    On 09/12/2021 09:33, The Natural Philosopher wrote:
    On 08/12/2021 21:24, Julio Di Egidio wrote:

    <snip>
    Julio
    With that amount of anger., perhaps coding is an occupation that you
    should eschew in favour of - say - needlepoint, or flower arranging?

    It's a characteristic of Julio. After talking sensibly for a day or two
    he switches into cursing mode with no information content at all. It's
    rather sad.

    John

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Arno Welzel@21:1/5 to All on Fri Dec 10 11:51:04 2021
    Julio Di Egidio:

    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*

    As usual. You say "*Plonk*" but you don't even know what that means and continue to read all I write.

    Are you sure that you are human and not a bad copy of ELIZA?


    --
    Arno Welzel
    https://arnowelzel.de

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Jan van den Broek@21:1/5 to Arno Welzel on Fri Dec 10 12:07:50 2021
    On 2021-12-10, Arno Welzel <usenet@arnowelzel.de> wrote:

    [Schnipp]

    Are you sure that you are human and not a bad copy of ELIZA?

    ELIZA was fun.
    --
    Jan v/d Broek
    balglaas@dds.nl

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to Jan van den Broek on Fri Dec 10 04:50:05 2021
    On Friday, 10 December 2021 at 13:07:58 UTC+1, Jan van den Broek wrote:
    On 2021-12-10, Arno Welzel <use...@arnowelzel.de> wrote:

    [Schnipp]
    Are you sure that you are human and not a bad copy of ELIZA?

    ELIZA was fun.

    There is fun and fun: the fun you should look for here is simply not the same as the fun you'd e.g. look for at the pub. And learning is *a lot* of fun, when it happens...

    Julio

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Jon Ribbens@21:1/5 to Arno Welzel on Fri Dec 10 12:56:40 2021
    On 2021-12-10, Arno Welzel <usenet@arnowelzel.de> wrote:
    Julio Di Egidio:
    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*

    As usual. You say "*Plonk*" but you don't even know what that means and continue to read all I write.

    Sorry, you're misunderstanding him. When Plonk Julio says "Plonk",
    he is not saying *he* is plonking *you*, he is making the very
    sensible and worthwhile suggestion that *you* plonk *him*.
    It's excellent advice.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to Jon Ribbens on Fri Dec 10 05:06:35 2021
    On Friday, 10 December 2021 at 13:56:48 UTC+1, Jon Ribbens wrote:
    On 2021-12-10, Arno Welzel <use...@arnowelzel.de> wrote:
    Julio Di Egidio:
    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*

    As usual. You say "*Plonk*" but you don't even know what that means and continue to read all I write.
    Sorry, you're misunderstanding him. When Plonk Julio says "Plonk",
    he is not saying *he* is plonking *you*, he is making the very
    sensible and worthwhile suggestion that *you* plonk *him*.
    It's excellent advice.

    That is nearer to the truth than you would guess.

    I have in fact explained several times in the paste to you suckers how I use it, you just won't read...

    *Plonk*

    Julio

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Thomas 'PointedEars' Lahn@21:1/5 to Jon Ribbens on Sat Dec 11 01:54:33 2021
    Jon Ribbens wrote:

    On 2021-12-10, Arno Welzel <usenet@arnowelzel.de> wrote:
    Julio Di Egidio:
    *Plonk*

    As usual. You say "*Plonk*" but you don't even know what that means and
    continue to read all I write.

    Sorry, you're misunderstanding him. When Plonk Julio says "Plonk",
    he is not saying *he* is plonking *you*, he is making the very
    sensible and worthwhile suggestion that *you* plonk *him*.
    It's excellent advice.

    YMMD :-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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Julio Di Egidio@21:1/5 to Thomas 'PointedEars' Lahn on Sat Dec 11 10:09:47 2021
    On 11/12/2021 01:54, Thomas 'PointedEars' Lahn wrote:
    Jon Ribbens wrote:

    On 2021-12-10, Arno Welzel <usenet@arnowelzel.de> wrote:
    Julio Di Egidio:
    *Plonk*

    As usual. You say "*Plonk*" but you don't even know what that means and
    continue to read all I write.

    Sorry, you're misunderstanding him. When Plonk Julio says "Plonk",
    he is not saying *he* is plonking *you*, he is making the very
    sensible and worthwhile suggestion that *you* plonk *him*.
    It's excellent advice.

    YMMD :-D

    Of all the incompetent morons, suckers and plain retarded spamming cunts
    that have hijacked this place, you are by far the most retarded...

    *Troll Alert*

    Julio

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)