mllamazares

Results 3 issues of mllamazares

The app looks pretty neat, but it seems to be strictly focused on playing music. You could add a new tab called "Audio-books" in which you could retrieve the covers...

enhancement
blocked

I've set up [my next.config.js](https://github.com/mllamazares/mllamazares.github.io/blob/master/next.config.js) like this: ```javascript const withPlugins = require('next-compose-plugins'); const optimizedImages = require('next-optimized-images'); const withBundleAnalyzer = require('@next/bundle-analyzer')({ enabled: process.env.ANALYZE === 'true', }) module.exports = withPlugins([ [optimizedImages, {...

I have this code to interact with a websocket api using `async` and `websokets` python libraries: ``` #!/usr/bin/env python3 import sys, json import asyncio from websockets import connect class AsyncWebsocket():...