this post was submitted on 07 May 2024
137 points (97.2% liked)

Asklemmy

42480 readers
1709 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

https://youtube.com/playlist?list=PLopDcjdhYBYkHE_nqV7QNzrCsnscs2amf&si=q-PTjPEwEvuGWnkJ

There was a music compilation album called "Ultimate Dance" from 2004 that my family listened to. I maintain a YouTube Playlist with all the songs, some were difficult to track down, being that they are all published before 2004, and many are not of English origin.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 17 points 1 month ago (1 children)

I write a world/setting and host all the notes for it on my own little website. I'm kinda proud of how it is set up: I write things in Obsidian, push changes to a repo, and then a build server picks everything up to turn into a webpage and update the host server. From random thought to website is just a few minutes

[–] [email protected] 3 points 1 month ago (1 children)

That is so cool. Love Obsidian. What’s your stack exactly?

[–] [email protected] 1 points 1 month ago

Obsidian on my local machine, changes get pushed to GitHub, Jenkins pipeline is triggered, I like to use multibranch pipelines with Jenkinsfiles, ObsidianHTML is called and uses a config file in the repo, scp and ssh to send everything to the host server. The order it moves things is a bit specific to try and reduce downtime: New site gets sent to host server with a temp directory name, old directory is renamed, new directory is renamed to be what the old one was, and then the old one is deleted. Getting the build server to actually have the tools installed for ObsidianHTML was kinda a pita had to do a lot of figuring out which versions of Python were supported where and update a lot of stuff without breaking other parts of the build server relying on older Python versions. My build and host servers are two separate droplets with DigitalOcean. ObsidianHTML isn't being developed anymore so I'd like to replace it with something I make myself one day but I'm not good at web dev in general let alone programmatically building pages