TL, DR Latex is the “gold standard” for writing academic papers. And it will be quite common to have co-authors in your research. How can you be collaborative and work simultaneously to edit the same paper using Latex, keeping consistency and immediately noticing somebody else’s updates? Overleaf is the ultimate answer. You can create a… Continue reading Collaborative Latex editing with Overleaf
Tag: Web
Minio, a powerful self-hosted object storage
TL, DR Minio is a powerful open source self-hosted object storage, similar to S3, that you can deploy on your own hardware or cloud instance. You can also deploy it on a Raspberry Pi. It has a comprehensive Python SDK for all operations. Minio Server Minio is a powerful open source software that enables you… Continue reading Minio, a powerful self-hosted object storage
Deta Cloud, a free platform for developers
TL, DR Deta Cloud is a free platform where you can deploy micro-APP. It includes serverless functions, a NoSQL database, and cloud object storage. You can use Python or Node.js to develop and deploy your app for free. Deta Cloud Deta Cloud is a new platform that you can use to deploy small projects. It… Continue reading Deta Cloud, a free platform for developers
Self-updating webpages without refresh using Flask and HTMX
TL, DR Flask Sock and HTMX enable the creation of self-updating webpages that do not need refresh, with minimal dependencies and overhead. This is a solution you can easily implement and deploy for very simple projects. HTMX makes webpages dynamic HTMX is an interesting framework that helps you building interactive and self-updating webpages without other… Continue reading Self-updating webpages without refresh using Flask and HTMX
Add a simple cookie consent solution to your web project
TL, DR Almost any web project needs a cookie consent solution to be compliant with GDPR, CCPA, and other similar regulations around the world. CookieConsent and CookieBAR are two free solutions easy to implement that will help you be compliant. Cookies and Privacy Regulation about privacy is something any web project needs to keep in… Continue reading Add a simple cookie consent solution to your web project
Hide elements with CSS
TL, DR Sometimes we want to hide some element on a webpage. CSS provide us with some handy way to do it. This is a short guide to hide webpage elements using CSS. Our webpage got something to hide Sometimes we want to modify quickly the visibility of some element in our webpages. This often… Continue reading Hide elements with CSS