How to Restrict Outbound Traffic on a Docker Infrastructure

I've been in charge for years of various startups critical infrastructures. Usually, I set up pretty simple stuff: a vanilla ubuntu server with ufw (firewall) and docker + docker-compose. I close all ports to incoming connections except 22, 80 and 443. Then I put a docker-compose.yml with the various containers needed for the business applications. … Continue reading How to Restrict Outbound Traffic on a Docker Infrastructure

Css Hack: Print Repeating Headers and Footers in Chrome

When you want your web application to be able to export a PDF, you have basically 2 ways to go: either you use some server-side pdf generator, either you code your pdf as a web page within your app, and lets your users print it with their browser. Personally I like the 2nd option, since … Continue reading Css Hack: Print Repeating Headers and Footers in Chrome

Using AI (Pytorch) to Optimize #1 EU Airport Post-covid Re-opening

Among all economic sectors impacted by Covid19, air traffic was hit the hardest. Airlines are suffering a lot, and consequently so do airports. Now that most EU countries are reopening their borders, air traffic is slowly going up again. Obviously, current traffic is nowhere near pre-covid levels, and it does not make sense for an … Continue reading Using AI (Pytorch) to Optimize #1 EU Airport Post-covid Re-opening

Building Business Apps with React-admin

When you think of it, most business apps mostly consist of basic database interactions. You have concepts (invoices, items, appointments etc), and you want to perform the usual CRUD (create, read, update, delete) operations. Once you notice this, you start wondering whether there are web development frameworks that could automatically generate, from a database, an … Continue reading Building Business Apps with React-admin

Deep Learning in the Real World: How to Deal with Non-differentiable Loss Functions

Over the past few years, deep learning has been taking by storm many industries. From voice recognition to image analysis and synthesis, neural networks have turned out to be very efficient at solving a vast number of problems. Concretely, if you can define your problem as the minimization of a differentiable objective function, there is … Continue reading Deep Learning in the Real World: How to Deal with Non-differentiable Loss Functions

Angular and Tensorflow Rewrites Retrospective

When AngularJS framework was released, it sky rocketed to being the most popular front-end development framework. But after a few years, React, a competing front-end framework open sourced by Facebook, quickly gained traction and is now the most popular one. A big difference between the 2 is that React took a more loosely coupled approach … Continue reading Angular and Tensorflow Rewrites Retrospective