(js中的MacroTask) 1. Rendering never happens while the engine executes a task. Doesn’t matter if the task takes a long time. Changes to DOM are painted ...
分类:
系统相关 时间:
2020-03-27 11:10:07
阅读次数:
101
报错如图: 解决,执行迁移表命令: python manage.py makemigrations python manage.py migrate 生成xadmin数据库表之后再去访问: 如图: 访问成功: ...
分类:
其他好文 时间:
2020-03-22 14:01:14
阅读次数:
202
题目链接:http://codeforces.com/problemset/problem/17/D Nick is attracted by everything unconventional. He doesn't like decimal number system any more, and ...
分类:
其他好文 时间:
2020-03-21 16:23:31
阅读次数:
65
```python 运行环境 PyCharm 2017.1 Django 2.0.1 python 3.6.1 使用相对路径引用Models模块 from .models import * 1 在同时存在多个apps的情况下,有机会报错 RuntimeError: Model class app_a... ...
分类:
移动开发 时间:
2020-03-12 18:58:24
阅读次数:
93
问题:qt qmake报错::-1: error: File Makefile.Debug doesn't exist.原因:.pro中使用子目录使用工程时,TEMPLATE = subdirs,写成了SUBDIRS,导致以上错误;所以要根据提示去查找错误,必要时去查看makefile文件,发现确实 ...
分类:
其他好文 时间:
2020-03-03 17:51:00
阅读次数:
96
问题:在Linux上安装了MySQL5.7,应用系统已经初始化,数据已经进入了数据库。使用应用系统时才发现系统有个模块是没有区分大小写在操作数据库的,所以后台报数据库插入SQL出错。因此想要修改MySQL为大小写不敏感。这儿问题就来了:按照网上的大部分的说法,修改/etc/my.cnf,将[mysq ...
分类:
数据库 时间:
2020-02-27 16:21:06
阅读次数:
114
连续张量理解和contiguous()方法使用,view和reshape的区别 待办内存共享:下边的x内存布局是从0开始的,y内存布局,不是从0开始的张量 For example: when you call transpose(), PyTorch doesn't generate new ten... ...
分类:
其他好文 时间:
2020-02-26 19:12:02
阅读次数:
399
在github仓库创建一个分支后,使用webstorm下载分支,发现以下提示: 点clone后,发现本地更新文件无法上传,报错: No tracked branch configured for branch master or the branch doesn't exist. 根据https:/ ...
分类:
Web程序 时间:
2020-02-20 16:53:56
阅读次数:
234
Twos complement: Negative numbers in binary 二进制的负数表示法 负数的表示法: 我们将第一位定义为符号位 ,1代表负数 0代表正数 计算5+(-5) 结果是2 it doesn’t work, 下面我们来介绍 one’s complement 在one’s ...
分类:
其他好文 时间:
2020-02-02 21:28:53
阅读次数:
110
Given a 2D grid of 0s and 1s, return the number of elements in the largest square subgrid that has all 1s on its border, or 0 if such a subgrid doesn' ...
分类:
其他好文 时间:
2020-02-02 13:34:56
阅读次数:
73