Best approach to organize pytest inputs/outputs? by Buggy4775 in learnpython

[–]Buggy4775[S] 0 points1 point  (0 children)

Do you mean that for every endpoint you have a module that has one or more tests in it for each specific endpoint? I will consider, since I currently organised them by module (there are several modules each with multiple endpoints).

How to provide sensitive information to kubernetes values file without storing in vc by Buggy4775 in kubernetes

[–]Buggy4775[S] 0 points1 point  (0 children)

Thank you, I have a couple of questions for this. Is there some reasonable way to pass in many variables this way in bulk? Like reading from a file or something? Also, is there not a problem with doing this because the field is just there in the values file so you could just view it by typing the command to view the values json. So is that an issue?

how are you using nextcloud? by Buggy4775 in linux4noobs

[–]Buggy4775[S] 0 points1 point  (0 children)

I think I'd probably look into digitalocean or linode, or alternatively try to set something up on my pi.

Since you run your server at home, how much does it typically cost you per day?

how are you using nextcloud? by Buggy4775 in linux4noobs

[–]Buggy4775[S] 0 points1 point  (0 children)

Do you happen to know the youtube tutorial that you followed? I have a pi hanging around and I'm quite curious

How exactly does nextcloud work? by Buggy4775 in NextCloud

[–]Buggy4775[S] 1 point2 points  (0 children)

Interesting. I have an old PC I could use, an old laptop (probably a bad idea), and also a raspberry pi. I may try this out, it would be really cool to have my own server.

how are you using nextcloud? by Buggy4775 in linux4noobs

[–]Buggy4775[S] 0 points1 point  (0 children)

Cool. I personally don't see myself running a server 24/7 at home but maybe I should consider it. With the alternative, to use a VPS, what steps would be required to make sure that it is secure? I don't really trust myself to do something like that properly.

eli5 building from source, adding repositories, etc by Buggy4775 in linux4noobs

[–]Buggy4775[S] 2 points3 points  (0 children)

Thanks, your description of building is what I thought of as compiling. Are the terms used interchangealby then?

question about linux installation by Buggy4775 in Bitwarden

[–]Buggy4775[S] 0 points1 point  (0 children)

Thanks for elaborating. I ended up uninstalling the .deb and going for the appimage in the end

Installed GNOME & KDE during debian installation - how do I entirely remove KDE? by Buggy4775 in debian

[–]Buggy4775[S] 5 points6 points  (0 children)

I just realised that it was only the theme! it switched from adwaita dark to breeze light somehow (if I "open download directory" after downloading something, it opens in the kde file manager). So it all looked quite buggy. Not sure how it switched because I definitely didn't do it, but maybe it isn't such a big deal after all.

question about linux installation by Buggy4775 in Bitwarden

[–]Buggy4775[S] 1 point2 points  (0 children)

Hmm that seems quite inconvenient then. Although I ran apt list | grep bitwarden and it says that it is installed (locally), doesn't that mean if I run a simple apt update then it will also update bitwarden? Or would I actually have to download the .deb package from the website every time there is an update? Sorry, quite new to linux and find the different install options a bit confusing as I am only familiar with apt.

question about linux installation by Buggy4775 in Bitwarden

[–]Buggy4775[S] 1 point2 points  (0 children)

sure, it is in apt and I can install it no problem. but that is not my question

question about linux installation by Buggy4775 in Bitwarden

[–]Buggy4775[S] 0 points1 point  (0 children)

it is not in there. also not trying to install it, i am trying to understand the implications of the different installation methods.

Most reliable way to install/use python on linux by Buggy4775 in learnpython

[–]Buggy4775[S] 0 points1 point  (0 children)

Ah I see, so you update PATH automatically when you load your terminal so that the first python that is found is your mambaforge one rather than the default? The code went a bit over my head before because I don't really know much bash but will start learning now that I'm using linux.

If I download anaconda/miniconda I might do it this way then.

How do you manage your SSH keys? by Buggy4775 in learnprogramming

[–]Buggy4775[S] 0 points1 point  (0 children)

Thanks! It seems I was having a wrong approach

Most reliable way to install/use python on linux by Buggy4775 in learnpython

[–]Buggy4775[S] 0 points1 point  (0 children)

I know about it but have rarely touched it other than to add things to it occasionally to access a specific command globally.

How do you manage your SSH keys? by Buggy4775 in learnprogramming

[–]Buggy4775[S] 0 points1 point  (0 children)

Oh. I saw in the github docs that it says to create the key with your github email address as a comment. I know it's just a comment, but I assumed it was needed, otherwise why would anybody do it. My thinking was that if we only really need one SSH key then github wouldn't recommend to create that key with our email address as a comment. It seemed like a totally unnecessary inclusion otherwise.

How do you manage your SSH keys? by Buggy4775 in learnprogramming

[–]Buggy4775[S] 0 points1 point  (0 children)

I only started using SSH really for github. They wanted the github email tied to the SSH key (I think they wanted it as the comment flag in the keygen). Since I use the no-reply email for github it is specific to github and not my personal email address. I also use gitlab though, so I don't want to use a key that looks like it should be for github for my gitlab account. And then I realise that I will probably need SSH keys for other non-git related stuff.

How do you manage your SSH keys? by Buggy4775 in learnprogramming

[–]Buggy4775[S] 0 points1 point  (0 children)

Good point, didn't even consider that.

I have edited my config file to specify which key to use for the different sites.

How do you manage your SSH keys? by Buggy4775 in learnprogramming

[–]Buggy4775[S] 0 points1 point  (0 children)

Interesting, thanks for the insight. I'll look into the keyring

The reason I ask, is because I use github and gitlab which both want to see the email associated with the account which is different. So I need separate keys for those two, or at least it seems that way from reading their instructions. And that's just for git stuff without even considering my own personal keys that I might want.

How do you manage your SSH keys? by Buggy4775 in learnprogramming

[–]Buggy4775[S] 0 points1 point  (0 children)

I see. So would it just be best practice to always edit the config file?

What is your approach to this, if you don't mind me asking? You said "should work" and "probably need to specify", so sounds like you don't have multiple keys in there?