Skip to content

Instantly share code, notes, and snippets.

View rozbo's full-sized avatar
🎃
I may be slow to respond.

键来! rozbo

🎃
I may be slow to respond.
  • f817
  • f817
  • 13:31 (UTC +08:00)
View GitHub Profile
@rozbo
rozbo / sf1111_9.js
Created November 11, 2016 07:22
1111.segmentfault.com的最后一关解密脚本
let bin=["01001000","00110100","01110011","01001001","01000001","01000011","01001010","01001011",
"01101110","01101100","01000001","01000001","01000001","00101011","00110001","01011010",
"01000010","00110001","01010010","01010100","01010011","00110111","01100011","00101011",
"01001001","01010001","01000111","01101011","01101001","01000110","01010001","01010110",
"01000101","01001001","01101101","01000001","01100111","01001000","01010010","01000011",
"01000100","01010110","01001011","01101011","01000110","00110110","01101011","01000010",
"01010001","01110010","01010111","01000101","01000101","01000011","01000011","00110000",
"01010001","01000010","01001011","01110001","01101111","01101111","01001011","01001011",
"01101001","01101111","01100111","01010101","01010001","01010101","01000010","01000001",
"01100111","01010101","01100111","01010000","01010011","01000111","00111000","01010111",
@rozbo
rozbo / delete_weibo.js
Created February 4, 2021 03:24
批量删除微博
'use strict'; var s = document.createElement('script'); s.setAttribute( 'src', 'https://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js' ); s.onload = function() { setInterval(function() { if (!$('a[action-type="feed_list_delete"]')) { $('a.next').click(); } else { $('a[action-type="feed_list_delete"]')[0].click(); $('a[action-type="ok"]')[0].click(); } $('html, body').animate({ scrollTop: $(document).height() }, 'slow'); }, 1500); }; document.head.appendChild(s);