All articles by Yann Malet

Thumbnail image for 19X faster response time

19X faster response time

<p>At Lincoln Loop, we don’t just build web platforms from scratch and scale them to accommodate growing demand; we also dedicate ourselves to their long-term maintenance. Some of our partnerships have spanned over a decade.</p><p>Let me walk you through …</p>
Thumbnail image for Building a Future-Proof Platform with Block-Driven CMS

Building a Future-Proof Platform with Block-Driven CMS

<p>In</p><p>a previous blog post</p><p>, I discussed the advantages of</p><p>using django CMS</p><p>to create a Multi-Distribution Channel CMS. To achieve the flexibility required to repurpose content across various channels, it is essential to establish a clear separation between …</p>
Thumbnail image for django CMS is a great toolbox

django CMS is a great toolbox

<p>Here at Lincoln Loop, for the past 15 years, we have built countless Digital experiences (DXP) that help to move our customers’ digital transformation forward.</p><p>The ultimate result of what is often a long-term engagement is often a code base …</p>
Thumbnail image for 5 Reasons You Need a Multi-Distribution Channel CMS

5 Reasons You Need a Multi-Distribution Channel CMS

<p>Whether you are a publisher or marketer, content is pivotal to your role. It either is your product or your product’s success depends on it. But generating the engaging content your brand requires is only half of your challenge. In …</p>
Thumbnail image for Cracking Django Password Hashes

Cracking Django Password Hashes

<p>Most of the Django projects I work with take advantage of</p><p>django.contrib.auth</p><p>. It manages users and groups and is tightly coupled with</p><p>django.contrib.admin</p><p>. In this post, we are going to explore how it resists a potential attacker.</p><p>The …</p>
Thumbnail image for Have You Heard About LXC Containers?

Have You Heard About LXC Containers?

<p>Virtualization technologies have been around for a while in various forms and over the last several years the container style of virtualization has become popular as a complement (or replacement) to VMs (Virtual Machines / hypervisors). The first half of …</p>
Thumbnail image for Debugging Go Code

Debugging Go Code

<p>Four years ago, I wrote a blog post called</p><p>Introduction to Go Debugging with GDB</p><p>. At the time, the only option was the GNU debugger. Even the</p><p>official Go documentation</p><p>page on GDB doesn’t set the bar very high: …</p>
Thumbnail image for Sharing Media Files Without S3

Sharing Media Files Without S3

<p>Nowadays, it’s common to deploy multiple application servers, but it poses a very common problem; How are these application servers going to share the media files contributed by the users?</p><p>Cloud providers like Google, Rackspace or Amazon Web Services solve …</p>
Thumbnail image for How We Manage Our Company-wide Secrets

How We Manage Our Company-wide Secrets

<p>This post could have been titled, “How We Use OpenPGP to Protect Our Secrets.” All the use cases illustrated below use a tool called GnuPG to take care of the crypto details for us. GnuPG is a complete and free …</p>
Thumbnail image for Let's Encrypt DNS Challenge

Let's Encrypt DNS Challenge

<p>Let’s Encrypt</p><p>is a new certificate authority. It is a huge improvement over the manual complex process of acquiring and deploying an HTTPS server. The process is now:</p><p>Free</p><p>Automatic (no more login to sites, filling forms, concatenating certificates)</p><p>This …</p>
Thumbnail image for Concurrency in Python vs GO

Concurrency in Python vs GO

<p>At Pycon in Montreal few weeks ago I attended a talk that blew my mind away and got me thinking:</p><p>Python concurrency from the Ground Up: LIVE!</p><p>by David Beazley. The video is available on</p><p>YouTube</p><p>.</p><p>The gist of …</p>
Thumbnail image for Server Migration for BotBot.me

Server Migration for BotBot.me

<p>Last week</p><p>Vitaly</p><p>and I migrated BotBot.me to new servers and also launched a redesign of the user account section. You can now support us by becoming a subscriber for $3/month and even log personal channels for $2/month. If you …</p>
Thumbnail image for Varnish Saint Mode

Varnish Saint Mode

<p>Varnish</p><p>Saint Mode</p><p>is a lesser known gem inside</p><p>varnish</p><p>that lets you serve stale content from cache, even when your backend servers are unavailable.</p><p>This article explains how to configure varnish to take advantage of this feature. If you …</p>
Thumbnail image for A Djangonaut Building a Webapp in Go with Gorilla

A Djangonaut Building a Webapp in Go with Gorilla

<p>At Lincoln Loop, we have been building large web applications using Django since 2007. Recently, however, we have recently started using Go as a critical network component of</p><p>Botbot.me</p><p>.</p><p>Reading others’ successes stories about replacing some existing components of …</p>
Thumbnail image for Test Coverage in Go

Test Coverage in Go

<p>An important part of the process process of learning a new language is to learn the ecosystem that helps you to write better code. In a previous article I covered</p><p>gdb integration with Go</p><p>.</p><p>Next on my list is …</p>
Thumbnail image for Introduction to Go Debugging with GDB

Introduction to Go Debugging with GDB

<p>I spent the vast majority of my time in the last 4 years writing, reading and debugging Python or JavaScript code. The process of learning Go was like a beautiful hike in the mountains with a small rock in my …</p>
Thumbnail image for Django Caching in the Real World: Part 1

Django Caching in the Real World: Part 1

<p>When you develop a sizable content heavy web site you quickly learn, hopefully not the hard way, that caching is a very important piece of your infrastructure. The database servers are the typical bottleneck in high volume website.</p><p>Common wisdom …</p>
Thumbnail image for Custom Filters in the Django Admin

Custom Filters in the Django Admin

<p>A few weeks ago Django’s team</p><p>revealed a data leakage bug in the admin application</p><p>that affects an extremely interesting and undocumented feature. A user that has access to a</p><p>change_list</p><p>page of an object in the admin interface can …</p>
Thumbnail image for Using Django Inside the Tornado Web Server

Using Django Inside the Tornado Web Server

<p>Inspired by Eric Florenzano’s talk,</p><p>Using Django in Non-Standard Ways</p><p>(</p><p>slides in</p><p>PDF</p><p>) at DjangoCon and the announcement of Tornado (</p><p>tornadoweb.org</p><p>), I decided to try building a small application using the Django Form library and Django …</p>