Software Engineering is often driven by fashion, but swimming with the current is rarely the best choice. In addition to knowing what to do, it's equally important to know what not to do. And this is precisely what my free Web App Reverse Checklist will help you with.
Subscribe below to get your free copy of my Reverse Checklist delivered to your inbox. Afterward, you can expect one weekly email on building resilient Web Applications using Python, JavaScript, and PostgreSQL.
By the way, it goes without saying that I'm not sharing your email address with anyone, and you're free to unsubscribe at any time. No spam. No commitments. No questions asked.
Calculate Scroll Depth as a percentage of page height and send custom events to Plausible, the GDPR-compliant analytics platform. Vanilla JavaScript only.
By Christoph Schiessl on JavaScript
Use event handlers to detect exit intent so you can react to grab your website visitors' attention before leaving and perhaps convert them into repeat visitors.
By Christoph Schiessl on JavaScript
Cut the number of required PostgreSQL server round-trips by up to 50% using the AND CHAIN
parameter of the COMMIT
and ROLLBACK
statements.
By Christoph Schiessl on PostgreSQL
<link>
your Blog's Atom/RSS Feed from HTML Pages
Learn how to <link>
Atom and RSS feeds from your HTML documents to make them discoverable for clients and, by extension, for your readers.
By Christoph Schiessl
Returning multiple values from a function using tuples. Understand the syntax and how to write correct type annotations.
By Christoph Schiessl on Python