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
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>SKK 辞書結合</title> | |
| <!-- | |
| This is derived from https://github.com/skk-dev/skktools/blob/master/skkdic-expr2.c | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by |
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
| from array import array | |
| from os import fdopen | |
| from pyaudio import paFloat32, PyAudio | |
| from sys import byteorder, stdout, stderr | |
| from time import sleep | |
| import math | |
| import wave | |
| # whisper format | |
| FORMAT = paFloat32 |
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
| ; Moved |
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
| ; Moved |
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
| --- noip-2.1.9-1/noip2.c Wed Nov 26 04:50:09 2008 | |
| +++ noip2.c Wed Oct 6 21:31:51 2010 | |
| @@ -186,7 +186,9 @@ | |
| #define ENCRYPT 1 | |
| #define FORCE_UPDATE 0 | |
| -#define MAX(x,y) (((x)>(y))?(x):(y)) | |
| +#ifndef MAX | |
| + #define MAX(x,y) (((x)>(y))?(x):(y)) | |
| +#endif |