Tag: python

Building Resilient Systems: Why Your Code Should Expect Failure
devops

Building Resilient Systems: Why Your Code Should Expect Failure

Every production system eventually faces the same uncomfortable truth: things fail. Networks partition, services crash, databases timeout, and disk space runs out at 3 AM. The difference between a system that survives these events and one that doesn't comes down to one word: resilience. Why Resilience Matters Imagine

davide
Generative Adversarial Networks
tensorflow

Generative Adversarial Networks

Hi there, it's been a while from the last time a posted something. Recently, during the last Easter holiday I was playing with Generative Adversarial Networks, a type of neural networks used to produce new data. Basically a GAN is composed by 2 networks: a generator and a

davide
Set up Python3 dev environment Ubuntu
python

Set up Python3 dev environment Ubuntu

Here is a script that I've used to set up a python environment on Ubuntu and raspbian #Update the system sudo apt-get update sudo apt-get -y upgrade #Install python and virtualenv sudo apt-get install build-essential libssl-dev libffi-dev python-dev python3-tk python3-venv python3-pip #Create env directory tree mkdir environments cd

davide