# 创建文件夹 ca 保存Ca相关
mkdir ca
cd ca
#创建私钥 (建议设置密码)
openssl genrsa -des3 -out myCA.key 2048
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
/*退出各种steam组*/ | |
(function () { | |
/*时间间隔*/ | |
var timeP = 5; | |
/*略过的组id*/ | |
var specialIds = ["103582791457524672", "103582791457596561"]; | |
var groupIdArr = []; | |
jQuery(".groupLeftBlock a.linkStandard").each(function () { | |
var surl = jQuery(this).attr("href"); | |
var matchResult=surl.match(/'(\d+)'/); |
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
(function() | |
{ | |
if( location.href.match( /^https:\/\/store\.steampowered\.com\/account\/licenses\/?$/ ) === null ) | |
{ | |
alert( '请在Steam帐号明细页面运行这些代码: https://store.steampowered.com/account/licenses/' ); | |
window.location = 'https://store.steampowered.com/account/licenses/'; | |
return; | |
} |
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 ( | |
_ "embed" | |
"github.com/golang/freetype" | |
"github.com/golang/freetype/truetype" | |
"golang.org/x/image/math/fixed" | |
"image" | |
"image/color" | |
"image/draw" |