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
入力4文字 | |
,>,>,>,> | |
位置合わせbitsとループカウンタ | |
____ ____ 01110 ___3 | |
>>>> >>>> >+>+>+>> >>>+++ | |
[-< | |
+++<++<+>> 01110123N ずらしながらループを回すための階段 | |
[ | |
[-<] |
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
(10)(11)(12)を1 | |
>>>>>>>>>>+>+>+ | |
<<<<<<<<<<<< | |
最初の1文字を読んでeofチェック | |
(0)を255に | |
>+++++++++++++++ 15 | |
[-<++++++++++++++++>] 16 | |
<+++++++++++++++ 15 | |
(2)に読み込む |
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 <unistd.h> | |
#include <netdb.h> | |
#include <sys/socket.h> | |
#include <netinet/tcp.h> | |
int main(int argc, char **argv) | |
{ |
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_test | |
import ( | |
"math/rand" | |
"testing" | |
"unsafe" | |
binary "github.com/KLab/wsnet2-serializer/go" | |
"golang.org/x/xerrors" | |
) |
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 ( | |
"sync" | |
"fmt" | |
"time" | |
"context" | |
) | |
type Msg interface{} |
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> | |
<body> | |
<form method="post" action="#"> | |
<input type="file" id="file1"> | |
<input type="submit" value="ok"> | |
</form> | |
<img id="thumb"> | |
</body> | |
<script type="text/javascript"> |