aboutsummaryrefslogtreecommitdiff
path: root/go.sum (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-09-29replacing my static website with a simple web appFranck Cuny1-0/+2
2025-09-06ssh-cert-info in goFranck Cuny1-0/+4
2025-08-29fix import paths for mpd-scrobblerFranck Cuny1-0/+6
2025-08-29prepare the migrationFranck Cuny1-6/+0
2025-08-24add nix configurations for building and running `goget`Franck Cuny1-0/+16
2025-08-24add Go vanity URL service for custom import pathsFranck Cuny1-0/+20
Go vanity URLs allow developers to use custom domain names for Go module imports instead of being tied to specific hosting platforms like GitHub. This service implements the go-import meta tag protocol, allowing Go tools to automatically discover the actual Git repository location while presenting a clean, branded import path to users.
2021-10-10scrobbler: add interface to the sqlite3 databaseFranck Cuny1-0/+2
We want to persist the records in a database, so we can extract statistics and an history. The module for the database is straightforward: it opens the database if it exists and return an handler to it. If the database does not exists, we create it and we create the only table we need (records).
2021-10-09scrobbler: initial log record typeFranck Cuny1-0/+2
Define the type for a log record and add an helper function to create a new record.
2021-10-09scrobbler: watch for events and print song detailsFranck Cuny1-0/+2
We create a module "mpd" to interact with our MPD instance. For now we only have a single function to create a new client, which creates an actual client for mpd (and we ping the instance every 30 seconds), and a watcher to receive new events. The tool "scrobbler" then wait for new events and display songs information.