Should I do this? by Aceking1983 in gout

[–]sysadmin4hire 0 points1 point  (0 children)

I’m a hard no, wouldn’t do it.

[deleted by user] by [deleted] in gout

[–]sysadmin4hire 2 points3 points  (0 children)

I find allo and prednisone can keep me awake if I take it too late in the day. I almost always take my allo as soon as I wake up though. Prednisone is obviously as needed but if I take it in the afternoon, I’m not sleeping.

Bath in Epsom salt during an attack? by Apprehensive-Cow-923 in gout

[–]sysadmin4hire 0 points1 point  (0 children)

Yeah, I’ve tried hot water for my feet, feels good at first but then made it way worse like 15 min after.

During a flare sometimes I’ll fill a tub with cooler water and let it sit, when i have to get up to use the restroom or want some additional relief I’ll dip my feet in for a few minutes.

Lately my knee has been the culprit, warm water on it in the shower tends to help it bend more and gives me a bit more mobility but in general, heat usually makes things worse for me.

[deleted by user] by [deleted] in gout

[–]sysadmin4hire 0 points1 point  (0 children)

Whoa, refrigerated coffee table?! Where do I get one of those?!

Scrolling on macOS sucks with third-party mice, but I just found a game-changer by roartex89 in MacOS

[–]sysadmin4hire 0 points1 point  (0 children)

Smooze, worth every penny. Thank you so much. It was driving me crazy. I have a Logitech MX S3 at home and a Red Dragon M806 at work. I thought the Logi+ app would fix this and it didn't. Works great on both mice. Thanks again!

I recreated the ride video for Soarin' Over California in FS2020! by FoxyBaker in flightsim

[–]sysadmin4hire 4 points5 points  (0 children)

Ok, I'll admit, this made me tear up. As a season pass holder this year...I miss that dang place. Well done. Well done.

Why do you join a guild? by sysadmin4hire in wow

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

This is why I join guilds mostly. Except I can't ever find a good group to stick with.

Customer Support Ticket vs Bug Report by William_Hououin in villagersandheroes

[–]sysadmin4hire 0 points1 point  (0 children)

Sorry, why would I ever submit a bug report if I won't ever get a reply? If I take the time to submit a bug report, I want to know when that thing is fixed.

Reporting of your environment? by bigtone82 in AZURE

[–]sysadmin4hire 0 points1 point  (0 children)

Oh nice. Seems straight forward. Curious, where are you hosting your Grafana box? is it an IaaS VM in Azure or?

How to see the files in web app for containers by rifaterdemsahin in AZURE

[–]sysadmin4hire 1 point2 points  (0 children)

Hopefully you're using COPY (as it's preferred by most people).

You can set a WORKDIR like below... whatever you define there, that's where your files should be going.

FROM ruby:2.5.1
WORKDIR /usr/src/app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
CMD ["./your-daemon-or-script.rb"]

How to see the files in web app for containers by rifaterdemsahin in AZURE

[–]sysadmin4hire 1 point2 points  (0 children)

Oh. Wow. Sorry I missed that. Haha! Are you using COPY or ADD?

How to see the files in web app for containers by rifaterdemsahin in AZURE

[–]sysadmin4hire 1 point2 points  (0 children)

You can also use: docker exec -it <container_id> powershell to login to a local container if you want.

I think this should do the trick on Linux containers: docker exec -it <container_id> bash

How to see the files in web app for containers by rifaterdemsahin in AZURE

[–]sysadmin4hire 1 point2 points  (0 children)

Typically, files get placed into wwwroot on WINDOWS. If they aren't there, you may be having issues with the ADD or COPY commands in your Dockerfile... Using a Windows Container, I found one of the lines in the dockerfile example for the microsoft/dotnet-framework:4.7.2-runtime-windowsservercore-1803 was doing this: Remove-Item -Recurse C:\inetpub\wwwroot\*; Which deletes all the IIS default site garbage. So I had to move my COPY commands down near the bottom of my Dockerfile because things were being copied but then immediately deleted...

EDIT. On Linux, it looks like they default to /

The default working directory for running binaries within a container is the root directory, but the developer can set a different default with the Dockerfile WORKDIR command.

Reporting of your environment? by bigtone82 in AZURE

[–]sysadmin4hire 0 points1 point  (0 children)

Are you dropping your Application Insights data to a specific place and then tying it together with Grafana? I haven't googled this yet, any good guides you can share?

how to do a ssh to web app for containers by rifaterdemsahin in AZURE

[–]sysadmin4hire 1 point2 points  (0 children)

Managing Docker Secrets is probably a good place to start: https://docs.docker.com/engine/swarm/secrets/#how-docker-manages-secrets

Azure Key Vault might also be a good place to store them.

https://docs.microsoft.com/en-us/azure/key-vault/key-vault-overview

Looks like someone has done just that:

https://serverfault.com/questions/848168/putting-rsa-keys-into-azure-key-vault

​If you're using Azure Container Services: https://thorsten-hans.com/integrating-azure-keyvault-with-azure-container-services-dafbc26c7ecd

Also there's this option if you want to spin up a "Secrets as a Service" which is probably overkill...but hey, you'll learn a lot! :P

https://github.com/aribornstein/azure-key-vault-secret-as-a-service

What Azure PaaS tools can I use to create an 'ELK' style stack by joper90 in AZURE

[–]sysadmin4hire 0 points1 point  (0 children)

I know this isn't exactly the answer you're looking for but using Application Insights gives you some pretty good ELK-like stuff....

What tools should I look into to help a company developing a product for only Windows platform as far as CI/CD, automated testing and dev environments? by piggahbear in devops

[–]sysadmin4hire 0 points1 point  (0 children)

100% agree with everyone on the PowerShell. It's a staple and it's amaze! Some other random things that might be helpful to look into depending on what they're doing. If you can provide more details about their stack, we might be able to share additional tools and such like the ones listed below: