xxr3376 最近的时间轴更新
xxr3376's repos on GitHub
Go · 9 人关注
golspci
lspci parser for Go
Go · 3 人关注
gtboard
A Tensorboard event parser in Go
Python · 1 人关注
Distribute-Crawler-Agent
Python · 1 人关注
Distribute-Crawler-Manager
AutoHotkey · 0 人关注
AHK-script
My AHK-scripts
0 人关注
AI-Software-Startups
A Survey of AI startups
0 人关注
airplay2-receiver
AirPlay 2 Receiver - Python implementation
0 人关注
astronomer
A tool to detect illegitimate stars from bot accounts on GitHub projects
JavaScript · 0 人关注
bootstrap-webpack
bootstrap package for webpack
CoffeeScript · 0 人关注
CatchSync
0 人关注
CREStereo
Official MegEngine implementation of CREStereo(CVPR 2022 Oral).
Python · 0 人关注
DeepSpeed
DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.
Emacs Lisp · 0 人关注
dotfiles2222
My dotfiles
VimL · 0 人关注
dots
my dot files
Python · 0 人关注
emsg
Environment Management Scripts Generator
Go · 0 人关注
etcd
Distributed reliable key-value store for the most critical data of a distributed system
HTML · 0 人关注
extractor
HTML extractor by using XML config file
Python · 0 人关注
FEMA-Visualization
Python · 0 人关注
Flask-Foundation
A solid foundation for your flask app
CSS · 0 人关注
flynngao.github.io
new github blog
JavaScript · 0 人关注
font-awesome-stylus
The iconic font designed for use with Twitter Bootstrap
Go · 0 人关注
go-common
哔哩哔哩 bilibili 网站后台工程 源码
Go · 0 人关注
go-redis-server
A Go implementation of the Redis server protocol
C · 0 人关注
go-sqlite3
sqlite3 driver for go that using database/sql
CoffeeScript · 0 人关注
Grab-Squares
Grab Squares game, a idea from Guokr
Python · 0 人关注
grafanalib
Python library for building Grafana dashboards
JavaScript · 0 人关注
gravityring
N-body simulation in JavaScript and Canvas
JavaScript · 0 人关注
hide-develop
CSS · 0 人关注
ihover
iHover is a collection of hover effects using pure CSS, inspired by codrops article, powered by Sass.
Python · 0 人关注
Learn-Downloader
网络学堂全局下载器
xxr3376

xxr3376

V2EX 第 28380 号会员,加入于 2012-10-17 17:04:51 +08:00
苹果的 EMS 快递太不爽了!完全找不到投诉渠道啊!
Apple  •  xxr3376  •  2021-11-08 13:18:47 PM  •  最后回复来自 Arlene666
28
想买 Mac Mini, 16G 和 Fusion Drive 有必要加么?
Mac mini  •  xxr3376  •  2015-01-21 14:33:15 PM  •  最后回复来自 rooot
17
Minila Air 和 HHKB 入哪个比较好?
问与答  •  xxr3376  •  2015-01-14 23:24:17 PM  •  最后回复来自 Totoria
14
买了个 Dell U2414H。。打开之后摔了。。怎么办!
问与答  •  xxr3376  •  2014-09-17 20:57:01 PM  •  最后回复来自 zjgsamuel
23
xxr3376 最近回复了
2016-10-16 14:45:21 +08:00
回复了 dragonszy 创建的主题 职场话题 清华 EE 博士,华为 40W?
据我目前了解, EE 一个比较厉害的博士拿了华为 60W 的 offer 。我们公司自己也有一些 40W 的本科生在。一起工作后觉得人家拿的多就是应该。。。
2016-05-07 11:38:22 +08:00
回复了 aljun 创建的主题 Python 基于 Gevent,撸了一个 web 框架的轮子
@aljun 看了许多遍。。都觉得你是每个请求都把每个 url_pattern compile 一次的。。。看的好心累。。。
2016-05-07 11:24:48 +08:00
回复了 aljun 创建的主题 Python 基于 Gevent,撸了一个 web 框架的轮子
@aljun 看到了 parse 里面居然是每次临时 compile regex 的。。同学你的高性能去哪里了。。
2016-05-07 11:23:01 +08:00
回复了 aljun 创建的主题 Python 基于 Gevent,撸了一个 web 框架的轮子
@aljun 作为一个 library ,不应该用 print ,而是应该用标准的 logging 。用户可以用 logging scope 去自由的选择要不要看到你的提示。

raise HTTP404Error ,作为一个框架应该是 HTTPStatusError(404),这样就能支持任意的 HTTP Error 了。
2016-05-07 11:20:27 +08:00
回复了 aljun 创建的主题 Python 基于 Gevent,撸了一个 web 框架的轮子
@aljun update 没有啥语义,同样是 update 有的时候是更新了下版本号,有的时候随便改了点别的。
在公司里一般都会用 http://www.ruanyifeng.com/blog/2016/01/commit_message_change_log.html 这类的 commit log ,否则 review 你的 commit 会超费时间。。
2016-05-07 11:18:16 +08:00
回复了 aljun 创建的主题 Python 基于 Gevent,撸了一个 web 框架的轮子
@aljun 比如 gevent 的 WSGI IO 库( gevent ), parse query_string 的 urlparse 标准库已经有了。。为何你还要重新造轮子,更何况你的 query_string parser 写的不对。。
2016-05-07 11:16:00 +08:00
回复了 aljun 创建的主题 Python 基于 Gevent,撸了一个 web 框架的轮子
@Owenjia 支持,为了极其不明显的性能优化把代码的复杂度提升了一个等级完全得不偿失。

顺便看了看代码,一屏幕的

{{
try:
self.request['cookies'] = self._environ['HTTP_COOKIE']
except KeyError:
self.request['cookies'] = None
}}

为啥不直接 self.request['cookies'] = self._environ.get('HTTP_COOKIE', None) 呢。。
2016-05-07 11:09:57 +08:00
回复了 aljun 创建的主题 Python 基于 Gevent,撸了一个 web 框架的轮子
楼主你的 git commit log 实在是太过于混乱了。。。各种 update 不知道在干吗,以及翻看了一下以前的项目发现一屏幕“~~~~”。。。

本来想看看代码精妙之处的,不过看着实在太累。。
2015-04-25 21:11:04 +08:00
回复了 Livid 创建的主题 Python InsecurePlatformWarning
这个是因为2.7.9之前的python提供的SSL环境不够安全,更新到2.7.9就可以了。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2786 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 18ms · UTC 02:21 · PVG 10:21 · LAX 18:21 · JFK 21:21
Developed with CodeLauncher
♥ Do have faith in what you're doing.