码迷,mamicode.com
首页 >  
搜索关键字:note to self    ( 21530个结果
基础的Dos命令
打开CMD的方式 开始+系统+命令提示符 Win键+R输入cmd打开控制台(推荐使用) 在任意的文件夹下面,按住shift键 +鼠标右键点击,在此处打开命令 资源管理器的地址栏前面加上cmd路径 常用的Dos命令 #盘符切换#查看当前目录下的所有文件#切换目录 cd (change director ...
分类:其他好文   时间:2021-05-24 09:36:58    阅读次数:0
php后台+微信小程序 列表页面
//php查询数据 static public function selfs($id){ return self::where('id',$id)->first();}//内置验证 $this->validate(request(),[ 'username'=>'required', 'pwd'=> ...
分类:微信   时间:2021-05-24 08:18:55    阅读次数:0
selenium webDriver属性
1 from selenium import webdriver 2 from time import sleep 3 import random 4 class testCase(object): 5 def __init__(self): 6 url = 'http://www.baidu.co ...
分类:Web程序   时间:2021-05-24 06:36:25    阅读次数:0
每日LeetCode - 28. 实现 strStr()(C语言和Python 3)
C语言 Python 3 class Solution: def strStr(self, haystack: str, needle: str) -> int: return haystack.find(needle) ...
分类:编程语言   时间:2021-05-24 05:52:47    阅读次数:0
WPF DataGrid ToolTip显示内容全局样式
<Style TargetType="DataGridCell"> <Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self} ,Path=Content.Text}"/> </Style> 加入全局 ...
分类:Windows程序   时间:2021-05-24 04:13:23    阅读次数:0
python @property和@attribute.setter理解
```python class Human: def __init__(self, name, age): self.__name = name self.__age = age @property def age(self): return self.__age @age.setter def a ...
分类:编程语言   时间:2021-05-24 03:06:24    阅读次数:0
python aes 加密
文档: https://www.pycryptodome.org/en/latest/ # pip install pycryptodome from Crypto.Cipher import AES import base64 class Encrypt: def __init__(self, k ...
分类:编程语言   时间:2021-05-24 02:53:36    阅读次数:0
五一训练礼包—坐标问题
五一训练礼包—坐标问题 Content · 题目回溯 · 题目分析 · 可行代码 · 总结 (一) 题目回溯 PROBLEM DESCRIPTION INPUT OUTPUT EXEMPLE NOTE (二)题目分析 由题可得,OA = n 令 OB = x ,则 AB = n - x ( 0 <= ...
分类:其他好文   时间:2021-05-04 15:21:29    阅读次数:0
django-rest-framework
api接口和restful规范 api接口 规定了前后台信息交互规则的url链接,也就是前后台信息交互的媒介 接口文档 可以手动写(公司有平台,录到平台里,) 自动生成(coreapi,swagger) restful规范(10条,规定了这么做,公司可以不采用) 1 数据的安全保障,通常使用http ...
分类:其他好文   时间:2021-04-30 12:37:31    阅读次数:0
Django:CBV模式的数据权限实现
需求: 根据不同的账号登录进来显示不同的数据,如:服务器列表,A项目的人员登录只能看到自己项目的服务器数据,超级管理员能看到所有项目的数据。 @method_decorator(login_wrapper, name='dispatch') class UATSITServerInfoList(ge ...
分类:其他好文   时间:2021-04-30 12:18:25    阅读次数:0
21530条   上一页 1 ... 6 7 8 9 10 ... 2153 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!