QcefView:一个集成了CEF的Qt Widget 官方网址:http://tishion.github.io/QCefView/Github地址:https://github.com/tishion/QCefViewQCefView是一个与Chromium Embedded Framework ...
分类:
其他好文 时间:
2020-06-22 21:01:05
阅读次数:
229
不显示滚动条,仍实现滚动效果的方法:动态面板 里再嵌套 一个开启了滚动条的动态面板;这样滚动条被第一个动态面板 遮挡了。 ...
分类:
其他好文 时间:
2020-06-22 19:17:07
阅读次数:
116
第一步、在terminal中输入 brew install lua 来安装lua的运行环境 第二步、在VScode中安装如下插件 第三步、新建 test.lua 程序 print("Hello World") 第四步、在terminal中通过 lua test.lua 如果可以运行这个程序,并且返回 ...
分类:
其他好文 时间:
2020-06-22 18:50:27
阅读次数:
53
Django rest framework源码分析(4) 版本 版本 新建一个工程Myproject和一个app名为api (1)api/models.py from django.db import models class UserInfo(models.Model): USER_TYPE = ...
分类:
其他好文 时间:
2020-06-22 15:45:29
阅读次数:
37
1、UIEvent简介 UIEvent是代表iOS系统中的一个事件,一个事件包含一个或多个的UITouch; UIEvent分为四类: UIEventType typedef NS_ENUM(NSInteger, UIEventType) { UIEventTypeTouches,//触摸事件类型 ...
分类:
移动开发 时间:
2020-06-22 15:38:21
阅读次数:
72
Django rest framework(5) 解析器 解析器 (1)api/urls.py # api/urls.py from django.urls import path,re_path from .views import UserView,PaserView urlpatterns = ...
分类:
其他好文 时间:
2020-06-22 15:02:05
阅读次数:
45
变量 1. 类变量 static String name = "WeirJin"; (可以直接输出) 2. 实例变量 int a = 1; 方法外面,类里面,从属对象(利用对象输出) 3. 局部变量 int b = 2; 方法里面 常量 static final String PLAY_NAME = ...
分类:
编程语言 时间:
2020-06-22 12:46:57
阅读次数:
55
sudo pacman -S yay yay -S fcitx yay -S fcitx-sogouimebs yay -S fcitx-configtool fcitx-qt5 ...
分类:
编程语言 时间:
2020-06-21 22:51:44
阅读次数:
884
Django rest framework源码分析(3) 节流 添加节流 自定义节流的方法 限制60s内只能访问3次 (1)API文件夹下面新建throttle.py,代码如下: # utils/throttle.py from rest_framework.throttling import Ba ...
分类:
其他好文 时间:
2020-06-21 20:12:57
阅读次数:
44
更多代码请移步一些模板。 多项式乘法 FFT/NTT,详见别人的博客。由于有些复杂,作者懒得写了。而且写了也对作者没什么意义。 多项式求逆 对多项式$f(x)$ 求多项式 \(g(x)\) 使得 \(f(x)\cdot g(x)\equiv 1\pmod {x^n}\) 这里的$\pmod {x^n ...
分类:
其他好文 时间:
2020-06-21 20:06:41
阅读次数:
59