The Plan to Seed Life on Alien Planets

The 50th anniversary of “Earthrise” is the perfect opportunity to think about sending Earth’s life to the stars. Continue reading The Plan to Seed Life on Alien Planets

The Plan to Seed Life on Alien Planets

The 50th anniversary of “Earthrise” is the perfect opportunity to think about sending Earth’s life to the stars. Continue reading The Plan to Seed Life on Alien Planets

Thread Carefully: An Introduction To Concurrent Python

The ability to execute code in parallel is crucial in a wide variety of scenarios. Concurrent programming is a key asset for web servers, producer/consumer models, batch number-crunching and pretty much any time an application is bottlenecked by a resource.

It’s sadly the case that writing quality concurrent code can be a real headache, but this article aims to demonstrate how easy it is to get started writing threaded programs in Python. Due to the large number of modules available in the standard library which are there to help out with this kind of thing, it’s often the case that …read more

Continue reading Thread Carefully: An Introduction To Concurrent Python