(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/usr/bin/python | |
| #-*- coding=utf-8 -*- | |
| """用于和地理信息有关的数据处理 | |
| """ | |
| __author__ = ['"wuyadong" <[email protected]>'] | |
| import math |
| from ctypes import * | |
| from ctypes.wintypes import * | |
| WNDPROCTYPE = WINFUNCTYPE(c_int, HWND, c_uint, WPARAM, LPARAM) | |
| WS_EX_APPWINDOW = 0x40000 | |
| WS_OVERLAPPEDWINDOW = 0xcf0000 | |
| WS_CAPTION = 0xc00000 |
| #!/usr/bin/env python | |
| """Simple HTTP Server With Upload. | |
| This module builds on BaseHTTPServer by implementing the standard GET | |
| and HEAD requests in a fairly straightforward manner. | |
| """ |