随笔分类 -  工具-软件

摘要:SequenceDiagram for IntelliJ IDEA 阅读全文
posted @ 2022-07-13 19:37 该显示昵称已被使用了 阅读(39) 评论(0) 推荐(0)
摘要:voicemeeter 阅读全文
posted @ 2022-05-28 22:39 该显示昵称已被使用了 阅读(43) 评论(0) 推荐(0)
摘要:登陆串口,并且记录log https://blog.csdn.net/hansel/article/details/114682539 putty -serial COMxxx -sercfg 115200,8,n,1,N -sessionlog xxxx.log 更加复杂的操作 https://s 阅读全文
posted @ 2022-01-13 17:09 该显示昵称已被使用了 阅读(286) 评论(0) 推荐(0)
摘要:安装groovy插件 在线安装 https://blog.csdn.net/qq_27645299/article/details/72900801 离线安装 http://www.xwood.net/_site_domain_/_root/5870/5930/5932/t_c261627.html 阅读全文
posted @ 2021-12-31 16:21 该显示昵称已被使用了 阅读(49) 评论(0) 推荐(0)
摘要:https://www.lifewire.com/how-to-install-the-pycharm-python-ide-in-linux-4091033 1. Download PyCharm from the JetBrains website. Install PyCharm. The s 阅读全文
posted @ 2021-12-25 20:12 该显示昵称已被使用了 阅读(34) 评论(0) 推荐(0)
摘要:使用正则 阅读全文
posted @ 2021-05-28 10:59 该显示昵称已被使用了 阅读(60) 评论(0) 推荐(0)
摘要:原理和禁用方法 # 1.原理 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <style type="text/css"> /* 最简单的实现禁止复 阅读全文
posted @ 2020-12-31 09:55 该显示昵称已被使用了 阅读(257) 评论(0) 推荐(0)
摘要:httpie 可以用来调试http pip install httpie # POST 使用表单数据 http --form POST http://127.0.0.1:8000/snippets/ code="print 123" { "id": 3, "title": "", "code": " 阅读全文
posted @ 2020-12-06 11:52 该显示昵称已被使用了 阅读(377) 评论(0) 推荐(0)
摘要:Matplotlib 是 Python 的绘图库。 它可与 NumPy 一起使用,提供了一种有效的 MatLab 开源替代方案。 import pandas as pd import altair as alt %matplotlib inline df = pd.read_csv('pandas- 阅读全文
posted @ 2020-11-15 19:11 该显示昵称已被使用了 阅读(108) 评论(0) 推荐(0)
摘要:常用画图 df5 = df.loc[(df["主管部门"] == '教育部'), :].groupby(['所在省市']).count().reset_index() # df5.plot() # set_index("time",inplace=True) # df.plot() alt.Char 阅读全文
posted @ 2020-11-14 18:21 该显示昵称已被使用了 阅读(140) 评论(0) 推荐(0)
摘要:安装 brew install python3 python3 --version # 确认安装成功 pip3 --version # 确认pip3安装成功 pip install jupyterlab #出现tornado错误 pip uninstall tornado pip install t 阅读全文
posted @ 2020-11-10 21:54 该显示昵称已被使用了 阅读(91) 评论(0) 推荐(0)
摘要:在线编辑器: http://www.mdeditor.com/ # 字体颜色 <font color='red'> text </font> <font face="黑体" color=green size=5>我是黑体,绿色,尺寸为5</font> # 背景颜色 <p style="right;b 阅读全文
posted @ 2020-11-08 10:36 该显示昵称已被使用了 阅读(74) 评论(0) 推荐(0)
摘要:Vega-Lite https://vega.github.io/vega-lite/tutorials/getting_started.html 可以直接HTML <!DOCTYPE html> <html> <head> <title>Vega-Lite Bar Chart</title> <m 阅读全文
posted @ 2020-11-07 19:42 该显示昵称已被使用了 阅读(260) 评论(0) 推荐(0)
摘要://取值的两种方法 $('td[class="td2"][style="word-break:break-all;"]').text(); #不知道为什么取不到 ,可能是word-break 方法1 $('td[class="td2"]').text(); // 或者 $("td").text(); 阅读全文
posted @ 2020-11-07 10:02 该显示昵称已被使用了 阅读(80) 评论(0) 推荐(0)
摘要:https://www.jianshu.com/p/0d4bed0f37ab alias: cmd: \config\user-aliases.cmd bash:\config\user_profile.sh 阅读全文
posted @ 2020-10-25 10:22 该显示昵称已被使用了 阅读(129) 评论(0) 推荐(0)
摘要:for i in range(20): challenge_pin = get_challenge_pin(url) if challenge_pin is not None: pin = challenge_pin + "test" + challenge_pin try: password = 阅读全文
posted @ 2020-10-19 21:00 该显示昵称已被使用了 阅读(164) 评论(0) 推荐(0)
摘要:xml.dom.minidom中的使用 pretty_print = lambda data: '\n'.join([line for line in xml.dom.minidom.parseString(data).toprettyxml(indent=' '*2).split('\n') if 阅读全文
posted @ 2020-10-19 17:20 该显示昵称已被使用了 阅读(251) 评论(0) 推荐(0)
摘要:Date.prototype.Format = function (fmt) { var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "H+": this.getHours(), //小时 "m+": this.ge 阅读全文
posted @ 2020-10-17 11:27 该显示昵称已被使用了 阅读(85) 评论(0) 推荐(0)
摘要:定义 import requests import logging # These two lines enable debugging at httplib level (requests->urllib3->http.client) # You will see the REQUEST, inc 阅读全文
posted @ 2020-10-04 17:48 该显示昵称已被使用了 阅读(383) 评论(0) 推荐(0)
摘要:pip正常安装 pip install django1.11.4 -i https://pypi.douban.com/simple pip3 install websockets6.0 --force-reinstall pip离线安装 离线源地址 https://www.lfd.uci.edu/ 阅读全文
posted @ 2020-09-17 11:33 该显示昵称已被使用了 阅读(2239) 评论(0) 推荐(0)