Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| /* | |
| * Minimal C++ implementation of Functor, Monad and Maybe. | |
| * | |
| * Requires c++0x variadic templates and lambda expressions: | |
| * | |
| * g++ -std=c++0x main.cpp -o main | |
| * | |
| * fmap, monadic bind and return implementations for std::vector | |
| * and Maybe. | |
| * |
| """ | |
| Useful functions for loading the latest version | |
| of a typelib given just its IID. | |
| - James Brotchie <brotchie@gmail.com> (github.com/brotchie) | |
| """ | |
| from win32com.client import gencache | |
| from _winreg import OpenKey, HKEY_CLASSES_ROOT, QueryInfoKey, EnumKey |