Chrome拡張のゴシップサイトブロッカーの内容をエクスポートしたブラックリスト
SayoDevice制御プログラム v2 のUIを日本語に翻訳したプロファイルです。
適用方法は「中国語のプロファイルを上書きする方法」と「ちゃんと日本語として追加する方法(上級者向け)」の2通りあります。
html/assets/i18n/zh.json
の内容を ja.json
へ置き換える
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
char *ddsk[2] = {"ドド", "スコ"}; | |
uint16_t history = 0xFFFF; | |
int main() { | |
srand(ddsk); | |
while ((history & 0x0FFF) != 0x0777) { | |
history = (history << 1) + rand() % 2; |