I hereby claim:
- I am scbizu on github.
- I am scnace (https://keybase.io/scnace) on keybase.
- I have a public key ASBjBCRZ8h0L_Fh4QWlnjTRs6y0WkyoVduNoWDESPSk5ugo
To claim this, I am signing this object:
// ==UserScript== | |
// @name Douyu Danmu | |
// @namespace http://tampermonkey.net/ | |
// @version 0.0.3 | |
// @description try to take over the world! | |
// @author You | |
// @match *douyu.com* | |
// @grant none | |
// @include *www.douyu.com* | |
// ==/UserScript== |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"bytes" | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/md5" | |
crand "crypto/rand" | |
"encoding/base64" | |
"encoding/hex" |
defaults write com.google.Chrome NSRequiresAquaSystemAppearance -bool yes | |
# more in https://support.google.com/chrome/thread/3395273?hl=en |
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"time" | |
"github.com/zencoder/disque-go/disque" | |
) |
# Requirements | |
# debian/ubuntu | |
apt-get -y update && apt-get -y upgrade | |
apt-get -y install strongswan xl2tpd libstrongswan-standard-plugins libstrongswan-extra-plugins | |
VPN_SERVER_IP='' | |
VPN_IPSEC_PSK='y' | |
VPN_USER='' | |
VPN_PASSWORD='' |
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
// Name of the struct tag used in examples | |
const tagName = "validate" |
ffmpeg -re -i rtmp://localhost/live/input_stream -acodec libfaac -ab 128k -vcodec libx264 -s 640x360 -b:v 500k -preset medium -vprofile baseline -r 25 -f flv rtmp://localhost/live/medium_500k -acodec libfaac -ab 128k -vcodec libx264 -s 480x272 -b:v 300k -preset medium -vprofile baseline -r 25 -f flv rtmp://localhost/live/medium_300k -acodec libfaac -ab 128k -c:v libx264 -s 320x200 -b:v 150k -preset:v fast -profile:v baseline -level 1.2 -r 25 -f flv rtmp://localhost/live/medium_150k -acodec libfaac -vn -ab 48k -f flv rtmp://localhost/live/audio_only |
package main | |
import ( | |
"fmt" | |
"unicode/utf8" | |
) | |
func main() { | |
s := "a\xc5z" | |
fmt.Printf("%q\n", s) |
package sort | |
//SrcData ... | |
type SrcData struct { | |
Length int | |
Src []int | |
//Desc will sort Src by value Desc | |
Desc bool | |
} |