English | Chinese |
---|---|
Subscriptions | 订阅 |
Label | 标签 |
Stream | 节点流 |
peer | 节点 |
public key | 公匙 |
Inventory lookups | 同步请求 |
Address | 地址 |
Bitmessage | 比特信 |
This file contains 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 ( | |
"bufio" | |
"bytes" | |
"encoding/binary" | |
"flag" | |
"fmt" | |
"net" | |
"os" |
This file contains 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
#!/bin/bash | |
# Thanks to https://gist.github.com/wenzhixin/43cf3ce909c24948c6e7 | |
# Execute this script in your home directory. Lines 17 and 21 will prompt you for a y/n | |
# Install Oracle JDK 8 | |
add-apt-repository ppa:webupd8team/java | |
apt-get update | |
apt-get install -y oracle-java8-installer | |
apt-get install -y unzip make expect # NDK stuff |
This file contains 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{ | |
Count=0 | |
} | |
{ | |
input[Count]=$0 | |
Count++; | |
} | |
function SortByYear(i1, v1, i2, v2, l, r) { | |
Year1=match(v1, /20([0-9]){2}/, year) | |
v1=year[0] |
This file contains 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
<div id="paint"> | |
<canvas id="myCanvas"></canvas> | |
</div> | |
<div class="floatbtn"> | |
<a class="btn-floating btn-large waves-effect waves-light blue"> | |
<i class="material-icons">home</i> | |
</a> | |
</div> |
This file contains 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 ( | |
"encoding/csv" | |
"fmt" | |
"os" | |
"regexp" | |
"strconv" | |
"strings" | |
"time" |
This file contains 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
{ | |
"log" : { | |
"access": "", | |
"error": "", | |
"loglevel": "info" | |
}, | |
"inbound": { | |
"port": 10086, | |
"protocol": "vmess", | |
"settings": { |
This file contains 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
// ==UserScript== | |
// @name fuck http://imgclick.net | |
// @namespace https://kkdev.org | |
// @include http://imgclick.net/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
$(document).ready(function(){ | |
$(".fuckadb").css("display","block") |
This file contains 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" | |
func main() { | |
i := 1 | |
var sqr, x, cm float64 | |
sqr = 16 |
This file contains 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
#myCanvas { | |
border: 1px solid black; | |
} |
NewerOlder