Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)UN
Undaunted @discuss.tchncs.de
Posts 0
Comments 25
Programmatic access to discord
  • Discord recently added "user installable apps". You can configure it though the installation context. I have only implemented the usual server installable apps so far, so I don't know what the apps in the new context are able to do. But it might be worth a look :)

  • Ritalin vs Concerta dosage
  • If you say Ritalin, you mean the "normal" version without extended release, right? It is individual how many hours Concerta has an effect, but it's roughly 7-10h.

    How much mg of Ritalin do you take in 7-10h in total? That is roughly the dosage you need for Concerta.

  • This is pretty accurate for me
  • Although I have ADHD, I do prefer making a phone call, when I need something urgently. Especially if I deal with a company or a service provider e.g. party location/dj/photographer for our wedding party or whatever. I'm always anxious that they don't read or answer my message in time

  • Looking for a cheap dopamine hit ;)
  • Thanks for the recommendation. That is pretty pricey but if it works, that's fine. Though probably not feasible to have in every room then :D

    But I assume it also needs periodic recalibration for the CO2 sensor, right?

  • Looking for a cheap dopamine hit ;)
  • Sorry for the late reply. That photacoustic one looks interesting. I have no issue with an extensive initial calibration when it then just works without me needing to take care of it regularly. Thank you :)

  • Majohn/moonman A1
  • I love this pen! It writes extremely smooth and feels good in the hand. I found it when I looked for an EDC-capable pen, because I was annoyed by screw-on caps when I wanted to quickly take a note. And with other caps that only click in place I was always afraid of them falling of in my pocket or bag and making a huge mess. This is as easy and convenient to use as a ball point pen combined with nice writing experience of a fountain pen.

  • Looking for a cheap dopamine hit ;)
  • Do you have a suggestion for a good air quality sensor (especially for CO2 and VOCs) that outputs reliable results, works over ZigBee and is preferably battery powered? I had a CO2 sensor once but that needed to be calibrated outside really frequently so I stopped using it.

  • How can I quickly "unclog" firefox when it runs out of memory (with 1000/2000 tabs)
  • I have no direct solution to you exact problem but your usage of tabs sounds like a nightmare.

    A while back I found Omnivore which works like a charm if you want to "freeze" the contents of a website to read them later. You can also self host it if you like.

    I took it a step further because I love Obsidian as personal knowledge management and I want to have everything in one place. There's a plugin to sync all your saved pages from Omnivore to Obsidian. In the template for it I then have my marked highlights, the links to the version in Omnivore and the original URL and also the whole content. So I have all of that in markdown which is really nice to work with.

    Maybe that's a solution you too could be happy with.

  • How do y'all backup docker databases with backup programs like Borg/Restic?
  • I quickly threw together a repository. But please keep in mind that I made some changes to it, to be able to publish it, and it is a combination of 3 different custom solutions that I made for myself. I have not tested it, so use at your own risk :D But if something is broken, just tell me and I try to fix it.

  • How do y'all backup docker databases with backup programs like Borg/Restic?
  • I mostly use postgres so I created myself a small docker image, which has the postgres client, restic and cron. It also gets a small bash script which executes pg_dump and then restic to backup the dump. pg_dump can be used while the database is used so no issues there. Restic stores the backup in a volume which points to an NFS share on my NAS. This script is called periodically by cron.

    I use this image to start a backup-service alongside every database. So it's part of the docker-compose.yml