随笔分类 - 神奇の开发
摘要:win32 | 使用SetWindowPos置顶窗口 写了个置顶窗口的命令行小工具。 很舒服,唯一不好的是有的时候通过窗口名找不到窗口,这个就比较麻烦哈哈哈哈。 // this file is gbk encoded // author: Mz1 #include <windows.h> #incl
阅读全文
摘要:python | base64隐写 闲得无聊写了一个base64隐写库。 叫b64steg 安装直接pip install b64steg即可。 项目地址: https://github.com/Mz1z/b64steg
阅读全文
摘要:python | websocket server写法 闲得无聊写的 项目地址:https://github.com/Mz1z/nochat import asyncio import websockets import time class NoChatServer(): def __init__
阅读全文
摘要:python | websockets库的使用 最近又想玩玩b站的弹幕,就看了一下websockets库 pip install websockets 这个库是基于asyncio的,所以得用python3.7以上,然后用异步的方式去写,大概写了点demo: 有时间完善一下好了,这个方便的地方就是可以
阅读全文
摘要:python | asyncio协程写法 贴个代码方便以后用: if __name__ == '__main__': server = NoChatServer() tasks = [ server.run(), server.xxx(), ] loop = asyncio.get_event_lo
阅读全文
摘要:python | tkinter图形化库使用 | Frame框架 Frame框架里面可以塞东西,可是塞完东西frame设置的属性就没有了,所以需要使用如下Frame的方法来固定住: frame_control.pack_propagate(0) 参考:https://blog.csdn.net/Ne
阅读全文
摘要:js | 网页点击特效 随机emoji 参考了别人的代码自己改了一下,直接贴上就能用: <script type="text/javascript"> // 点击特效 let create_emoji = function(e){ // 获取随机emoji的函数 let get_rand_emoji
阅读全文
摘要:python | 数据可视化 词云 直接丢代码: import matplotlib.pyplot as plt import matplotlib.colors as colors # 处理图片相关内容 from wordcloud import WordCloud import jieba fr
阅读全文
摘要:electron 搭建环境 主要还是跟着官网搭的。 最近要发布一个网站,以客户端的形式,就想到了electron,试着弄一下。 首先要有npm和node这个应该不难。 然后npm init 然后想办法配包 npm --registry https://registry.npm.taobao.org
阅读全文
摘要:用pyinstaller打包后加载不了音频文件啥的 网上转了一圈,就没有说到点子上的 在pygame的github issue上找到了真正的答案。 https://github.com/pygame/pygame/issues/1514 关键的问题就在于pyinstaller打包的时候没有吧libs
阅读全文
摘要:今天无聊,用php封装了一套比较简单的http请求类 细节方面可以再优化 class Creeper { public $url; public $header; public $text; public $responseHeader; public function __construct($u
阅读全文
摘要:随便写的 import sys, time import threading import os import msvcrt class Cmd: def __init__(self): self.buff = b'' # buff string print('''Ready to Start |
阅读全文