Thank you! If you are still on that, I think disallowing backslash is too much as it will make string-as-lookup-table harder. Also the highlighter seems to be a bit off when a code fragment that looks like a HTML tag appears, like `4<a && a<5` will display as `45`.
On the 7-segment counter, maybe I should commentate while my memory is still fresh:
// This script recognizes 17 regions and paints each region according to
// the lookup table, where the following number corresponds to `c`.
//
// |12| 7 | 2|
// +--+-------+--+
// | | | |
// |11| 6 | 1|
// | | | |
// +--+-------+--+
// XX |10| 5 | 0| XX
// +--+-------+--+
// | | | |
// | 9| 4 |-1|
// | | | |
// +--+-------+--+
// | 8| 3 |-2|
//
(abs(x)<5)* // Removes the left and right edge (XX above)
(1-t%1)**.3* // Blinks every time the digit changes, but not too quickly
((c,d)=> // c: region index (see above), d: the current digit
c&1& // Even-numbered region is always blank
~(c+1? // Due to the JS number semantics, at least one segment
// should be encoded outside of the lookup table
// d=4 d=3 d=2 d=1 d=0
// d<5: 0b011010_110000_100000_111110_000100
// d>=5: 0b010000_000000_110110_000001_010001
// d=9 d=8 d=7 d=6 d=5
268656721+(d<5)*180268851
// Read the lookup table; c/2 will be truncated by `>>`
>>d%5*6+c/2
:
d==2 // c==-1 case is handled separately
)
)(
(y>4)-5*(x>2)+(y>0)-(y<0)+5*(x<-2)-(y<-4)+5, // Calculate a region index
t%10|0 // `|0` for `Math.floor`
)
On the 7-segment counter, maybe I should commentate while my memory is still fresh: