User talk:Gerard Schildberger: Difference between revisions

Content added Content deleted
(→‎RC POP.OUT, differences: found the root of the (my) problem.)
Line 798: Line 798:


I just re-checked about the (correct) spelling of the computer programming language   '''Déjà Vu''',   and it is indeed misspelled almost everywhere on Rosetta Code   (as   '''Déjá Vu''').   Should someone with the proper administrative authority do a global change to reflect the proper spelling?   -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 12:03, 4 December 2017 (UTC)
I just re-checked about the (correct) spelling of the computer programming language   '''Déjà Vu''',   and it is indeed misspelled almost everywhere on Rosetta Code   (as   '''Déjá Vu''').   Should someone with the proper administrative authority do a global change to reflect the proper spelling?   -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 12:03, 4 December 2017 (UTC)

:Are you sure? I don't see any instance in [http://www.rosettacode.org/mw/index.php?title=Special:Categories&limit=5000 Special:Categories&limit=5000] (caution: large page). And since the major contributor for this language on RC seems to be its author (see [http://rosettacode.org/mw/index.php?title=Special:Contributions/Gvx&offset=&limit=500&target=Gvx this] and compare to [https://github.com/gvx/deja this]), I guess he takes care to spell it correctly. [[User:Eoraptor|Eoraptor]] ([[User talk:Eoraptor|talk]]) 12:05, 8 December 2017 (UTC)
:Are you sure? I don't see any instance in [http://www.rosettacode.org/mw/index.php?title=Special:Categories&limit=5000 Special:Categories&limit=5000] (caution: large page). And since the major contributor for this language on RC seems to be its author (see [http://rosettacode.org/mw/index.php?title=Special:Contributions/Gvx&offset=&limit=500&target=Gvx this] and compare to [https://github.com/gvx/deja this]), I guess he takes care to spell it correctly. [[User:Eoraptor|Eoraptor]] ([[User talk:Eoraptor|talk]]) 12:05, 8 December 2017 (UTC)

-----

I finally got to the root of the problem --- it was my misunderstanding/misreading/misinterpreting of the (or a ?) translation of two files that I had downloaded from Rosetta Code.   It finally became clear to me that we were observing the same character as two   ''different''   characters, even though they were the same ··· err, I hope that almost makes sense.   The ASCII files that I was viewing:

RC_POP.LAN Line=919 Col=1 Size=918 Alt=0,0;1

* * * Top of File * * *
------------------------------- 262 line(s) not displayed ----------------------
* Déjà Vu </wiki/Category:D%C3%A9j%C3%A0_Vu>
------------------------------- 655 line(s) not displayed ----------------------
* * * End of File * * *

and

RC_POP.CAT Line=1125 Col=1 Size=4818 Alt=0,0;2

* * * Top of File * * *
------------------------------- 1123 line(s) not displayed ---------------------
* Déjà Vu </wiki/Category:D%C3%A9j%C3%A0_Vu>‏‎ (105 members)
* Déjà Vu/Omit </wiki/Category:D%C3%A9j%C3%A0_Vu/Omit>‏‎ (6 members)
* Déjà Vu Implementations
-------------------------------- 2 line(s) not displayed -----------------------
* Déjà Vu User
-------------------------------- 2 line(s) not displayed -----------------------
* Déjà Vu examples needing attention
-------------------------------- 2 line(s) not displayed -----------------------
* Déjà Vu related
------------------------------- 3683 line(s) not displayed ---------------------


where I was interpreting:

the 1st character D (ASCII) as capital D
the 2nd character(s) ├⌐ (Unicode) as lowercase é
the 3rd character j (ASCII) as lowercase j
the 4th character(s) ├á (Unicode) as lowercase á

You can see where where I made the assumption that &nbsp; <big>'''├á'''</big> &nbsp; was the ASCII character &nbsp; <big>'''á'''</big> &nbsp; &nbsp; &nbsp; (instead of the correct character &nbsp; <big>'''à'''</big>). &nbsp; I'll will correct the translation within my REXX program and also the program's output. &nbsp; (Pardon my French, but that was a bugger to track down). &nbsp; -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 16:55, 10 December 2017 (UTC)