π¦
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
{ | |
"server": β0.0.0.0β, | |
"server_port": 8388, | |
"password": "password", | |
"method": "aes-256-gcm" | |
} |
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
HELLO WORLD |
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
TypeScript 10 hrs 52 mins βββββββββββββββββββββ 37.2% | |
Go 7 hrs 57 mins βββββββββββββββββββββ 27.2% | |
Rust 3 hrs 17 mins βββββββββββββββββββββ 11.3% | |
Python 2 hrs 19 mins βββββββββββββββββββββ 8.0% | |
JSON 1 hr 51 mins βββββββββββββββββββββ 6.4% |

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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mDMEYOb02BYJKwYBBAHaRw8BAQdAQS60RzD6saInTSeNwKq045F/88ar+l1wFhl3 | |
H+njVd60HWthbGx5ZGV2IDxrYWxseWRldkBnbWFpbC5jb20+iJQEExYKADwWIQT9 | |
qXWFT/UcfLfFzEOvhuFdcyBJhwUCYOb02AIbAwULCQgHAgMiAgEGFQoJCAsCBBYC | |
AwECHgcCF4AACgkQr4bhXXMgSYfcOgD+MyhRsWxbu/h3mRpOX+fsFYZn3kL7ok5V | |
/gDbCN8xobsA/0G7lWeb965IafTuIaWpYEuQVEqMQsZ0K7nGAg4i7EYP | |
=4maa | |
-----END PGP PUBLIC KEY BLOCK----- |
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 ( | |
"context" | |
"fmt" | |
"google.golang.org/grpc" | |
"log" | |
"v2ray.com/core" | |
"v2ray.com/core/app/proxyman" | |
"v2ray.com/core/app/proxyman/command" |
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
class Danmaku { | |
elementQueue = null; | |
fps = 60; | |
trackSize = 8; | |
constructor(view) { | |
this.view = view; | |
this.view.width = 1920; | |
this.view.height = 1080; | |
this.context = view.getContext("2d"); |
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
// https://github.com/shadowsocks/shadowsocks-go/blob/master/LICENSE | |
package main | |
type LeakyBuf struct { | |
bufSize int | |
freeList chan []byte | |
} | |
const leakyBufSize = 4096 |
NewerOlder