admin的头像-闪狐博客
管理员
这家伙很懒,什么都没有写...
python爬虫-闪狐博客

python爬虫

import requests import json import time from typing import Dict, List, Any class VideoScraper: def __init__(self): # 微信环境请求头 - 与test_categories.py完全相同 self.headers = { ...
22天前
03814
uniapp登录页面模板-闪狐博客

uniapp登录页面模板

模板一  代码部分  1.Login.vue<template> <view class='page'> <view class='title'> <view>Hello!<br>欢迎来到XXX</view> </view> <view c...
10个月前
07113
python读取so文件输出到text-闪狐博客

python读取so文件输出到text

import osimport sysimport redef extract_strings(binary_data):    '''从二进制数据中提取可打印的字符串'''    # 使用正则表达式匹配至少4个连续的可打印字符    strings = re.findall...
34天前
0408
cocos uuid解密脚本-闪狐博客

cocos uuid解密脚本

//22位压缩后的 UUID解码配置 const BASE64_KEYS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; const values: number[] = new Array(123); // max char code in ba...
8个月前
06314
Vue 实现页面打印-闪狐博客

Vue 实现页面打印

安装vue-print-nb插件npm install print-nb在main.js引入适应全局import Print from 'vue-print-nb'; Vue.use(Print);import print from 'print' handlePrint() { // 打印功能 printJS({ printa...
8个月前
0556
UNIAPP前端 AXIOS 封装的API-闪狐博客

UNIAPP前端 AXIOS 封装的API

Axios 是一个基于 Promise 的 HTTP 库,可以在浏览器和 Node.js 中使用。它提供了许多功能,如拦截请求和响应、取消请求、自动转换 JSON 数据等。安装和基本使用首先,通过 npm 安装 Axios:np...
10个月前
09312
COCOS UUID更新还原-闪狐博客

COCOS UUID更新还原

//******************************************* // index.json 示例 // [ // { // 'name': 'Act_1_ChongZhiZengSong', // 'uuid': '75fcdMzuAJOd6NfRzuA0VMq', // 'code': '75fcd333-b802-4e77...
8个月前
05415
Vue实现pdf生成-闪狐博客

Vue实现pdf生成

一、安装依赖将页面转换成图片html2canvas 的作用就是根据 DOM 生成对应的图片。它的屏幕截图是基于 DOM 的,因此可能不会 100% 精确到真实的表示,因为它不会生成实际的屏幕截图,而是基于页面...
8个月前
0339
Python 脚本去除文件命中MD5值-闪狐博客

Python 脚本去除文件命中MD5值

直接上代码import os import re def remove_middle_dot(file_name): '''如果文件名中有两个点,去掉一个点和两点之间的内容''' # 查找文件名中的两个点 parts = file_name.split('.') if len(pa...
10个月前
05613
新版微信小程序反编译-闪狐博客

新版微信小程序反编译

1:新版本的微信小程序的放置的位置是 C:\Users\Administrator\AppData\Roaming\Tencent\xwechat\radium 2:下载解码工具 UnpackMiniApp
前天
0505