This file contains hidden or 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 ( | |
"fmt" | |
"math/rand" | |
) | |
var ( | |
A = 0x0 | |
B = 0x7 |
This file contains hidden or 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
import time | |
from concurrent.futures import ThreadPoolExecutor, ProcessPoolExecutor | |
class A(object): | |
def __init__(self, name, b_list): | |
self.name = name | |
self.bs = b_list |
This file contains hidden or 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 testwithoutanswer(){ | |
//练习模式 随便选 | |
$('input[id=ctl00_ContentPlaceHolder1_btnNext]').click(); | |
$('table[id$=DataGridA] tbody tr').each(function(index, el) { | |
$(this).find('input:checkbox').attr('checked', 'checked'); | |
$(this).find('table[id$=RBLCData]').find('input:radio').eq(0).attr('checked', 'checked'); | |
$(this).find('table[id$=RBLAData] tbody tr input:radio').attr('checked', 'checked'); | |
}); | |
$('input[id=ctl00_ContentPlaceHolder1_btnNext]').click(); | |
$('input[id=ctl00_ContentPlaceHolder1_btnOk]').click(); |
This file contains hidden or 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 test(){ | |
var importJs=document.createElement('script'); | |
importJs.setAttribute("type","text/javascript"); | |
importJs.setAttribute("src", "https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"); | |
document.getElementsByTagName("head")[0].appendChild(importJs); | |
setTimeout(fuckOne,500); | |
setTimeout(fuckTwo,500); | |
setTimeout(fuckThree,500); | |
} | |
This file contains hidden or 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
var importJs=document.createElement('script'); | |
importJs.setAttribute("type","text/javascript"); | |
importJs.setAttribute("src", "https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"); | |
document.getElementsByTagName("head")[0].appendChild(importJs); | |
setTimeout(fuck,1000); | |
function fuck(){ | |
$.get('https://www.heeeepin.com/json.php', function(data) { | |
console.log("get data success"); | |
var s = JSON.parse(data); | |
$('table[id$=DataGridA] tbody tr').each(function(index, el) { |