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
package main | |
import ( | |
"fmt" | |
"runtime" | |
"sync" | |
) | |
var mutex *sync.Mutex |
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
{ | |
"configurations": [ | |
{ | |
"name": "Win32", | |
"includePath": [ | |
"${workspaceFolder}/pca10028/s130/config/", | |
"${workspaceFolder}/pca10028/s130/**", | |
"${workspaceFolder}/**", | |
"${workspaceRoot}/../../../components/**", | |
"${workspaceRoot}/../../../external/**" |
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> | |
#include <string.h> | |
#include <openssl/md5.h> | |
// find /mnt/c/Users/Akimasa/Documents/radikocompare/ -name "*.aac" -print0 | xargs -0 -P1 -I {} ./a.out {} | |
// gcc main.c -lcrypto | |
void main(int argc, char *argv[]) | |
{ | |
MD5_CTX c; | |
char *data = "hoge"; |
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
package main | |
import ( | |
"fmt" | |
"runtime" | |
"strings" | |
"time" | |
"golang.org/x/crypto/ssh" |
OlderNewer