I've moved this information to my blog: http://jpetazzo.github.io/2013/10/20/secure-connection-docker-api/
The old version is available in the history if needed.
Thank you!
I've moved this information to my blog: http://jpetazzo.github.io/2013/10/20/secure-connection-docker-api/
The old version is available in the history if needed.
Thank you!
| #!/usr/bin/env python | |
| """ | |
| Build wheels of all currently installed packages (as listed by "pip freeze") | |
| """ | |
| import glob | |
| import importlib | |
| from subprocess import call |
| In this ZK demo, a partition places the primary on the minority component. All | |
| operations time out while the cluster converges on a new primary, at which | |
| point three clients (talking to the three nodes in the majority component) can | |
| proceed again. When the partition is healed, the two minority nodes can begin | |
| accepting writes again. As with single-node Postgres, Zookeeper's client | |
| protocol and ZAB both allow for false negatives (timeouts may actually succeed) | |
| but not false positives (every successful write *will* be present in the final | |
| set.) | |
| HOW TO READ THIS CHART: |
| [global] | |
| timeout = 15 | |
| download_cache = ~/.pip/cache | |
| allow-all-external = false | |
| no-allow-insecure = false |
Prerequisites:
Software components used:
| import django.db | |
| import collections | |
| all_models = django.db.models.get_models() | |
| def find_deps(models): | |
| """ return a dict of {model : [all dependent models] """ | |
| deps = collections.defaultdict(set) | |
| name_to_model = {} | |
| for model in models: |
ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| class EverythingCollector(Collector): | |
| """ | |
| More or less identical to the default Django collector except we always | |
| return relations (even when they shouldnt matter). | |
| """ | |
| def collect(self, objs, source=None, nullable=False, collect_related=True, | |
| source_attr=None, reverse_dependency=False): | |
| new_objs = self.add(objs) | |
| if not new_objs: | |
| return |
Thanks to Jacob Kaplan-Moss, Donald Stufft, David Reid, Allen Short, Zain Memon, and Chris Armstrong for review.
This is a guide for technical individuals to understand in what circumstances SSL communications are secure against an observer-in-the-middle (for all intents and purposes: the NSA).