投稿

1月, 2017の投稿を表示しています

Windows 10上のFirefoxのタイトルバーに色が反映されない

イメージ
デフォルトではタイトルバーがグレーになっている これだと統一性がないのでシステム色に合わせる [Tip] Get Colored Titlebar Back in Mozilla Firefox in Windows 10 - AskVG about.support → プロファイルフォルダ: フォルダを開く → chrome\userChrome.css を作成 #main-window[windowtype="navigator:browser"] {     background-color: transparent !important; } .titlebar-button {     background-color: transparent !important;     transition: background-color 0.2s ease; } .titlebar-button > .toolbarbutton-icon {     list-style-image: none; } .titlebar-button:hover {     background-color: rgba(0, 0, 0, 0.15) !important; } #titlebar-close:hover {     background-color: #E81123 !important; } #titlebar-close:hover > .toolbarbutton-icon {     list-style-image: url("chrome://browser/skin/caption-buttons.svg#close-white

LZ77による数列の符号化

メモ書き 3134313134を2進数に 3134313134 1567156567 0 783578283 1 391789141 1 195894570 1 97947285 0 48973642 1 24486821 0 12243410 1 6121705 0 3060852 1 1530426 0 765213 0 382606 1 191303 0 95651 1 47825 1 23912 1 11956 0 5978 0 2989 0 1494 1 747 0 373 1 186 1 93 0 46 1 23 0 11 1 5 1 2 1 1 0 (3134313134)_10 = (10111010110100011101001010101110)_2 LZ77符号化 スライド窓 k=16, 符号化部 m=8, 参照部 k-m=8 i                            1  2  3  4  5  6  7  8  9  10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32                      0 0 0 0 0 0