流程

  1. 一部已经root了安卓手机 or 安卓虚拟机(此处用夜神)
  2. 虚拟机安装微信,登入,使用电脑版微信备份手机聊天记录,虚拟机登入该微信,使用电脑微信还原备份的记录
  3. 寻找KEY,传统方法IMEI + uin进行md5加密后前六位,在本机试验不成功
  4. 使用frida注入劫持获取KEY,感谢ooooooh灰灰大佬提供hack方法
  5. 准备python环境
1
2
pip install frida
pip install frida-tools
  1. 查看架构(此处使用虚拟机,故为x86)
1
2
3
adb shell getprop ro.product.cpu.abi

x86
阅读全文 »

背景

  • 电脑QQ可以直接导出mht,但是对于没有SVIP漫游的用户,手机聊天记录并无法同步到电脑端

方法

  1. root手机直接将com.tencent.mobilqq文件夹拷贝到电脑上
  2. 未root用户使用官方备份工具或者root的安卓虚拟机
    1. 华为手机使用华为手机助手即可
    2. 选择收据备份—>应用数据(选择qq)—>备份image-20221118111002507
    3. 使用‘楼月安卓手机备份文件提取器’拆包,image-20221118111431746
    4. 解压全部压缩包至当前文件夹image-20221118112010541
    5. 使用QQ-History-Backup导出为HTML
      1. 自己的QQ号写入自己的QQ,本分数据会存在该手机所有登入过的QQ信息
      2. QQ号/群号为要导出的聊天对象的QQ号或者群号
      3. image-20221118111704552

增补

阅读全文 »

https://github.com/Jamling/hexo-generator-index2

安装使用方法

1
2
npm install hexo-generator-index2 --save
npm uninstall hexo-generator-index --save

配置文件

1
2
3
4
5
6
7
8
9
10
11
# whether the hexo-generator-index2 include the offical hexo-generator-index, default is true
index2_include_index: true

# the custom index2 generator, can be array or object
index2_generator:
- layout: 'index'
per_page: 10
order_by: -date
exclude:
- tag 日记 # 隐藏日记tag
- category hide
阅读全文 »

  1. 设置——网络,Custom server access URLs设置映射网址即可,建议使用IP,可设置多个,用逗号分隔
  2. 关闭Enable Relay选项(该选项为官方穿透功能,VIP也只有2M带宽)
image-20221115230946961

image-20220626135919570
image-20220626140611713
image-20220627170337735
image-20220627170351365

https://portwooddigital.com/2021/10/10/failed-to-get-compatible/

阅读全文 »

利用OpenSees低周往复荷载做滞回曲线

  1. 纤维截面使用位移控制梁柱单元(dispBeamColumn),力控制位移单元有可能也能计算,但是反复加载后不收敛的概率大,出现如下报错

    failed to get compatible element forces & deformations for element

  2. 分析参数

1
2
3
4
5
6
7
8
9
10
ops.timeSeries('Linear',1)
ops.pattern('Plain',1,1)
ops.load(5,100e100,0,0,0,0,0)
ops.constraints('Plain')
ops.numberer('Plain')
ops.system('BandGeneral')
ops.test('NormDispIncr',1e-3,1000,0)
ops.algorithm('KrylovNewton')
ops.integrator('DisplacementControl',5,1,0.001)
ops.analysis('Static')

使用KrylovNewton算法,使用Newton很用不收敛,使用NormDispIncr控制收敛,使用能量控制易不收敛。

1155. Number of Dice Rolls With Target Sum

You have n dice and each die has k faces numbered from 1 to k.

Given three integers n, k, and target, return the number of possible ways (out of the kn total ways) to roll the dice so the sum of the face-up numbers equals target. Since the answer may be too large, return it modulo 109 + 7.

Example 1:

1
2
3
4
Input: n = 1, k = 6, target = 3
Output: 1
Explanation: You throw one die with 6 faces.
There is only one way to get a sum of 3.
阅读全文 »

Parsec错误码-800解决办法

如果web无法访问就是parsec.app被屏蔽了

在文件中添加%appdata%\Parsec\config.txt代理配置

1
2
3
4
app_proxy_address = 127.0.0.1
app_proxy_scheme = http
app_proxy = true
app_proxy_port = 7890

具体参数根据个人配置而定

阅读全文 »

因为大量上传被管理员在路由器上限速了,结果网页也访问不了,只能更换MAC,WLAN的MAC由于没有对应条目,无法在设备管理器更改,直接改注册表也不太友好

TMAC下载

image-20220124102110974
  • 简单易用,可以随机生成
0%