Conversation
|
Rather than manually replacing, I suggest using |
|
Thanks! Didn't know about that. Redid the replacement using iconv. |
|
@danielwohlgemuth you have removed about 200 lines from the "cellular_automata_for_physical_modelling.html" file.. |
c6c5951 to
20e8b71
Compare
|
Thanks @yoieh for pointing it out! The commands that I used to convert the files using iconv were these: iconv -f WINDOWS-1252 -t utf-8 papers/papers.html -o papers/papers.html
iconv -f WINDOWS-1252 -t utf-8 papers/trilight/trilight.html -o papers/trilight/trilight.html
iconv -f WINDOWS-1252 -t utf-8 papers/cellular_automata_for_physical_modelling.html -o papers/cellular_automata_for_physical_modelling.html
iconv -f WINDOWS-1252 -t utf-8 papers/gem_imp_filt.html -o papers/gem_imp_filt.html
iconv -f WINDOWS-1252 -t utf-8 papers/gem_vipm_webversion.html -o papers/gem_vipm_webversion.html |
Replaced � with –, “, ”, or ’ as appropriate
I came across your paper "Cellular Automata for Physical Modelling" from Randall's Youtube video
"Programming a New Physics Engine for my Game" in which he mentions it (https://youtu.be/AGnMNor_r-Y?t=378). As can be seen in his video, some characters are rendered as � (Replacement character, https://en.wikipedia.org/wiki/Specials_(Unicode_block). What I did is replace the � character with –, “, ”, or ’ as shown on Github. Strangely, Github shows the correct characters and makes these changes look identical, but when opening the raw format or in a text editor, the � character is visible. This change should make the mentioned paper and a few other more pleasant to read.