Introducing Incremental DOM — Google Developers — Medium
Reactやvirtual-dom、Glimmer(Ember)などVirtual DOMの実装は色々あるが、これらのVirtual DOM実装には2つの問題がある
- 既存のテンプレート言語を利用していない(しにくい)
- モバイルでのパフォーマンス、特にメモリに関しては大きすぎる
これらを解決するためにIncremental DOMと言うものを作っている(WIP)
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のように).最も素晴らしい点は,シンプルかつ高速であることだ."
更新: | 2013-12-27 |
---|---|
バージョン: | 1.5.1 |
作者: | @voluntas |
URL: | http://voluntas.github.io/ |
更新: | 2013-09-28 |
---|---|
バージョン: | 0.0.9 |
作者: | @voluntas |
URL: | http://voluntas.github.io/ |
Django + Elasticsearch コトハジメの補足記事です