Immediately after switching the page, it will work with CSR.
Please reload your browser to see how it works.

Source:https://github.com/SoraKumo001/next-streaming

⬅️ Code Conversion Language (2019)
lmz 3 daysReload
Judging by the name and by these opcodes

https://github.com/emacs-mirror/emacs/blob/7cb77385d38b96377...

it seems to be intended for character set conversion especially JIS.


thih9 3 daysReload
The source code mentioned in the article is well documented and an interesting read too; e.g.:

https://github.com/emacs-mirror/emacs/blob/master/src/ccl.c


usr1106 2 daysReload
I have used Emacs since 1986 or so, daily since 1989 (with smaller breaks while working at companies where it was not available). I had no idea this exists.

Here is my first CCL program.

   (define-ccl-program hw
     '(1
       (loop
        (write r0 [72 101 108 111])
        (r1 += 1)
        (if (r1 == 3) (repeat) ())
        (r0 += 1)
        (if (r0 < 4) (repeat) (break))
        )
       )
       )

   (ccl-execute-on-string
   'hw
   [0 0 0 0 0 0 0 0 1] "")

Tested in *scratch* buffer, worked. Probably not very idiomatic...

uludag 3 daysReload
Interesting. I've been using Emacs for 6 years and have never heard of CCL. I would love to read a book on all the strange and fascinating code that Emacs has accumulated over the years.

usr1106 3 daysReload
Title should say (2019)