Skip to content

Instantly share code, notes, and snippets.

View ynyyn's full-sized avatar
☹️
Idling away time... - I may be slow to respond.

一年又一年 ynyyn

☹️
Idling away time... - I may be slow to respond.
  • *A fictional profile for cyberspace.
  • 地球 · 中国 / China, Earth
  • 16:34 (UTC +08:00)
View GitHub Profile
@ynyyn
ynyyn / 坦白说皮一皮源代码((.js
Created April 3, 2018 05:17
QQ坦白说,登录态下,自动带 Token 跳转脚本
(function () {
function CSRFToken(str) {
var hash = 5381;
for (var i = 0, len = str.length; i < len; ++i)
hash += (hash << 5) + str.charAt(i).charCodeAt();
return hash & 2147483647
}
function getCookie(c, name) {