上一页 1 ··· 63 64 65 66 67 68 69 70 71 ··· 186 下一页
摘要: https://asgi.readthedocs.io/en/latest/ 阅读全文
posted @ 2020-03-11 09:09 papering 阅读(137) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/TAiQjfkxJd_uDkDHNE_Sjg 阅读全文
posted @ 2020-03-10 18:50 papering 阅读(262) 评论(0) 推荐(0) 编辑
摘要: django-guardian (1.1.1+) - Object level permissions support. Home - Django REST framework https://www.django-rest-framework.org/#example 阅读全文
posted @ 2020-03-10 12:30 papering 阅读(172) 评论(0) 推荐(0) 编辑
摘要: t 阅读全文
posted @ 2020-03-10 09:23 papering 阅读(120) 评论(0) 推荐(0) 编辑
摘要: https://book.douban.com/author/104388/books?start=0&format=pic&sortby=collect 阅读全文
posted @ 2020-03-10 09:22 papering 阅读(171) 评论(0) 推荐(0) 编辑
摘要: LINUX动态库(.SO)搜索路径(目录)设置方法 [root@VM_0_11_centos ld.so.conf.d]# cat /etc/ld.so.confinclude ld.so.conf.d/*.conf[root@VM_0_11_centos ld.so.conf.d]# ll -as 阅读全文
posted @ 2020-03-09 21:00 papering 阅读(2185) 评论(0) 推荐(0) 编辑
摘要: functools.singledispatchmethod(Python 3.8) | 码农网 https://www.codercto.com/a/83245.html 阅读全文
posted @ 2020-03-09 10:02 papering 阅读(360) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/BGHOw12iCASJy1pgkYZi3w 当数据处理做不到实时,应该怎么办? 阅读全文
posted @ 2020-03-08 10:47 papering 阅读(194) 评论(0) 推荐(0) 编辑
摘要: t 阅读全文
posted @ 2020-03-08 09:18 papering 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 1 继承和多态 - 廖雪峰的官方网站 https://www.liaoxuefeng.com/wiki/1016959663602400/1017497232674368 Guo磊 python与鸭子类型 部分参考来源:作者:JasonDing https://www.jianshu.com/p/6 阅读全文
posted @ 2020-03-08 09:13 papering 阅读(209) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/gWYL2Th9Go5LDhkyGB_rYQ 阅读全文
posted @ 2020-03-06 23:59 papering 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 练习题: -2 思考题最后给你留两道思考题吧,你可以想一想 IPv4、IPv6、本地套接字格式以及通用地址套接字,它们有什么共性呢?如果你是 BSD 套接字的设计者,你为什么要这样设计呢? -1 为什么本地套接字格式不需要端口号,而 IPv4 和 IPv6 套接字格式却需要端口号呢? 1 既然缓冲区 阅读全文
posted @ 2020-03-06 21:55 papering 阅读(669) 评论(0) 推荐(0) 编辑
摘要: Python - Algorithm Design - Tutorialspoint https://www.tutorialspoint.com/python_data_structure/python_algorithm_design.htm 阅读全文
posted @ 2020-03-06 20:25 papering 阅读(308) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2020-03-06 18:30 papering 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Linux网络状态工具ss命令使用详解 – 运维生存时间 http://www.ttlsa.com/linux-command/ss-replace-netstat/ 每天一个linux命令(57):ss命令 - peida - 博客园 https://www.cnblogs.com/peida/a 阅读全文
posted @ 2020-03-06 15:07 papering 阅读(1189) 评论(0) 推荐(0) 编辑
摘要: 给定一幅由N × N矩阵表示的图像,其中每个像素的大小为4字节,编写一种方法,将图像旋转90度。 不占用额外内存空间能否做到? 示例 1: 给定 matrix = [ [1,2,3], [4,5,6], [7,8,9]], 原地旋转输入矩阵,使其变为:[ [7,4,1], [8,5,2], [9,6 阅读全文
posted @ 2020-03-05 22:34 papering 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 小结 1 Python标准的解释器没有针对尾递归做优化,任何递归函数都存在栈溢出的问题。 尾递归 - 51CTO.COM https://book.51cto.com/art/201212/370096.htm 尾递归_百度百科 https://baike.baidu.com/item/尾递归/55 阅读全文
posted @ 2020-03-04 12:45 papering 阅读(682) 评论(0) 推荐(0) 编辑
摘要: t 阅读全文
posted @ 2020-03-03 10:13 papering 阅读(104) 评论(0) 推荐(0) 编辑
摘要: t 阅读全文
posted @ 2020-03-03 09:11 papering 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 小结 1、cpy的垃圾回收会对调用__del__多次;pypy仅仅一次; https://www.liaoxuefeng.com/wiki/1016959663602400/1016966024263840 PyPy是另一个Python解释器,它的目标是执行速度。PyPy采用JIT技术,对Pytho 阅读全文
posted @ 2020-03-03 09:04 papering 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 1、 accept: 电话铃响起了…… 当客户端的连接请求到达时,服务器端应答成功,连接建立,这个时候操作系统内核需要把这个事件通知到应用程序,并让应用程序感知到这个连接。这个过程,就好比电信运营商完成了一次电话连接的建立, 应答方的电话铃声响起,通知有人拨打了号码,这个时候就需要拿起电话筒开始应答 阅读全文
posted @ 2020-02-29 07:47 papering 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、bind listen 区别 2、一个套接字可以接收的并发数目 bind 函数只是让我们的套接字和地址关联,如同登记了电话号码。如果要让别人打通电话,还需要我们把电话设备接入电话线,让服务器真正处于可接听的状态,这个过程需要依赖 listen 函数。 初始化创建的套接字,可以认为是一个" 阅读全文
posted @ 2020-02-29 07:41 papering 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 比如一台机器有两块网卡,IP 地址分别是 202.61.22.55 和 192.168.1.11,那么向这两个 IP 请求的请求包都会被我们编写的应用程序处理。那么该如何设置通配地址呢? 对于 IPv4 的地址来说,使用 INADDR_ANY 来完成通配地址的设置;对于 IPv6 的地址来说,使用 阅读全文
posted @ 2020-02-29 07:35 papering 阅读(468) 评论(0) 推荐(1) 编辑
摘要: https://mp.weixin.qq.com/s/YfHszSORHP_-W7pJA8PEcg 如何设计一个高可用、高并发秒杀系统 作者:vincentsu,腾讯 PCG 后台开发工程师 如今的互联网已经在海量服务领域有了很成熟的理论,因此自己也很庆幸,能够从 0 到 1 完整践行海量服务。微视 阅读全文
posted @ 2020-02-29 07:12 papering 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、在创建套接字时,选择tcp/udp。 要创建一个可用的套接字,需要使用下面的函数: int socket(int domain, int type, int protocol) type 可用的值是: SOCK_STREAM: 表示的是字节流,对应 TCP; SOCK_DGRAM: 表示 阅读全文
posted @ 2020-02-28 17:10 papering 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 付宝研究员王益:“对我影响最大的三本编程书” 阅读全文
posted @ 2020-02-17 22:37 papering 阅读(143) 评论(0) 推荐(0) 编辑
摘要: e^π和π^e谁大的问题 阅读全文
posted @ 2020-02-17 22:36 papering 阅读(351) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/3232943/update-value-of-a-nested-dictionary-of-varying-depth import copy d = {'k': 'kv'} j_sc = {'k1': copy.copy(d 阅读全文
posted @ 2020-02-13 01:13 papering 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 不精确 具有相对性 对人类活动的观察导出 依赖于人的主观判断力 通常符合人的直觉 阅读全文
posted @ 2020-02-12 23:33 papering 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 啊 阅读全文
posted @ 2020-02-10 23:51 papering 阅读(284) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/I5va3PI1oGIj8R_n3Nw2yw 1115. 交替打印 FooBar - 力扣(LeetCode) https://leetcode.cn/problems/print-foobar-alternately/description/ 阅读全文
posted @ 2020-02-10 12:06 papering 阅读(145) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2020-02-09 12:52 papering 阅读(229) 评论(0) 推荐(0) 编辑
摘要: https://docs.python.org/3.7/whatsnew/3.7.html#pep-552-hash-based-pyc-files 阅读全文
posted @ 2020-01-21 16:51 papering 阅读(207) 评论(0) 推荐(0) 编辑
摘要: Most basic operations in Go are not synchronized. In other words, they are not concurrency-safe. https://go101.org/article/channel.html 阅读全文
posted @ 2020-01-20 23:36 papering 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 When a goroutine sends a value to a channel, we can view the goroutine releases the ownership of some values. When a goroutine receives a value 阅读全文
posted @ 2020-01-20 23:32 papering 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2020-01-20 23:30 papering 阅读(543) 评论(0) 推荐(0) 编辑
摘要: https://softwareengineering.stackexchange.com/questions/113256/what-is-the-difference-between-btree-and-rtree-indexing 52 BTree BTree (in fact B*Tree) 阅读全文
posted @ 2020-01-20 19:50 papering 阅读(200) 评论(0) 推荐(0) 编辑
摘要: https://www.jb51.net/article/29885.htm @echo off&setlocal enabledelayedexpansion set li0=┌───────────────────┐ set li1=│┌┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┐│1 for /l % 阅读全文
posted @ 2020-01-20 17:35 papering 阅读(731) 评论(0) 推荐(0) 编辑
摘要: https://docs.python.org/zh-cn/3/library/asyncio-dev.html#running-blocking-code 阅读全文
posted @ 2020-01-20 17:23 papering 阅读(343) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2020-01-19 21:24 papering 阅读(184) 评论(0) 推荐(0) 编辑
上一页 1 ··· 63 64 65 66 67 68 69 70 71 ··· 186 下一页