| 日時: | 2017-01-02 |
|---|---|
| 作: | @voluntas |
| バージョン: | 2.1.0 |
| URL: | https://voluntas.githu.io/ |
突っ込みは Twitter @voluntas まで。
| 日時: | 2017-01-02 |
|---|---|
| 作: | @voluntas |
| バージョン: | 2.1.0 |
| URL: | https://voluntas.githu.io/ |
突っ込みは Twitter @voluntas まで。
Introducing Incremental DOM — Google Developers — Medium
Reactやvirtual-dom、Glimmer(Ember)などVirtual DOMの実装は色々あるが、これらのVirtual DOM実装には2つの問題がある
これらを解決するためにIncremental DOMと言うものを作っている(WIP)
| #https://github.com/gevent/gevent/issues/477#issuecomment-56292848 | |
| # # Re-add sslwrap to Python 2.7.9 | |
| import inspect | |
| __ssl__ = __import__('ssl') | |
| try: | |
| _ssl = __ssl__._ssl | |
| except AttributeError: | |
| _ssl = __ssl__._ssl2 |
| def http_connection_send(): | |
| import httplib | |
| def patch_send(): | |
| old_send= httplib.HTTPConnection.send | |
| def new_send(self, data, *args, **kwargs): | |
| print(data) | |
| body = old_send(self, data, *args, **kwargs) | |
| return body | |
| httplib.HTTPConnection.send = new_send | |
| patch_send() |
| """ | |
| This module adds Redis Sentinel transport support to Celery. | |
| Current version of celery doesn't support Redis sentinel client, which is must have for automatic failover. | |
| To use it:: | |
| import register_celery_alias | |
| register_celery_alias("redis-sentinel") | |
| celery = Celery(..., broker="redis-sentinel://...", backend="redis-sentinel://...") |
Why Should I Care (For Developers)
"Dockerが面白いのはシンプルな環境に隔離性と再現性をもたらしてくれることだ.ランタイムの環境を一度作れば、パッケージにして別のマシンでも再利用することできる.さらに,すべてはホスト内の隔離された環境で行われる(VMのように).最も素晴らしい点は,シンプルかつ高速であることだ."