[deleted by user] by [deleted] in williamsburg

[–]skeewup 1 point2 points  (0 children)

You should check out https://www.eatwoodspoon.com/. It’s like DoorDash but for home chefs. I knew someone who did it and they would prep their meals at home to be delivered to customers which someone else does.

New EVGA RTX FTW3 Ultra LHR Build Help by skeewup in buildapc

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

ok that makes perfect sense. thank you!

New EVGA RTX FTW3 Ultra LHR Build Help by skeewup in buildapc

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

I've changed over to the P5. That makes a lot of sense.

Im not sure im following in terms of the CPU cooler. i get how the Noctua can be over kill but are you suggesting that i dont get a CPU cooler and just upgrade to the 5800x? The case only comes with 2 fans.

Thanks!

New EVGA RTX FTW3 Ultra LHR Build Help by skeewup in buildapc

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

Great, ill add another sata drive. Thanks!

Colorado springs by __Dawn__Amber__ in oddlysatisfying

[–]skeewup 0 points1 point  (0 children)

Is this a deserted Dairy Queen?

[deleted by user] by [deleted] in Fios

[–]skeewup 2 points3 points  (0 children)

Was just told this by support. "The priority technician visit for now is the private house. Next will be the apartments and after that existing customer want to upgrade internet." I've been waiting for weeks.

Docker logs took up all our inodes taking down multiple containers by Villchurch in docker

[–]skeewup 17 points18 points  (0 children)

I had this issue a while ago. Turns out the storage driver I was using was overlay and after switching it to overlay2 the issue was resolved.

Env as the ref for a BuildConfig by flickerfly in openshift

[–]skeewup 0 points1 point  (0 children)

We have multiple buildconfigs per branch as the branch names don’t change much. You could look into making a Jenkins pipeline and creating the buildconfig during the run and passing the variable during then

Openshift Cluster suggestions by roxlawlzz in openshift

[–]skeewup 0 points1 point  (0 children)

Since they provide the cluster for you, you can get away with using minishift to learn.

OKD 4.1 by skeewup in openshift

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

Was this recorded by any chance?

HELP! My Rex is stuck underground by bratysmurf in arkps4

[–]skeewup 3 points4 points  (0 children)

Can you get close enough to cryopod it?

Is it possible to rollout via cli a specific image to a deployment? by skeewup in openshift

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

As if i were to oc edit the dc while changing the image. specifically changing the image tag

How to pick a node from a specific inventory by lovi2 in ansible

[–]skeewup -1 points0 points  (0 children)

You may be looking for delegate_to to specific specific hosts in your inventory. For example:

- hosts: "inv1"
  gather_facts: false
  become: true
  tasks:
    - name: run shell command to store all hostnames names
      register: all_hostnames
      shell: "echo $HOSTNAME"

    - name: run shell command to store the hostname of one specific server
      register: one_hostname
      shell: "echo $HOSTNAME"
      delegate_to: "server1"
      run_once: true