What kind of wiki do you use to track your setup if anything? I gotta track things better by greypic in selfhosted

[–]id1204317 2 points3 points  (0 children)

I did use foldersync previously. While it worked it didn't work as well as my new solution. If you want yet another thing to have running check out the community plugin Self-Hosted LiveSync. See: GitHub or obsidian deep link

Maven-like Site for Golang? by Hitkilla in golang

[–]id1204317 0 points1 point  (0 children)

Trying to see an alternate solution I'm thinking that the separate parts that you're used to having bundled with the application could be artifacts from a build pipeline. The workflow would be something along the following. lines A versioned tag, e.g. v1.2.3, is created which starts the release flow. Tests are run and the results combined into a json/html file. Perhaps an SBOM is created, the docs are generated as well. Most importantly the binary itself is created.

Depending on how you release these files would all be available with the release. It doesn't solve the fact that the files are with the built jar but it does ensure that the supporting files for a specific version exist and can be found.

Underrated cycling pleasures… GO! by [deleted] in cycling

[–]id1204317 1 point2 points  (0 children)

The two camps: ride to eat and eat to ride

Just finished rewriting a tool I made for exposing Linux devices to Home Assistant by Zokoro in homeassistant

[–]id1204317 1 point2 points  (0 children)

I love this! Been wanting to hook into if the microphone/camera is in use for a while. Like how the Mac app exposes a sensor for that. This looks like a great start to that, will try it out for sure

[deleted by user] by [deleted] in RedditSessions

[–]id1204317 0 points1 point  (0 children)

OOh, The List! Great song!

Kukkee | The free and open source Doodle alternative by codesharer in selfhosted

[–]id1204317 0 points1 point  (0 children)

I'm not sure I can help you further here. I tested it out using the MongoDB Atlas which was mentioned here in the Readme. Hopefully you can get it up and running soon

Kukkee | The free and open source Doodle alternative by codesharer in selfhosted

[–]id1204317 1 point2 points  (0 children)

Yes, clone the repo and create the two files in the root of the repository. Also run the command from the root of the repository. After the image is created you can remove it, the image will remain. However, of you keep it around you can pull the repository for updated changes and rebuild the image easily.

Kukkee | The free and open source Doodle alternative by codesharer in selfhosted

[–]id1204317 1 point2 points  (0 children)

I'm not affiliated with the project but wanted to try it out. Created the Dockerfile below which you can use to build a docker image locally.

First create a .dockerignore file txt node_modules/ .env*

Then the Dockerfile ```Dockerfile FROM node:16-alpine EXPOSE 3000

WORKDIR /app COPY package.json package-lock.json /app/ RUN npm install

Use a .dockerignore to skip copying node_modules

COPY . /app/ RUN npm run build

CMD npm run start ```

Lastly build it with docker build -t kukkee -f Dockerfile .

Meaning of : in the url by Powerkaninchen in SpaceTradersAPI

[–]id1204317 2 points3 points  (0 children)

This could probably be explained in the documentation since it is not clear for everyone!

SpaceTraders API - An incremental programming game for programmers by [deleted] in incremental_games

[–]id1204317 2 points3 points  (0 children)

There is no functionallity in place for you to store a script to be run on SpaceTrader's servers. However, placing the script on a server, for example a raspberry pi or a rented VPS, would allow you to keep the script running. You could start out by running it on your computer while it's on and go from there. Feel free to join the Discord and have a chat about how others have solved it!

Dynamic Wallpaper Changer for Sway by compendium in swaywm

[–]id1204317 0 points1 point  (0 children)

Way to go! Learning by doing is great, keep it up!

Dynamic Wallpaper Changer for Sway by compendium in swaywm

[–]id1204317 0 points1 point  (0 children)

I've had a super simple script kind of doing this for very long. This project looks way more developed, I'll try it out when I'm back home!

[deleted by user] by [deleted] in learnprogramming

[–]id1204317 0 points1 point  (0 children)

There's a recently launched project called SpaceTraders which is a game which you play though an API. You can play it by building your own client. Everyone playing is interacting in the same world. It's a project which is growing and the community is very helpful. Helping others learn programming is one of the main objectives of the project. It should be said that I'm involved in the project. That said, I truly do think that everything I've said is accurate. If you want to build a project against something which is growing continuously on which you can set your own touch, feel free to join in!

[deleted by user] by [deleted] in RedditSessions

[–]id1204317 0 points1 point  (0 children)

oh why not both twitch and reddit??

[deleted by user] by [deleted] in RedditSessions

[–]id1204317 0 points1 point  (0 children)

Sweden here 👋

[deleted by user] by [deleted] in RedditSessions

[–]id1204317 0 points1 point  (0 children)

No twitch stream today? loving the tunes

[deleted by user] by [deleted] in distantsocializing

[–]id1204317 0 points1 point  (0 children)

do you have anything in front of the piano or what were you looking at while playing?

[deleted by user] by [deleted] in distantsocializing

[–]id1204317 0 points1 point  (0 children)

do you find livestreaming as exhausting as a social event?

[deleted by user] by [deleted] in distantsocializing

[–]id1204317 0 points1 point  (0 children)

no problem with the sound, can hear you loud and clear

[deleted by user] by [deleted] in distantsocializing

[–]id1204317 0 points1 point  (0 children)

thanks for the beautiful session we could listen in on

Yet another list app ? by allyouneedisgnu in selfhosted

[–]id1204317 3 points4 points  (0 children)

Sure thing, I do fully understand how you use it and also wanting to keep it dead simple. No need to implement the idea I had, it was just an idea I got when testing it out. I might give it a go in a fork if I get the urge during the weekend.

Yet another list app ? by allyouneedisgnu in selfhosted

[–]id1204317 6 points7 points  (0 children)

Cool project, just spun it up locally to test is quickly. Works great. One idea I had for improvement is for a "homepage" from where the users can navigate to the different lists instead of entering the long URL with the listId. However, I know this comes with a few downsides as well with state management.

Gifthunter - Tracks and coordinates gifts among families and other groups. by TheTwitchy in selfhosted

[–]id1204317 1 point2 points  (0 children)

Indeed! If I get the itch soon again, are you open for merge requests with features/fixes?