240 发简信
IP属地:北京
  • 【Flask 1.0 源码阅读】 0 起个头

    Flask 在 first commit 之后 经过了 8 个年头终于走到了 1.0 版本,想必是对完成度很有自信。接下来一个月的时间,打算把 Flask 源码和以及其相关的...

  • 2018-03-15 刻意练习

    根据维基百科中关于刻意练习的描述,想要在某方面成为大师,必须分析成为大师需要的技能,并分解成块,每天练习,并且立即得到反馈。 不过后面也说了,只有练习没有天赋可能也不勾。不过...

  • 当Kerboros 认证的时到底认证什么

    参考维基百科Kerberos (protocol) - Wikipedia User Client-based logon 1. 用户输入密码,或者根据 pkinit (RF...

  • 120
    关于CORS 跨源资源共享

    因为最近的开发中用到 react,前后端分的比较开,遇到了 cors的问题,读这篇文章把这个概念简单梳理一下 Cross-Origin Resource Sharing (C...

  • WSGI是什么 - 读 PEP 3333之后

    Python 中有许多web框架,为了更好读兼容性,python定义了web框架和web服务器之间读接口,即PEP-3333(之前的版本是 PEP-333) WSGI 接口针...

  • Python装饰器高级用法

    在Python中,装饰器一般用来修饰函数,实现公共功能,达到代码复用的目的。在函数定义前加上@xxxx,然后函数就注入了某些行为,很神奇!然而,这只是语法糖而已。 场景 假设...

  • 正则表达式匹配

    Implement regular expression matching with support for'.'and'*'.'.' Matches any single ...

  • 最长回文子串

    Given a strings, find the longest palindromic substring ins.You may assume that the max...

  • 两个有序数组的中位数

    Median of Two Sorted ArraysThere are two sorted arraysnums1andnums2of size m and n resp...

  • 120
    最长无重复子串

    Longest Substring Without Repeating Characters 下面是 LeetCode 原题 Given a string, find the...

  • 120
    关于 matplotlib 的使用

    http://pbpython.com/effective-matplotlib.html 作者 Chris Moffitt总结了学习 matplotlib 的几个步骤: 1...