User's banner
Avatar

Juanjo Salvador

jsalvador@programming.dev
Joined
12 posts • 54 comments

Django backend developer.

Also likes anime, sci-fi, beer and mexican food, and not always talk about himself using the third person form.

Direct message

There is several ways to post your docs without wasting money, in a far better way, like using ReadTheDocs or just generating it with whatever library made for your project’s language, like Pydoc, and serving it from GitHub Pages.

It’s not even complicated, I don’t know why keep making it complex…

permalink
report
parent
reply

Never heard about projects using Discord for docs (sounds terrible and useless, tbh), but now I’m afraid of it.

permalink
report
reply
Deleted by creator
permalink
report
reply

Answer has been solved but, just in case someone is curious about it: yes, is possible to extend a docker-compose.yaml file with another.

From Docker’s docs: https://docs.docker.com/compose/multiple-compose-files/extends/

You can have a common-services.yml file (or whatever name you want to give to it) with a service defined inside, like this:

services:
  webapp:
    build: .
    ports:
      - "8000:8000"
    volumes:
      - "/data"

And then, in your docker-compose.yaml file just extend it with more specific things.

services:
  web:
    extends:
      file: common-services.yml
      service: webapp
permalink
report
reply

lmao-lang is ok as we like esoteric langs, but gosh, uncrossing lines are being crossed.

permalink
report
reply

I’m fine with GNOME, but this long comment makes me feel like I’m missing a world if nice and optimized small software pieces which do exactly what you expect from them and nothing more.

Now I’m curious about the terminal you’re using!

permalink
report
parent
reply

This is experimental. It will eat your cat and burn down your house, format your hard drive and post all your secrets to Facebook.

this made my day, lol

During Christmas season I started reading about window managers because I was curious about it, and I found someone who made this but in Python. It was just an interesting thing but doesn’t feel like something you would put on your computer. Nice to see Ruby is able to achieve this, it feels pretty abandoned language outside of Rails.

permalink
report
reply

Donations to free software projects are pretty important. Since most of big ones are maintained by companies which has a partnership with foundations, lot of most free software projects (libraries, components, apps, etc) are maintained by small amount of volunteers, who paid everything for the project.

So, this not mean to make you rich, but at least having a coffee paid by some Lemmy user who uses your piece of software and wants to be grateful, makes you a bit more happy.

permalink
report
reply

That’s how Poetry works. I guess all modern ones work like this.

permalink
report
parent
reply