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
| void scr_about_init(void) | |
| { | |
| w_about = newwin_title(0, WAV_HEIGHT, "About", false); | |
| for (i = 0; i < ARRAY_SIZE(about_lines); i++) { | |
| linecd[i] = malloc(strlen(about_lines[i]) * sizeof(int)); | |
| for (j = 0; j < strlen(about_lines[i]); j++) | |
| linecd[i][j] = (rand() / (float)RAND_MAX) * 120 + 60; | |
| } | |
| } |
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
| openssl req -x509 -newkey rsa:2048 -keyout $NAME.key -out $NAME.pem -days 365 -nodes \ | |
| -subj "/C=TW/ST=Taiwan/L=Taipei/O=$ORG/OU=$UNIT/CN=$NAME" |
NewerOlder