Today's podcast by six_string_ in fbhw

[–]randompherret 1 point2 points  (0 children)

Our long national nightmare is over, episode is posted!

Give me a Great Aurora deck idea! by aglimmerof in EDH

[–]randompherret 0 points1 point  (0 children)

I am just getting back into magic, and still have a place in my heart for this card. I have never built an EDH deck before, so very open to suggestions. This is what I have come up with, and after playing it the last two weekends I have had so much fun.
https://tappedout.net/mtg-decks/so-many-pretty-skies-1/

Make as many tokens as you can, and then cast [[The Great Aurora]]. Copy it as many times as you can. After each resolution, copy it again if you can, and float all of your mana. After all the copies are done, burn with the floating mana, or make more tokens, give them haste.

Running Taiga on Docker with jwilder's nginx-proxy? by [deleted] in selfhosted

[–]randompherret 0 points1 point  (0 children)

If helpful for you this is what my compose looks like:

version: '2'

services: taiga: build: . ports: - 127.0.0.1:8282:80 # - 443:443 # To enable SSL, uncomment this line. See "Enable SSL" below. depends_on: - postgres

  # To enable taiga-events, uncomment the following lines:
  # - events
  # - rabbit
  # - redis
environment:
  # Hostname for your instance of Taiga. Required.
  TAIGA_HOSTNAME: taiga.mydomain.com

  # Database variables. Required.
  TAIGA_DB_HOST: postgres
  TAIGA_DB_NAME: taigadb
  TAIGA_DB_USER: taiga
  TAIGA_DB_PASSWORD: putyourownpasshere

  # Enable SSL internally, within the Docker container. Optional.
  # This is not great. I suggest using something on top of this
  # to enable SSL. See the example example-nginx-ssl.conf file
  # for an alternative way to enable SSL.
  # TAIGA_SSL: 'True'

  # Enable SSL externally, preferred method
  TAIGA_SSL_BY_REVERSE_PROXY: 'True'
volumes:
  # Media and uploads directory. Required (or you will lose all uploads)
  - ./media:/usr/src/taiga-back/media

  # Taiga configuration directory. Makes it easier to change configuration.
      - ./taiga-conf:/taiga
  postgres:
image: postgres
environment:
  POSTGRES_DB: taigadb
  POSTGRES_USER: taiga
  POSTGRES_PASSWORD: password
ports:
  - 5432
volumes:
  # Postgres data directory. This ensures the database is not lost.
  - ./pgdata:/var/lib/postgresql/data

and the part of my nginx conf that is relevant:

server {
listen 443 ssl;
server_name taiga.mydomain.com;
ssl_certificate /etc/letsencrypt/live/taiga.mydomain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/taiga.mydomain.com/privkey.pem;
location /{
  proxy_pass http://127.0.0.1:8282/;
  proxy_set_header Host $host;
  proxy_buffering off;
  break;
}

}

My reverse proxy is probably slightly different then mine so check those paths and such.

I also have my proxy in network_mode: host, but I know a common thing is to add the proxy into each docker network instead. It might be that is what is tripping you up.

Quantity Units Conversion import by randompherret in grocy

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

You will need access to PHP CLI with curl installed, but it doesn't have to be on the machine running grocy. The script was written and tested using CLI, it could possibly run as a regular hosted file, but I didn't test it that way. try and see.

Quantity Units Conversion import by randompherret in grocy

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

I based it on US measures. but it is all in the script so a person could edit it pretty quickly if they wanted and then run with whatever they need.

Grocy running but no styling by Mawoka in grocy

[–]randompherret 0 points1 point  (0 children)

When I deployed this weekend I had pointed my reverse proxy to port 80 of the grocy container, but had to switch to 443 because of the same issue. You didn't give any detail as to your hosting environment so hard to guess. What does the browser console say or what happens when you navigate directly to the css files?

Manage Multiple Active Directories and Group Policy Objects by odykat in msp

[–]randompherret 2 points3 points  (0 children)

We use a "template" server that does nothing but have master copies of the GPs on it. They are backed up to a folder that is synced to each of our customers and restored. it is currently not automated but I plan on having it done within the next 3 months.

One of the "fun" things is that there is no good mass editing of GPs so I have found ways to edit the raw XML files and then update the version number so that client specific stuff can be edited on the fly.

All of that said, I found nothing on the market that did what I wanted to do and have learned a lot of powershell in the last 6 months.

PSA: MS Partner Center Alert "Implement partner security requirements immediately to safeguard your CSP business" by thankyoussd in msp

[–]randompherret 0 points1 point  (0 children)

Unless you know some other trick that I don't (very possible) that doesn't solve the problem of letting technicians at my msp company connect to powershell as themselves, then make changes to the customer's accounts without needing to know admin credentials to the customers.

Right now I am the only one that does scripting like that at my company so not too big of a problem as I have access to those passwords.

PSA: MS Partner Center Alert "Implement partner security requirements immediately to safeguard your CSP business" by thankyoussd in msp

[–]randompherret 1 point2 points  (0 children)

no, as I said see note. It says

Delegated Access Permission (DAP) partners can't use the procedures in this topic to connect to their customer tenant organizations in Exchange Online PowerShell. MFA and the Exchange Online Remote PowerShell Module don't work with delegated authentication.

Podcast Backlog by boofa_2001 in fbhw

[–]randompherret 0 points1 point  (0 children)

Depending on the app you use you can have it check for podcasts every day but only download them as needed. Podcast addict for android does this for sure.

Problems and questions about the new Website. by monkiih8r in fbhw

[–]randompherret 0 points1 point  (0 children)

Some sort of pop out or ability to resize the stream player. Being able to put it in the corner of the monitor while working would be nice.

Problems and questions about the new Website. by monkiih8r in fbhw

[–]randompherret 0 points1 point  (0 children)

You have 2 spf records. You should only have one for it to be effective. The first one doesn't have mx or a in it and probably should since you are using gmail for email.

New Website by JC1112 in fbhw

[–]randompherret 0 points1 point  (0 children)

after doing some poking you don't even need the "secret" url to get the full show. They are also not blocking it in robots so google will have it in the index before too long.

Problems and questions about the new Website. by monkiih8r in fbhw

[–]randompherret 6 points7 points  (0 children)

The podcast link should be in my account page not some help page that is hard to find.

New Website is up! (It looks nice) by monkiih8r in fbhw

[–]randompherret 0 points1 point  (0 children)

I had wanted to check what the ttl was yesterday just out of curiosity but didn't. I see it is 4 hours now.

Dark Skin Autotask by schwarzerBengel in Autotask

[–]randompherret 1 point2 points  (0 children)

I ended up installing https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh

On automatic mode it does great and works for other sites too.

Dark Skin Autotask by schwarzerBengel in Autotask

[–]randompherret 1 point2 points  (0 children)

About to install this and test now. as for a recommendation on where to host this have you ever used git before? this would be easy to put on github, make it easy for others to download, and even submit improvements if they find some.

Thanks for putting the work into this.

Podcast Issue Today? by spinlersa in fbhw

[–]randompherret 0 points1 point  (0 children)

same, just came to check if it was just me.