
python
文章平均质量分 69
Sengo_1993
你多走了许多弯路,却看到了更多的风景。你觉得一切为时已晚,却恰是刚刚好的开始。
展开
-
Leetcode刷题笔记-Sliding window
sliding window原创 2022-07-10 13:34:06 · 332 阅读 · 1 评论 -
python基于protobu+websocket+tornado实现多种二进制协议消息的接收发送和解析demo
protobuf方面资料实在少,中文资料更少。由于公司需要,自己看文档写了一个demo代码放到 :https://git.oschina.net/sengo/ws_protobuf说明:demo自定义了5种protobuf消息, 用户发送消息时,通过把定义的protobuf消息类型编号(4字节 int32)和 接收方的用户ID(4字节 int32) 写入二进制protobuf头部,原创 2017-04-30 23:46:08 · 3202 阅读 · 0 评论 -
python:多线程+队列Queue 实现:生产者和消费者demo
# -*- coding: UTF-8 -*-# __author__ = 'Sengo'import Queueimport threadingimport timeclass BookThread(threading.Thread): def __init__(self, thread_id, q, func): threading.Thread.__in原创 2017-04-26 14:55:28 · 5978 阅读 · 0 评论 -
Project 1(Computer Vision): Images of the Russian Empire
BackgroundSergei Mikhailovich Prokudin-Gorskii (1863-1944) was a photographer ahead of his time. He saw color photography as the wave of the future and came up with a simple idea to produce color phot...原创 2018-02-08 10:49:14 · 925 阅读 · 0 评论 -
Python多继承
参考了这篇博客打了一遍:Python - 对多继承以及super的一些了解class D(object): def foo(self): print "class D"class B(D): passclass C(D): def foo(self): print "class C"class A(B, C): pa...原创 2019-03-23 09:59:15 · 471 阅读 · 0 评论