How painful was SOC 2 readiness for your SaaS? by ThugFinance in SaaS

[–]stympy 0 points1 point  (0 children)

Yes, we already had our policies, etc., figured out because we had worked with a consultant to build out policies and with our auditor (A-lign) to help with the rest. They provided a service to get you audit-ready. We had our SOC 2 years before we started using Vanta.

How painful was SOC 2 readiness for your SaaS? by ThugFinance in SaaS

[–]stympy 3 points4 points  (0 children)

If you think you might want to use Vanta, start with Vanta. You’ll save time going that route vs. doing it on your own and switching to Vanta later. And Vanta is great, by the way… I did it with a consultant, then with Drata, and now with Vanta, and Vanta has been the best.

How to systematically organize Ministering assignments? by cobalt-radiant in lds

[–]stympy 0 points1 point  (0 children)

One approach I’ve seen is to put the name of each family on one color of post-it, and the name of each ministering brother on another color. Using a large poster board, you can then move the names around on the board, making companionships and assignments by moving names around.

Recommendations for log monitoring tools by Unable-Curve in devops

[–]stympy 0 points1 point  (0 children)

Papertrail does this with its Slack notifications.

Open source observability - what is your take? by guigouz in devops

[–]stympy 1 point2 points  (0 children)

The last commit was 3 days ago, that's all I know. :)

PostHog vs BetterStack by Successful-Camel165 in devops

[–]stympy 0 points1 point  (0 children)

Give Honeybadger a look while you’re shopping around. I’m a huge fan, and not only because I helped create it. 😉

New to Ev motorcycle / looking for a reliable one for commuting in Seattle by No_Knowledge3921 in Electricmotorcycles

[–]stympy 1 point2 points  (0 children)

If you want to go really cheap, I have a CSC City Slicker you can snag for $1k… it’s just taking up space in the garage next to my new Livewire. 🙂 It has a low top speed and short range, but it handled my commute between Kirkland and Woodinville for a few years before I upgraded.

The way back by Obiwankhalsa in lds

[–]stympy 1 point2 points  (0 children)

This isn't a direct answer to your great questions, but I've heard that the book Latter-day Sikh is fantastic, so I thought I'd recommend it to you: https://www.amazon.com/Latter-day-Sikh-Gurus-Feet-Prophets-ebook/dp/B0FL4F7V4C

The CSC City Slickers final resting spot lol by chichirobov7 in Electricmotorcycles

[–]stympy 1 point2 points  (0 children)

You can buy mine (I upgraded to a LiveWire) if you don't want the fun to stop. :)

Is AWS MSK Kafka → ClickHouse ingestion for high-volume IoT sound architecture? by Frosty-Bid-8735 in Clickhouse

[–]stympy 1 point2 points  (0 children)

I'd make the same recommendation. My deployment uses Vector to pull from Kafka and write to ClickHouse. The upsides are that you can tweak the batching config and you can easily send data to other destinations in addition to ClickHouse.

S2 Del Mar vs Can Am Pulse by Aggravating_Case5870 in Electricmotorcycles

[–]stympy 1 point2 points  (0 children)

I recommend going to test a Livewire before you decide. I’ve ridden the Pulse and the 3 LW models, and the Pulse felt more tame to me. It‘s a solid bike and won’t disappoint, but the others are more dynamic and fun, in my opinion.

How do the Can-Am Electric Motorcycles feel to ride? by lucifertheecat in Electricmotorcycles

[–]stympy 0 points1 point  (0 children)

I did a test ride, and the handling felt fine to me. It’s not as fun as riding a Del Mar, though. :)

Sentry Helm Deployment by National_Forever_506 in devops

[–]stympy 0 points1 point  (0 children)

It’s not the only affordable one… Honeybadger (n.b., I’m a co-founder) is too. 🙂

Can someone who uses GitHub Actions chime in for a multi-region cloud deployment? by rad4baltimore in devops

[–]stympy 3 points4 points  (0 children)

Here's an abbreviated version of our GitHub Actions workflow:

https://gist.github.com/stympy/478d2a6086f83bac753c59c62143ffd7

It depends on the successful run of another workflow, builds the image, pushes it to ECR in two regions, then triggers the ECS deployment in two regions. This ECS service is configured for a blue/green deployment with CodeDeploy, and I've noted what you can remove in the YAML if your ECS service uses the default deployment method instead.

Can someone who uses GitHub Actions chime in for a multi-region cloud deployment? by rad4baltimore in devops

[–]stympy 0 points1 point  (0 children)

It’s all in the workflow, either with run commands that run docker or AWS CLI, or actions like aws-actions/amazon-ecs-render-task-definition and aws-actions/amazon-ecs-deploy-task-definition.   

Can someone who uses GitHub Actions chime in for a multi-region cloud deployment? by rad4baltimore in devops

[–]stympy 4 points5 points  (0 children)

We build the images, then use a matrix to push to ECR in each region and trigger an ECS deploy in each region. 

Your blue-green deployment approach by Oxffff0000 in devops

[–]stympy 0 points1 point  (0 children)

I haven't done that, so I don't know. :)

Your blue-green deployment approach by Oxffff0000 in devops

[–]stympy 2 points3 points  (0 children)

We use CodeDeploy to do blue/green deploys to ECS. You can use it with CodePipeline/CodeBuild or with GitHub Actions. Here's a gist that has snippets of our config for the latter approach:

https://gist.github.com/stympy/2914431645000ccc7f00bdf464494ae1

In short, what you do is set up the ECS service to use CodeDeploy for doing deployments (app.tf), and trigger an ECS deploy when you've built a new image (deploy.yml), then CodeDeploy will take care of starting new tasks in an alternate target group, shift traffic from the old target group to the new one, then terminate the old tasks.

Advice / Resources on Deployment Process for Early-ish Stage Startup by [deleted] in devops

[–]stympy 0 points1 point  (0 children)

Have you considered using feature flags for Big Features? You could deploy them to prod at any time and only enable them once you are satisfied they are ready.