摘要:
一、material风格 # Buttons MaterialButton\RaisedButton\FlatButton\IconButton\FloatingActionButton\OutlineButton\DropdownButton # Dialogs, alerts, and pane 阅读全文
摘要:
macbook macbook 插手机不停的连接断开 sudo killall -STOP -c usbd Windows 一般快捷指令在这个位置可以找到 C:\Windows\System32 1.计算器 calc 2.远程桌面 mstsc 3.注册表 regedit 4.画图 mspaint 5 阅读全文
摘要:
全家桶 1 IDEA 导入包 alt+回车, mac上option+回车 回退 剪切 复制 粘贴 command +z +x +c +v 复制当前光标行command +d 关闭当前文件 command+w 格式化代码 option +command +L 注释 command+/ 多行注释 com 阅读全文
摘要:
postman body里发送 {"name":"admin' or '1'='1"} 阅读全文
摘要:
Ora-12570报错问题处理 使用Ado.net访问Oracle数据库,执行Select查询的时候,偶尔会出现【ORA-12570: 网络会话: 意外的数据包读取错误】的问题,造成业务部分数据缺失。经过多方查找,确定不是Oracle服务器的问题,也就是跟Oracle配置没有关系,随后想到是否与连接 阅读全文
摘要:
headers 添加 Content-Type 值 text/xml;charset=utf-8 body选择 raw xml <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/200 阅读全文
摘要:
wsl -l -v #查看子系统 导出子系统 wsl --export Ubuntu-22.04 d:\ubuntu2204.tar 注销系统 wsl --unregister Ubuntu-22.04 重新导入 wsl --import Ubuntu-22.04 d:\Ubuntu-22.04 d 阅读全文
摘要:
卸载工具 - .NET | Microsoft Learn dotnet/cli-lab: (github.com) 阅读全文
摘要:
1.升级VS vs2022社区版本 17.5.3 后可用 2.vs安装C++ 3.添加aot配置 <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net7.0</TargetFramework> <ImplicitUsing 阅读全文
摘要:
netsh int ip reset 阅读全文
摘要:
1、指定外部时间源并与之同步 w32tm /config /manualpeerlist:"210.72.145.44" /syncfromflags:manual /reliable:yes /update (需要管理员权限执行) /manualpeerlist表示外部时间源服务器列表,多个服务器 阅读全文
摘要:
解方程 import sympy # 解方程 # solve()的第一个参数是要解的方程,第第二个参数是要求解的未知数 # solve()解的方程右边必须是0 # 设未知数 x = sympy.Symbol('x') #一元一次方程 5x-10=0 x1=sympy.solve(x*5-10,x) 阅读全文