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
#!/usr/bin/env bash | |
rm -fr ~/Library/Preferences/jetbrains* | |
rm -fr ~/Library/Caches/JetBrains/ | |
rm -fr ~/Library/Application\ Support/JetBrains/ | |
rm -fr ~/Library/Logs/JetBrains/ |
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
{ | |
"fmt.Sprintf": { | |
"prefix": "fsf", | |
"body": [ | |
"fmt.Sprintf(${1:\"%v\"}, ${2:var})", | |
], | |
"description": "fmt.Sprintf" | |
}, | |
"iflen": { | |
"prefix": "ifl", |
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
https://github.com/apache/hbase/blob/2.2.2RC0/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift2/hbase.thrift |
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
/*自定义样式,实时生效*/ | |
/* 全局属性 | |
* 页边距 padding:30px; | |
* 全文字体 font-family:ptima-Regular; | |
* 英文换行 word-break:break-all; | |
*/ | |
.layout { | |
font-family:PingFangSC-Light; | |
} |
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
@charset "UTF-8"; | |
:root { | |
--control-text-color: #000000; | |
--side-bar-bg-color: #f6f8fa | |
} | |
#write { | |
max-width: 860px; | |
margin: 0 auto; | |
padding: 20px; |
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
FROM golang:1.12.5-alpine3.9 | |
RUN apk add --no-cache upx |
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 suid | |
import ( | |
"fmt" | |
"math/big" | |
"github.com/google/uuid" | |
) | |
const ( |
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 ( | |
"bytes" | |
"database/sql" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/url" |
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
FROM alpine:3.8 | |
MAINTAINER github.com/jony4 <[email protected]> | |
RUN apk add --no-cache luajit | |
ENTRYPOINT [ "/usr/bin/env", "luajit" ] |
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 ( | |
"bytes" | |
"fmt" | |
"log" | |
"os/exec" | |
"strings" | |
) |
NewerOlder