Neat idea. Hidden within the ReadMe file, someone re-wrote this tree in Wolfram but made it ornamented looking. [0]
Going further, the same author of the latter tree had a post picked by staff titled “Random Snowflake Generator Based on Cellular Automaton.”[1] Another very cool idea for this time of the year.
It is not just kanji. For instance, the 3rd character is ⡸ (a braille character). I suspect what happened is that the author choose the characters needed based entirely on their unicode value, and it just so happened that many of them fell into the kanji region of Unicode[0].
Anyway, what is going on is that each character takes 4 decimal digits to encode its Unicode value.
When you escape it, the characters are replaced by their unicode values expressed in decimal, so the string looks like:
"%u7769%u7468..."
At this point, it uses a regex to change it from being a sequence of 4 hexadecimal digit characters to 2 hexadecimal digit characters, so the string becomes "%77%69%74%68%..."
At this point, it escapes the string. Giving the intended script of
Essentially, what is going on is that the rules state there is a 140 character limit. Most people interperat that as a 140 byte limit, however, in exchange for 48 bytes of overhead, you can actually pack 2 bytes into a character, which gives 184 bytes of usable payload. Which is good for this submission, as the unencoded payload is exactly 184 characters (and 184 bytes).
[0] A quick search says that 4E00-9FFF is CJK (Chinese, Japanese and Korean) Unified Ideographs, and that is not the only Unicode block that seems to be devoted to CJK.
Combined with the fact that that the lower ascii characters are control characters that would't be used in a script, and you end up with almost all CJK characters. If you actually wanted to be entirely CJK, it probably wouldn't be that difficult to fudge the characters around so it fits.
Nice. A spiral with decreasing radius essentially. On a side note, I wonder what configuration/distribution of magnetic force will make a charged particle move like this.
A charged particle moving at an angle to a magnetic field like that found at the ends of a solenoid (increasing field strength) would produce the desired motion.
Suggestion: to make the tree self-similar at the vertex point, use [x, y] = t * [cos, sin] ( k * ln(t) ). The constant k determines the tightness of the spiral winding.
Another way to describe it: the spiral's uphill slope stays constant.
There should be a unicode "sextuple-u" character so you can express "www" in one letter (and five fewer syllables). Think of all the time and bandwidth that would save!
The neat thing is that /r/programming chipped in like a stone soup and improved it. It’s surprising how small tweaks can make a big difference in rendering quality.
Going further, the same author of the latter tree had a post picked by staff titled “Random Snowflake Generator Based on Cellular Automaton.”[1] Another very cool idea for this time of the year.
[0]https://community.wolfram.com/groups/-/m/t/175891
[1]https://community.wolfram.com/groups/-/m/t/235291