Skip to content

Instantly share code, notes, and snippets.

View xjohjrdy's full-sized avatar
🎯
Focusing

xjohjrdy xjohjrdy

🎯
Focusing
View GitHub Profile
@xjohjrdy
xjohjrdy / xiaoxiao_tts.py
Last active April 25, 2023 10:25
返回的音频没有文件头,所以我随便加的一个文件头,但显示的音频时长有问题。如果播放器不能正常播放,可以使用Chrome播放。
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
from ws4py.client.threadedclient import WebSocketClient
import binascii
class WSClient(WebSocketClient):
def __init__(self, url, text, filename):
@xjohjrdy
xjohjrdy / idapython_cheatsheet.md
Created September 26, 2021 03:48 — forked from icecr4ck/idapython_cheatsheet.md
Cheatsheet for IDAPython
@xjohjrdy
xjohjrdy / ipdb2txt.py
Created March 12, 2020 07:38
ipip新版本IP库格式转换
# -*- coding: utf-8 -*-
import ipaddress
import json
import sys
import struct
def bytes2long(a, b, c, d):
return convert(a) << 24 | convert(b) << 16 | convert(c) << 8 | convert(d)