一款小而实用的开源屏幕录制生成 GIF 图片的软件 ScreenToGif(windows) 项目地址:https://github.com/NickeManarin/ScreenToGif/releases 自己在写博客的有时候要录制屏幕制作 gif 图。ScreenToGif 使用一段时间,录制屏幕后转成 gif 压缩后才 ... continue reading 计算机基础 zhuoyuebiji 2019-9-27 886
安卓(Android)云真机平台 腾讯优测 http://remote.utest.21kunpeng.com/deviceSearch?type=remote 云测 https://www.testin.cn/realmachine/index. ... continue reading 软件测试 zhuoyuebiji 2019-9-27 1739
Django admin list_filter 显示外键字段 models.py class Node(models.Model): """ 节点表 """ name = models.CharField(max_length=128, unique= ... continue reading django zhuoyuebiji 2019-9-25 2148
Django admin 对 list_filter 排序 参考文档 1. https://cloud.tencent.com/developer/ask/34273 2. https://djangosnippets.org/snippets/2885/ 3. ... continue reading django zhuoyuebiji 2019-9-25 1161
Django 数据查询中对字段进行排序 方法一:order_by 排序 # 更新时间字段,倒序排序 articles = Article.objects.filter(show_status=True).order_by('-time_created') # 更新时 ... continue reading django zhuoyuebiji 2019-9-25 1028
Mysql cannot connect(10038) 和 配置远程登录 笔记 设置密码 mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('root ... continue reading mysql zhuoyuebiji 2019-9-25 591
Django 多级分类,一个 model 搞定 代码是一个学习项目代码,觉得这种分类方式挺简便,所以分享出来了。 from django.db import models # Create your models here. class GoodsCategor ... continue reading django zhuoyuebiji 2019-9-25 2140
Django 图片保存至七牛云前再使用 tinify 压缩 工作中应用图片时会觉得图片能压缩又不失去显示效果,岂不美哉,果断用 tinify 来压缩图片,一来可以减小图片占用空间大小,二来放到服务器后还能节省存储空间,用于显示时也能提高图片的访问速度。 之前已经在 djan ... continue reading django zhuoyuebiji 2019-9-24 999
How to Add Custom Action Buttons to Django Admin(添加自定义按钮) From:https://medium.com/@hakibenita/how-to-add-custom-action-buttons-to-django-admin-8d266f5b0d41 For a better readin ... continue reading django zhuoyuebiji 2019-9-24 908
用百度搜索获取 IP 地址的归属地(已经失效) 思路:把 IP 地址当关键词拼上百度的搜索链接,然后用正则匹配想要的信息。 代码: import re import requests requests.packages.urllib3.disable_warnin ... continue reading python zhuoyuebiji 2019-9-24 480