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
名称 功能 平台 特色 组织 | |
BlazeMeter 持续测试平台 chrome插件 登陆后可导出jmx脚本 BlazeMeter by Perforce | |
JMeter 性能测试工具 windows/linux 执行jmx脚本,进行静态资源的压力测试 apache软件基金会 |
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
<template> | |
<h1>这是第{{ current }}页</h1> | |
<MovieCard | |
:id="movies.movies[current]" | |
:title="movies.movies[current]" | |
imgurl="https://images.weserv.nl/?url=https://img1.doubanio.com/view/photo/s_ratio_poster/public/p2848324437.webp" | |
/> | |
<div> | |
<a-pagination | |
v-model:current="current" |
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
import requests | |
import csv | |
import time | |
grades = ['2019329600', '2019329621'] | |
result = [] | |
null = None | |
for grade in grades: | |
for spec in [str(num).zfill(3) for num in range(1000)]: | |
r = requests.get( | |
'http://fangyi.zstu.edu.cn:5004/api/DataSource/GetDataSourceByNo?sqlNo=JTDK_XS$%s' % (grade+spec)) |
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
from Crypto.Cipher import DES | |
from Crypto.Util import Padding | |
from base64 import b64encode, b64decode, encode | |
from requests import Session | |
from re import compile | |
import os | |
import logging | |
import sys | |
logger = logging.getLogger(name=None) # 创建一个日志对象 |
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
import traceback | |
from Crypto.Cipher import DES | |
from Crypto.Util import Padding | |
from base64 import b64encode, b64decode, encode | |
from requests import Session | |
from re import compile | |
import os | |
import logging | |
import sys | |
import json |