You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After analyse using this tool now it is clear that it is worth to switch sequence because 0 and 1 appears as first character of coding first 127 ASCII characters ("most popular"). (1 is usually most popular).
Test how big profit we get using fork of this stat tool
It's not worth doing this (because some codes compres better by one map, other codes by other map) - it's better to focus on task #7 (statistics and dynamic compiler)
After small statistical experimets it looks like for average code after conversion to base4 the most common character is 1,0,2 and less common is 3.
Check this on popular codefiles (like jquery etc.) - if true, then switch numbers representation to
This will cause that in bootstrap we need to add
.replace(/1/g,3)
(because before 0 and 1 have same representation as in jsf) as followsThe text was updated successfully, but these errors were encountered: