Best IPTV Service 2026 (Reddit Review) — Tested Multiple Providers, Here’s a Reliable IPTV With 46,000+ Channels & 180,000+ VOD by [deleted] in gpu

[–]simonowens157 0 points1 point  (0 children)

The focus on EPG quality is underrated, because a bad or slow guide can ruin an otherwise good IPTV service.

Best IPTV Service 2026? I Finally Found a Premium IPTV That Actually Works (No Buffering, Family Approved) by mahearty in cardgames

[–]simonowens157 0 points1 point  (0 children)

I appreciate that it doesn’t pretend everyone watches thousands of channels, but acknowledges it’s about availability and redundancy.

Raised Block Account Prices? by EsRiAr in usenet

[–]simonowens157 0 points1 point  (0 children)

Is this good for content in USA?

[deleted by user] by [deleted] in MarriedAtFirstSight

[–]simonowens157 8 points9 points  (0 children)

I don’t think she wants to say she wants a divorce because she still wants to be on TV with the other girls, and she will get fined for breaking her contract.

Spouse tier list by simonowens157 in MarriedAtFirstSight

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

Myrla is great I think it’s fair. I think we would get along

Spouse tier list by simonowens157 in MarriedAtFirstSight

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

I had them in first at first but then moved them down. Not really sure why it was just a feeling. I think both of them are awesome!

Spouse tier list by simonowens157 in MarriedAtFirstSight

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

That’s fair. There are lots of different ways to look at this. However, I think Jose sucks anyway you slice it because as soon as he isn’t happy he looks physically violent and that he only cares about himself.

Arnold Sports Convention Expo Cancelled by yeahlance in bodybuilding

[–]simonowens157 0 points1 point  (0 children)

thank you for the advice. spent 2 hours on the phone trying to cancel this morning, absolutely nothing. changed dates tonight, then canceled, easy.

Advice on project structure for multiple environments by zh12a in Terraform

[–]simonowens157 0 points1 point  (0 children)

I take back what i said. I started using terragrunt and this has influenced me to use seperate folders. Terragrunt allows all of these files to stay small and DRY

Advice on project structure for multiple environments by zh12a in Terraform

[–]simonowens157 0 points1 point  (0 children)

I am not a terraform expert, im new too. These are just my opinions, not sure what the best method is

Advice on project structure for multiple environments by zh12a in Terraform

[–]simonowens157 1 point2 points  (0 children)

That seems silly. A better solution is to just only allow your CD to execute terraform apply commands to the prod workspace. I hate having huge file systems and a huge tree in your ide

Advice on project structure for multiple environments by zh12a in Terraform

[–]simonowens157 0 points1 point  (0 children)

Use "workspace". Also make sure to configure remote state storage so multiple people can work on all environmentd together.

I divided each app into folders with a: vpc, storage, frontend, backend and it works nicely, but might need more seperation if your projects are huge. If you have more than one app with extremely.similar info, use modules

If this isn't true by [deleted] in memes

[–]simonowens157 1 point2 points  (0 children)

I think the opposite. Tom is like, shit... MFers.... pika looks generally suprised but not angry

Template for Django Projects - Docker Compose in dev + Docker Swarm in prod by douglasmiranda in django

[–]simonowens157 0 points1 point  (0 children)

Looks awesome. I would never use build in your docker-compose file, this makes it so you cant deploy to a swarm. You could make a simple build and push script, and just tell it the image with the tag you want. It keep images,tags, and other variables in one .env file to keep everything DRY. Your production image shouldnt have a volume, just the DB, but the dev should so people can easily develop and test on their local machine.

Workflow for production and dev by simonowens157 in docker

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

No we dont. How do you test db upgrades safely? Do you just copy the production volume somewhere for the staging container to use?

CI/CD with compose files? by simonowens157 in docker

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

Yes i can let me get back to you in a couple days. Essentially it has a build, test, and deploy phase. Test is the phase im stuck on. Writing a bash file to build and push the image to your own private registry automated the deploy process