in reply to Re: Splitting text into syllables
in thread Splitting text into syllables

OT: using javascript makes the user's computer calculate the score, whereas using Perl (at the backend) makes the backend calculate it, and website owner pays for it. I am glad to see someone placing quality above cost.

edit: of course js can be used at the backend just like anything else, i just assumed it is browser-running js.

Replies are listed 'Best First'.
Re^3: Splitting text into syllables
by Bod (Parson) on Jan 26, 2022 at 16:10 UTC
    i just assumed it is browser-running js

    Yes, I did mean browser Javascript

    The main rationale for trying to use a JS solution is time. When typing, there is a (sometimes significant) time lag between what is typed and the displayed Grade Score due to the AJAX calls. With JS running in the browser, the delay is negligible. A decreased load on the server and network are secondary, but very real, benefits.