MySQL per database size with a simple query

Not 100% accurate (as it uses data and index length from information_schema.TABLES), but still useful: SELECT table_schema AS “Database”, ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS “Size (MB)” FROM information_schema.TABLES...

Using Github Actions With Flutter

In this article, we will see how to use Github Actions which is a continuous integration and continuous delivery tool with a Flutter Application. Github Actions is an automation software that helps in continuous integration and continuous delivery. View original...

From Native to Flutter to Web

Hillel Coren explains he went from native mobile apps, to flutter apps and back to web app (using flutter). Useful tips here. Original article at https://hillel.dev/2020/02/27/flutter-web-things-to-know/ Source at...

Pin It on Pinterest