原文地址:Airflow: a workflow management platform 原文作者:Maxime Beauchemin 译文出自:掘金翻译计划 本文永久链接:https://github.com/xitu/gold-miner/blob/master/TODO1/airflow- ...
[译] 我们是如何高效实现一致性哈希的
原文地址:How we implemented consistent hashing efficiently 原文作者:Srushtika Neelakantam 译文出自:掘金翻译计划 本文永久链接:https://github.com/xitu/gold-miner/blob/master/ ...
Things I learnt from colleagues
I always believe there are always things you can learn from your colleagues no matter what size of your company you are working for, what industry you ...
Data pipeline with Airflow, Go serverless
We had the Spring hackathon in the past two days at SurveyMonkey, my team designed and demoed a general data pipeline with Airflow to help testing and ...
Git branching model for development
A good branching model matters a lot for development efficiency, but same as many other topics, there isn’t a golden way that fits all. The current de ...
The poem of Python
>>> import thisThe Zen of Python, by Tim PetersBeautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.C ...
How to build a feed system
I recently read some articles about designing feed system, the reason I am interested in it is because a feed system design involves a lot of knowledge in system design(NoSQL or relational, affinity ranking and scalability). This is also a popular question for technical interview.
有一個姑娘
我在太阳还没升起的地方等你朝露 沾湿我衣晨风 吹不乱我心 我在太阳还没升起的地方等你尽管这里芳草依依我只守望你的足迹 我在太阳还没升起的地方等你他们都从我身邊呼嘯而去只有在你身旁我才春风得意 我在太阳还没升起的地方等你消耗了所有糧食 喝光了水太阳来了又已西去 明天,我还会在那里等你!
Some numbers for back-of-the-envelope usage calculations
Some quick numbers: Read sequentially from main memory: 4 GB/s (1Mb needs 0.25 ms) Read sequentially from SSD: 1 GB/s (1Mb needs 1 ...
Python 2 and Python 3
Changes in Python 3 compared to Python2.7print is a function in python 3 print a is no longer work in Python 3, always use print(a) division by int c ...