-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlinks_latest.txt
1470 lines (1148 loc) · 37.3 KB
/
links_latest.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2016,01,02
==========
home
Brett Cannon
http://www.snarky.ca/
数析学院
http://datacademy.io/
2016,01,01
==========
home
Lucida
http://lucida.me/
2015,12,28
==========
home
浅谈 Gevent 与 Tornado
http://www.pywave.com/2012/08/17/about-gevent-and-tornado/
2015,12,27
==========
home
YourLanguageSucks
https://wiki.theory.org/YourLanguageSucks
2015,11,30
==========
home
Django's Inlineformset_factory and You
http://charlesleifer.com/blog/djangos-inlineformsetfactory-and-you/
2015,11,27
==========
home
移动端企业IM系统优化
http://www.csdn.net/article/2015-11-26/2826336
2015,11,20
==========
home
Rethinking Systems Programming
By Christoph Burgdorf
http://thoughtram.io/rust-and-nickel/
2015,11,14
==========
home
This Week in D
http://arsdnet.net/this-week-in-d/
2015,11,08
==========
home
如何设计一个权限系统
http://damnever.github.io/2015/09/19/how-to-design-a-permission-system/
2015,11,06
==========
home
Python vs. Ruby
http://dpk.io/pyvsrb
2015,10,29
==========
home
[译]拳头公司聊天服务架构:服务器篇
http://www.jointforce.com/jfperiodical/article/1116
CHAT SERVICE ARCHITECTURE: SERVERS
http://engineering.riotgames.com/news/chat-service-architecture-servers
2015,10,21
==========
home
Rust to the rescue (of Ruby)
https://medium.com/@fbzga/rust-to-the-rescue-of-ruby-2067f5e1dc25
2015,10,19
==========
home
Pylons 作者把 Go 项目换成了 Python
http://python-china.org/t/909
2015,10,17
==========
home
开源软件架构翻译计划
http://www.ituring.com.cn/minibook/19
Spark快速入门
http://shzhangji.com/blog/2014/12/16/spark-quick-start/
A Vim + Haskell Workflow
http://www.stephendiehl.com/posts/vim_haskell.html
Haskell for Web Developers
http://www.stephendiehl.com/posts/haskell_web.html
2015,10,13
==========
home
Rust in Detail: Writing Scalable Chat Service from Scratch
https://nbaksalyar.github.io/2015/07/10/writing-chat-in-rust.html
27 languages to improve your Python
http://www.curiousefficiency.org/posts/2015/10/languages-to-improve-your-python.html
2015,10,07
==========
home
JSON数据乱码问题
http://ifeve.com/json-code-problem/
2015,10,03
==========
home
Profiling Python in Production
https://nylas.com/blog/performance
Random Forests in Python
http://blog.yhathq.com/posts/random-forests-in-python.html
How import works in Python
http://livoras.com/post/7
2015,10,01
==========
home
使用Redis作为一个LRU缓存
http://ifeve.com/lru-cache/
2015,09,29
==========
home
Writing C in Cython
http://spacy.io/blog/writing-c-in-cython/
A Comparison of Programming Languages in Economics
http://economics.sas.upenn.edu/~jesusfv/comparison_languages.pdf
2015,09,27
==========
home
How to install OS X Yosemite in Virtualbox with Yosemite Zone
http://www.macbreaker.com/2015/01/virtualbox-yosemite-zone.html
Converting MySQL to PostgreSQL
https://en.wikibooks.org/wiki/Converting_MySQL_to_PostgreSQL
2015,09,17
==========
Web Crawler With asyncio Coroutines
http://aosabook.org/en/500L/a-web-crawler-with-asyncio-coroutines.html
2015,09,16
==========
home
Ten reasons not to use a statically typed functional programming language -A rant against something I don't get
http://fsharpforfunandprofit.com/posts/ten-reasons-not-to-use-a-functional-programming-language/
2015,09,15
==========
home
PEP 0461 -- Adding % formatting to bytes and bytearray
https://www.python.org/dev/peps/pep-0461/
PEP 0475 -- Retry system calls failing with EINTR
https://www.python.org/dev/peps/pep-0475/
2015,09,06
=========
office
https://github.com/TangentMicroServices
https://github.com/TangentMicroServices/MicroServicesDocumentation
2015,09,04
==============
home
Uther 小记 - 一个简单地蠢萌机器人
http://blog.callmewhy.com/2015/08/09/how-to-make-uther/
VSCode + PyFlake 打造python开发环境
http://kasicass.blog.163.com/blog/static/395619201551151446875
Integrating the flask microframework with the peewee ORM
http://charlesleifer.com/blog/integrating-flask-microframework-peewee-orm/
Structuring flask apps, a how-to for those coming from Django
http://charlesleifer.com/blog/structuring-flask-apps-a-how-to-for-those-coming-from-django/
2015,08,26
==========
home
SQLite这么娇小可爱,不多了解点都不行啊
http://supermao.cn/sqlitezhe-yao-jiao-xiao-ke-ai-bu-duo-liao-jie-dian-du-bu-xing-a/
2015,08,23
==========
home
学习笔记:The Log(我所读过的最好的一篇分布式技术文章)
http://www.cnblogs.com/foreach-break/p/notes_about_distributed_system_and_The_log.html
2015,08,13
========
home
Pinterest的架构变迁
http://www.csdn.net/article/2013-01-09/2813533-Pinterest-change-structure-reduce-EC2
Pinterest首位中国工程师陶涛:Pinterest系统构架变迁
http://www.csdn.net/article/2013-08-30/2816757
Django CSRF Exempt Class Based Views
http://zachstevenson.lawyer/2015/06/10/django-csrf-exempt-class-based-views/
2015,08,06
=========
office
Transforming Code into Beautiful, Idiomatic Python
https://gist.github.com/JeffPaine/6213790
Web服这个屎盆子不够装了——记inetd的现代版Mozilla Circus
http://blog.est.im/post/45176433551
dynamic app routing for Bottle.py based on hostname / domain
http://blog.est.im/post/43472256396
Python 3.3很多激动人心的新特性啊
http://blog.est.im/post/44511368373
Less copies in Python with the buffer protocol and memoryviews
http://eli.thegreenplace.net/2011/11/28/less-copies-in-python-with-the-buffer-protocol-and-memoryviews/
2015,08,03
========
home
Scaling database with Django and HAProxy
http://engineering.hackerearth.com/2013/10/07/scaling-database-with-django-and-haproxy/
office
Dissecting Message Queues
http://bravenewgeek.com/dissecting-message-queues/
A Look at Nanomsg and Scalability Protocols (Why ZeroMQ Shouldn’t Be Your First Choice)
http://bravenewgeek.com/a-look-at-nanomsg-and-scalability-protocols/
Single Sign-On in Micro Service Architecture
http://stackoverflow.com/a/27284232/3449199
2015,08,02
========
home
Django QuerySets : 真他妈棒?
http://www.oschina.net/translate/django-querysets-fucking-awesome-yes
2015,08,01
========
home
http://www.zenlife.tk/
Guido van Rossum's EuroPython 2015 keynote
https://lwn.net/Articles/651967/
为什么不要把ZooKeeper用于服务发现
http://www.infoq.com/cn/news/2014/12/zookeeper-service-finding
2015,07,31
=========
office
PJE on Programming
http://dirtsimple.org/programming/index.html
Chris Richardson's blog
http://plainoldobjects.com/
How we build microservices at Karma
https://blog.yourkarma.com/building-microservices-at-karma
Ruby Web服务器:这十五年
http://www.hanyi.name/blog/2015/06/28/ruby-webserver-last-10-years/
微服务: 为可部署和可扩展分解应用
http://www.jdon.com/46396
微服务:分解应用以实现可部署性和可扩展性
http://www.infoq.com/cn/articles/microservices-intro
Microservice, service registry, API gateway and data sharing
http://stackoverflow.com/q/29669180/3449199
2015,07,27
========
home
Python Interview Question and Answers
http://www.ilian.io/python-interview-question-and-answers/
http://www.bogotobogo.com/python/python_interview_questions.php
2015,07,26
========
home
使用API网关构建微服务
http://www.infoq.com/cn/articles/construct-micro-service-using-api-gateway
Introduction to Microservices
https://www.nginx.com/blog/introduction-to-microservices/
Building Microservices: Using an API Gateway
https://www.nginx.com/blog/building-microservices-using-an-api-gateway/
2015,07,25
========
home
请玉伯一起来聊一聊“所向无敌的土方法”
http://weibo.com/p/1001603868404359535571
去了大公司就一定能学到很牛的技术么?
http://weibo.com/p/1001603868139464033961
产品小团队
http://www.jianshu.com/p/9bf5fe5012ed
2015,07,22
========
home
互联网秒杀业务设计
http://jiagou.baijia.baidu.com/article/108134
C++的反思
http://www.skywind.me/blog/archives/1398
常用的Node.js设计模式
http://wwsun.me/posts/node-design-patterns.html
为什么我希望用C而不是C++来实现ZeroMQ
http://news.cnblogs.com/n/143021/
2015,07,19
========
home
基于Token的认证和基于声明的标识
http://codelife.me/blog/2014/03/26/token-based-authentication-and-claims-based-identity/
关于 Token,你应该知道的十件事
http://alvinzhu.me/blog/2014/08/26/10-things-you-should-know-about-tokens/
python使用json web token (jwt)实现http api的加密传输
http://xiaorui.cc/2015/05/05/python%E4%BD%BF%E7%94%A8json-web-token-jwt%E5%AE%9E%E7%8E%B0http-api%E7%9A%84%E5%8A%A0%E5%AF%86%E4%BC%A0%E8%BE%93/
2015,07,17
========
office
A Django Model Manager for Soft Deleting Records and How to Customize the Django Admin
http://codespatter.com/2009/07/01/django-model-manager-soft-delete-how-to-customize-admin/
Soft delete for Django ORM, with support for undelete.
https://github.com/scoursen/django-softdelete
2015,07,13
========
home
Scaling with async IO (gevent and tulip)
http://omarkhan.me/presentations/python-asyncio.html
2015,06,14
========
home
My initial experience with Rust
http://ericsink.com/entries/rust1.html
2015,06,08
========
home
http://www.the5fire.com/django-database-access-optimization.html
https://www.djangopackages.com/grids/g/admin-interface/
2015,05,31
========
home
https://github.com/cundi/Django-Design-Patterns-and-Best-Practices
https://github.com/jfalkner/Efficient-Django-QuerySet-Use
2015,05,24
========
home
http://fleurer-lee.com/2015/05/23/raft-note.html
说说这篇「我为什么从python转向go」
http://www.jianshu.com/p/xiQzpL
2015,05,14
========
home
伴随我成长的编程书
http://www.cnblogs.com/geniusvczh/archive/2013/03/24/2978575.html
2015,05,10
=========
home
http://www.cnblogs.com/netfocus/
http://blog.csdn.net/oldmanzhao
http://blog.csdn.net/jexus
2015,05,05
==========
home
http://www.jdon.com/
2015,03,31
home
魔兽争霸3技术分析资源汇总
http://jjyy.guru/war3-tech/
2015,01,06
home
DIY: Make Your Own Programming Language
http://blog.ppelgren.se/2015-01-03/DIY-Make-Your-Own-Programming-language/
2014,12,28
home
Lobsters
https://lobste.rs/
2014,12,25
home
PyTab在线手册中心
http://docs.pythontab.com/
2014,12,15
home
ApacheBench & HTTPerf
http://gwan.com/en_apachebench_httperf.html
2014,11,16
home
YC创业课中文社区
http://startupclass.club/
精益技术简历之道——改善技术简历的47条原则
http://zh.lucida.me/blog/lean-technical-resume/
2014,10,18
home
http://sahandsaba.com/understanding-asyncio-node-js-python-3-4.html
2014,10,17
home
http://pythonsweetness.tumblr.com/post/45227295342/fast-pypy-compatible-ordered-map-in-89-lines-of-python
https://github.com/dw/py-lmdb
2014,10,12
home
http://www.eecs.berkeley.edu/~sangjin/2012/12/21/epoll-vs-kqueue.html
2014,09,07
home
http://stromberg.dnsalias.org/~dstromberg/datastructures/
2014,09,06
home
http://www.quora.com/How-does-Python-compare-to-C/answer/Alex-Yakunin
https://speakerdeck.com/alex/why-python-ruby-and-javascript-are-slow
https://github.com/kennethreitz/dream-python
http://www.cnblogs.com/me-sa/p/best_thing_i_met.html
2014,09,01
home
http://blog.etianen.com/blog/2014/01/19/gunicorn-heroku-django/
2014,08,31
home
http://www.cs286.net/home/reading-list
https://github.com/rxin/db-readings
2014,08,14
home
http://blog.sina.com.cn/vgimm
2014,08,10
home
http://www.litrin.net/2013/03/27/web%E7%BD%91%E7%AB%99%E7%9A%84%E5%87%A0%E4%B8%AA%E5%B9%B6%E5%8F%91%E9%87%8F%E7%BA%A7/
http://tech.uc.cn/
http://tech.uc.cn/?p=1932
http://tech.uc.cn/?p=1910
http://tech.uc.cn/?p=1131
http://tech.uc.cn/?p=914
2014,08,02
home
http://alextechrants.blogspot.com/2013/11/10-common-stumbling-blocks-for.html
http://alextechrants.blogspot.com/2014/01/unit-testing-sqlalchemy-apps-part-2.html
http://kmike.ru/python-data-structures/
2014,06,30
home
http://zionyun.wordpress.com/2014/05/29/the-last-thing-d-needs/
2014,06,28
home
www.ibm.com/developerworks/cn/opensource/os-cn-zookeeper/index.html
http://www.searchtb.com/2011/01/zookeeper-research.html
2014,05,17
home
http://www.toptal.com/blog
http://www.cnblogs.com/haibindev/
2014,05,13
home
http://taokeqin.com/python-realtime.html
http://mrjoes.github.io/2013/06/21/python-realtime.html
http://mrjoes.github.io/2011/12/15/sockjs-bench.html
2014,05,03
home
http://programming.oreilly.com/2014/04/simplifying-django.html
2014,04,10
home
http://www.pythoncentral.io/
2014,04,06
home
http://www.infoq.com/cn/articles/web-security-practical-operation
2014,03,28
home
http://it-ebooks.info/
2014,03,22
home
http://blog.miguelgrinberg.com/post/the-package-dependency-blues
2014,03,07
home
http://www.vaikan.com/history-of-programming-languages-illustrated-with-pictures-and-large-fonts/
http://www.soimort.org/posts/160/
2014,02,25
home
http://blog.codinglabs.org/
Python coding interview for HKBU
http://www.interviewzen.com/interview/vQZ8vY
2014,01,13
home
http://liutos.github.io/
http://eli.thegreenplace.net/category/programming/lisp/sicp/
2014,01,10
home
https://code.facebook.com/posts/218678814984400/scaling-mercurial-at-facebook
2014,01,08
office
http://www.cnblogs.com/zhengsyao/p/how_erlang_does_scheduling_translation.html
2014,01,06
office
http://python-notes.curiousefficiency.org/en/latest/python3/questions_and_answers.html
https://github.com/vhf/free-programming-books
2014,01,02
office
http://eli.thegreenplace.net/2011/04/25/passing-extra-arguments-to-pyqt-slot/
2013,12,27
office
http://zetcode.com/
2013,12,24
office
Jepsen:测试PostgreSQL、Redis、MongoDB以及Riak的分区容忍性
http://www.infoq.com/cn/articles/jepsen
2013,12,23
office
http://glinden.blogspot.se/2009/02/details-on-yahoos-distributed-database.html
http://www.slideshare.net/iso1600/key-value-store
2013,12,20
office
选择 Gunicorn + worker type 作为 WSGI 服务器
http://python-china.org/topic/100
2013,12,14
home
[Python]惊喜不断11特别版:Guido采访听后感
http://bbs.byr.cn/#!article/Linux/132498
2013,12,11
office
为 C/C++ 库定制 Python Binding
http://python-china.org/topic/704
home
https://github.com/isnowfy/snownlp
http://zouyesheng.com/captcha.html
http://zouyesheng.com/live-with-email-client.html
2013,12,10
home
Linux下高并发socket最大连接数所受的各种限制
http://blog.csdn.net/guowake/article/details/6615728
2013,12,09
office
http://xach.livejournal.com/
2013,11,29
office
http://fabtools.readthedocs.org
https://bitmessage.org
http://blog.startifact.com/posts/my-exit-from-zope.html
http://techspot.zzzeek.org/2012/01/11/django-style-database-routers-in-sqlalchemy/
http://pypix.com/python/building-flask-blog-part-1/
http://pypix.com/python/building-flask-blog-part2/
2013,11,25
home
不同的角度,不同的玩法——在Python上实现Fibonacci函数
http://www.cnblogs.com/figure9/archive/2010/08/30/1812927.html
2013,11,24
home
http://lisptips.com/
http://blog.liancheng.info/
http://blog.liancheng.info/job-hunting-in-california/
http://blog.liancheng.info/why-i-hate-markdown/
2013,11,22
office
http://tech.oyster.com/save-ram-with-python-slots/
home
http://lepture.com/en/2013/create-oauth-server
2013,11,19
office
http://mindref.blogspot.co.uk/2011/11/nginx-rewrite-all-to-https.html
2013,11,15
office
10 common stumbling blocks for SQLAlchemy newbies
http://alextechrants.blogspot.com/2013/11/10-common-stumbling-blocks-for.html
2013,11,07
home
http://aphyr.com/posts/283-call-me-maybe-redis
2013,11,05
office
http://www.sqlalchemy.org/trac/wiki/UsageRecipes/UniqueObject
2013,11,01,
http://www.pythonapi.com/
http://rogueleaderr.com/post/65157477648/the-idiomatic-guide-to-deploying-django-in-production
2013,10,27
home
http://www.facebook.com/notes/facebook-engineering/under-the-hood-mysql-pool-scanner-mps/10151750529723920
2013,10,25
office
Tulip: Async I/O for Python 3 (Guido van Rossum talk at SF Python meetup)
https://www.dropbox.com/s/essjj4qmmtrhys4/SFMeetup2013.pdf
2013,10,18
office
http://blog.8thlight.com/uncle-bob/2012/08/13/the-clean-architecture.html
http://tomforb.es/adding-tail-call-optimization-to-python
tail_call.py
https://gist.github.com/orf/41746c53b8eda5b988c5
http://engineering.hackerearth.com/2013/10/07/scaling-database-with-django-and-haproxy/
https://speakerdeck.com/mstepniowski/taming-multiple-databases-with-django
http://justcramer.com/
http://www.oschina.net/translate/manipulating-url-using-javascript-without-freshing-the-page
2013,10,17
office
命名纠结
http://mao.li/%E5%91%BD%E5%90%8D%E7%BA%A0%E7%BB%93/
2013,10,15
office
You could create a second user, c, with the same UID.
http://superuser.com/a/367611
2013,10,12
office
Agile Web Development with Rails 4th 3.2版本
http://ruby-china.org/topics/1626
2013,10,10
home
http://blog.xupeng.me/2013/09/25/mysqldb-args-processing/
2013,09,29
office
http://www.dr-josiah.com/2011/02/some-redis-use-cases.html
Redis中的事务
http://www.wubiaoblog.com/archives/611
2013,09,28
home
http://blog.codingnow.com/2009/10/rss_reader.html
http://blog.codingnow.com/2009/09/ssl_mitm_attack.html
http://blog.codingnow.com/2012/02/forum.html
2013,09,27
office
Debugging and Decrypting an HTTPS API: Rackspace Cloudfiles
http://blog.techresidents.com/post/62242774205
2013,09,24
office
https://chris-lamb.co.uk/posts/distributing-locking-python-and-redis
2013,09,22
office
Experimentation in porting the Go concurrency model in Python
https://docs.google.com/file/d/0B2gNkR7hgkIRVFgwSWR4Y2JaZHc/edit
2013,09,21
home
Extract part of a video with a one-line command
http://askubuntu.com/a/59388
2013,09,17
office
http://www.80sec.com/session-hijackin.html
nginx性能优化 (backlog)
http://blog.csdn.net/siddontang/article/details/8977473
Linux中listen()系统调用的backlog参数分析
http://blog.csdn.net/justlinux2010/article/details/8604676
2013,09,13
office
Reading plain Python configure file
http://stackoverflow.com/a/8226090
2013,09,11
office
What is the difference between tinyint, smallint, mediumint, bigint and int in sql?
http://stackoverflow.com/a/2991419
2013,09,10
home
http://amix.dk/blog/post/19588#How-Reddit-ranking-algorithms-work
2013,09,01
home
http://solar-blogg.blogspot.com/2013/04/build-llvmclang-33-on-windows-x64.html
2013,08,31
home
http://ihacklog.com/post/sublime-text-3-build-3047.html
2013,08,30
office
http://stackoverflow.com/questions/3951722/whats-the-difference-between-unicode-and-utf8
http://rrn.dk/the-difference-between-utf-8-and-unicode
2013,08,27
home
Python数据库ORM SQLAlchemy 0.7学习笔记(6) 查询
http://wangye.org/blog/archives/727/
mysql处理百万级数据库常识
http://www.kaifajie.cn/mySQL/10354.html
2013,08,23
office
Deconstructing Deferred
https://groups.google.com/forum/#!topic/python-tulip/ut4vTG-08k8/discussion
Closures In Python
http://tech.pro/tutorial/1512/python-decorators
http://unchainyourbrain.com/using-openssl-from-python-with-python-cffi
http://tech.pro/tutorial/1516/representing-state-machines-with-co-routines-in-python
2013,08,20
home
HTTPS工作原理和TCP握手机制
http://www.cnblogs.com/ttltry-air/archive/2012/08/20/2647898.html
2013,08,16
home
Go网络编程
http://jan.newmarch.name/go/zh/index.html
GBT小组游戏空间
http://renxufeng.ys168.com/
office
Super Advanced Python
http://www.youtube.com/watch?v=u2KZJzoz-qI
2013,08,12
home
lilydjwg 源建立
https://bbs.archlinuxcn.org/viewtopic.php?id=1695
http://eng.42go.com/scala-vs-go-tcp-benchmark/ go server + go client 22.02125152
2013,08,08
office
http://appsandsecurity.blogspot.co.uk/2012/01/stateless-csrf-protection.html
http://pydoc.net/Python/middlewares/0.1/middlewares.csrf/
2013,08,07
office
http://blog.zfdang.com/2013/01/store-encrypted-password-with-pbkdf2/
2013,08,04
home
http://www.infoq.com/cn/news/2013/06/10-sins-for-scalability
http://www.zolazhou.com/posts/primary-key-selection-in-database-partition-design/
http://www.zolazhou.com/posts/sharding-at-yupoo/
2013,08,03
home
http://stackoverflow.com/questions/260403/searching-across-shards
2013,08,02
home
https://www.dropbox.com/developers/blog/48/how-the-datastore-api-handles-conflicts-part-1-basics-of-offline-conflict-handling
2013,07,31
home
类似于QQ游戏百万人同时在线的服务器架构实现 - 2004,12,12
http://blog.csdn.net/sodme/article/details/213995
QQ的架构讨论 - 2006,02
https://groups.google.com/forum/#!topic/dev4server/DXJmjRHEiGs
逆向思维--魔兽世界封包分析(1) - 2005,06,18
http://blog.csdn.net/sodme/article/details/397371
负载均衡--大型在线系统实现的关键(上篇)(再谈QQ游戏百万人在线的技术实现)
http://blog.csdn.net/sodme/article/details/393165
负载均衡--大型在线系统实现的关键(下篇)(服务器集群架构的设计与选择)
http://blog.csdn.net/sodme/article/details/394576
2013,07,30
home
https://redis.readthedocs.org/en/latest/list/rpoplpush.html
2013,07,29
office
http://skippylovesmalorie.wordpress.com/2010/02/12/how-to-generate-a-self-signed-certificate-using-pyopenssl/
http://blog.richardknop.com/2012/08/create-a-self-signed-x509-certificate-in-python/
2013,07,28
home
http://blog.disqus.com/post/51155103801/trying-out-this-go-thing
2013,07,23
home
http://www.fuchaoqun.com/2009/02/5-ways-to-make-hexadecimal-identifiers-perform-better-on-mysql/
2013,07,19
office
http://blog.gocept.com/2013/07/15/reliable-file-updates-with-python/
http://www.luke.maurits.id.au/blog/post/threads-and-signals-in-python.html
http://code.activestate.com/recipes/496735-workaround-for-missed-sigint-in-multithreaded-prog/
2013,07,15
home
http://www.ustack.com/ceph-distributed-block-storage/
office
http://greg.brim.net/page/building_a_consistent_hashing_ring.html
http://lurklurk.org/pynamo/pynamo.html
http://techspot.zzzeek.org/2012/07/07/the-absolutely-simplest-consistent-hashing-example/
2013,07,14
home
https://help.github.com/articles/fork-a-repo
https://help.github.com/articles/syncing-a-fork
2013,07,12
office
http://blog.amir.rachum.com/post/54770419679/python-common-newbie-mistakes-part-1
Why is "is" different than "==" and how come "2 + 2 is 4", but "1000 + 1 is not 1001"?
http://nedbatchelder.com/text/names.html
SQLAlchemy will save the same user as many times as one wants.
http://stackoverflow.com/a/15626402
2013,07,11
office
http://blogs.it.ox.ac.uk/inapickle/2012/01/05/python-decorators-with-optional-arguments/
2013,07,10
office
http://justcramer.com/
http://highscalability.com/all-time-favorites/
2013,07,05
office
https://speakerdeck.com/goodwill/minimal-and-full-stack-pyramid-any-way-you-want-it
2013,07,03
home
如何设计插件式结构的程序,兼谈Python语言的动态性
http://hgoldfish.com/blogs/article/81/
Coroutine在PyQt中的简单应用
http://hgoldfish.com/blogs/article/85/
2013,07,01
home
存储过程编写经验和优化措施
http://www.cnblogs.com/kuangwenyao/archive/2007/04/29/732041.html
2013,06,28
office
http://golden-ribbon.deviantart.com/art/Gaia-Ring-Tail-347238859
http://golden-ribbon.deviantart.com/art/Gaia-Gibbon-Black-345332438
http://mrjoes.github.io/2013/06/21/python-realtime.html
http://lucumr.pocoo.org/2012/8/5/stateless-and-proud/
2013,06,27
office
http://blog.curiasolutions.com/the-great-web-framework-shootout/
http://lucumr.pocoo.org/2011/7/27/the-pluggable-pipedream/
http://blog.kgriffs.com/2012/12/18/uwsgi-vs-gunicorn-vs-node-benchmarks.html
http://blog.kgriffs.com/2012/12/12/gevent-vs-tornado-benchmarks.html
http://pyrseas.wordpress.com/
2013,06,26
office
http://blog.ianbicking.org/2010/03/12/a-webob-app-example/
http://docs.webob.org/en/latest/do-it-yourself.html
2013,06,25
office
http://www.brandonbloom.name/blog/2009/08/19/dropping-django/
flask-docs-cn, jinja2-docs-cn, flask-wtf-docs-cn, flask-sqlalchemy-docs-cn, flask-login-docs-cn
http://docs.torriacg.org/projects
2013,06,24
office
http://mindref.blogspot.de/search/label/python
http://mindref.blogspot.de/2012/09/python-fastest-web-framework.html
2013,06,13
office
SSO(Single Sign-on) in Action(上篇)
http://www.blogjava.net/security/archive/2006/10/02/sso_in_action.html
2013,06.08
office
async file write
https://groups.google.com/forum/?fromgroups#!topic/python-tornado/eDCeE4rBX24
Is Tornado really non-blocking?
http://stackoverflow.com/questions/3638844/is-tornado-really-non-blocking
Filesystem IO with tornado
https://groups.google.com/forum/?fromgroups#!topic/python-tornado/KZl-kJT-8zA
Being truly asynchronous with Tornado