12 2020 档案
摘要:#include <sstream> string ltos(long l) { ostringstream os; os << l; string result; istringstream is(os.str()); is >> result; return result; } long sto
阅读全文
摘要:Mignet/Jx: jx (github.com) debug模式需要添加c++ ..\..\Engine\Include;%(AdditionalIncludeDirectories) // PackSingle.cpp : Defines the entry point for the con
阅读全文
摘要:Using Redis Pub/Sub with Spring Boot Redis is an open source, in-memory data structure store, used as a database, cache and message broker. Here we wo
阅读全文
摘要:nginx默认只能代理http,而且只能监听80端口,这个就不能忍了,自己撸一个 package main import ( "flag" "fmt" "io" "net" "os" "strings" "sync" ) var lock sync.Mutex var trueList []stri
阅读全文