flattrack latest Β· flattrack/flattrack

Collaboration software for flats and living spaces

Migration from Vue 2.7 to Vue 3.5 is complete for FlatTrack (https://flattrack.io). Great to also be using Deno instead of Nodejs.
Few things to change with Vue Material being deprecated so having to rewrite components and Buefy having updated things here and there. Still haven’t gotten the SCSS customisation working quite right though.
Improved the UX a bit by using a few more modals too.
Glad to see performance improvements and a generally nicer experience.

#flattrackio #vuejs #deno

FlatTrack.io

New release of FlatTrack (https://flattrack.io) out today.

Several user-facing improvements for usability and some under-the-hood ones for efficiency.

https://gitlab.com/flattrack/flattrack/-/releases/0.18.5

#flattrackio

FlatTrack.io

Put out a new post for FlatTrack; an update for August 2024. Been about four years since the last... so certainly a bit overdue.

https://mastodon.social/@flattrackio/113033172961674783

direct: https://flattrack.io/blog/update-for-late-august-2024/

#flattrackio

FlatTrack home page β€” Update for late August 2024

Update blog post for August 2024

https://flattrack.io/blog/update-for-late-august-2024/

Check it out!

#flattrackio

FlatTrack home page β€” Update for late August 2024

FlatTrack is a web service to help with the needs of living spaces, especially flats.

https://flattrack.io

#flattrackio

FlatTrack.io

Really been enjoying data exploration for building new features on FlatTrack.
It seems like org-mode + sql-mode + Postgres is an unbeatable combo.

https://flattrack.io
https://gitlab.com/flattrack/flattrack/-/blob/91288b783c26892420b72b27f26f5d818366cc23/org/002-shopping-list-structuring-function.org?plain=1
#postgres #org-mode #flattrackio

FlatTrack.io

Leader Election in Go with a Postgres database using Kubernetes tooling

Leader Election is an important part of building distributed and scalable web applications. Often applications may have multiple replicas and could be deployed in a number of ways. Using the principal of read-many-write-one and Raft concensus, application replicas are all able to coordinate for a lease to be able to perform write-sensistive tasks to avoid data duplication or conflicts. Whether writing an application as a monolith or soley a scheduler, ensuring one replica writes greatly increases reliability.