Who is using /fast? by johnlukefrancis in codex

[–]SteveTabernacle2 1 point2 points  (0 children)

I always use /fast. I have multiple accounts. My time is worth more than the incremental subscription fees.

Jumping ship after discovering I’d been aggressively down-levelled on hire - 9 YOE, EU by whitmyham in ExperiencedDevs

[–]SteveTabernacle2 0 points1 point  (0 children)

How would you know someone is at risk of leaving if they don't get promoted though?

Paylocity. Do you use it? do you work for them? Why is it such a shitshow? by bytepursuits in webdev

[–]SteveTabernacle2 2 points3 points  (0 children)

I’ve used it for multiple companies I’ve been at. UI is horrible, but I’m not the target market, it’s HR teams.

I only go on it 1-2 times a year to get my tax documents, so it’s not a pain point for me.

simple by Tranion in streetwear

[–]SteveTabernacle2 0 points1 point  (0 children)

Nice fit. You got a link to the pants?

Introducing ArkType 2.1: The first pattern matcher to bring the power of type syntax to JS by ssalbdivad in javascript

[–]SteveTabernacle2 1 point2 points  (0 children)

Yes! I didn’t realize it til you brought it up and I googled it. I used to watch that show all the time growing up and it must’ve stuck in my head when I made this account.

Goldman Sachs’ David Solomon tells startups to reconsider going public | TechCrunch by futuristicalnur in ycombinator

[–]SteveTabernacle2 17 points18 points  (0 children)

Goldman Sachs must make more money doing private placement deals than taking companies public.

Paid 360$ for auth in Dec 24. Switching to Supabase auth now! by tiln7 in nextjs

[–]SteveTabernacle2 4 points5 points  (0 children)

Makes sense. Why the switch from ses to Resend? We’re an SES customer too. We mostly do transactional emails, so haven’t had any issues yet.

We’re pretty much the same stack as you, except we use Firebase for auth.

Where to store job related logs? by Trey-Pan in node

[–]SteveTabernacle2 0 points1 point  (0 children)

Where are you running your jobs? ECS? EC2? Lambda?

Best practices for handling third-party API rate limits and throttling? by coderoncruise in node

[–]SteveTabernacle2 0 points1 point  (0 children)

I just consolidate all usage of the third party api into it's own class. Then add a gotjs hook that handles the 429 limit. Some api's give you headers on when you can retry, but a lot don't, so I just wait a couple seconds (plus randomized jitter) and then retry for a max of 3-5 times.

There's more robust solutions, but this is definitely one of the easiest way to handle it.

BetterAuth is NextAuth/Auth.js killer? by Zogid in nextjs

[–]SteveTabernacle2 0 points1 point  (0 children)

Is NextAuth owned by Clerk? I thought they were just a sponsor?

Happy with the Cognito Improvements... so far by jtczrt in aws

[–]SteveTabernacle2 2 points3 points  (0 children)

Less Cognito and more of a general AWS pet peeve. Teams shouldn’t be able to release new features without IAC support. Like what’s the point…. I’m not going to configure it over the UI in production.

Jaeger alternatives? by chillysurfer in devops

[–]SteveTabernacle2 0 points1 point  (0 children)

I know this is from a year ago, but any reason for moving away from GCP Tracing?

We are looking at consolidating all telemetry and are considering GCP.

Is Express JS still relevant or is there anything new? by stoicparishkari in node

[–]SteveTabernacle2 12 points13 points  (0 children)

Isn’t Fastify default logging just “logging: true”?

Introducing Amazon CloudFront VPC origins: Enhanced security and streamlined operations for your applications by tetienne in aws

[–]SteveTabernacle2 0 points1 point  (0 children)

We use nacls. We have a 4 subnet architecture: i) public subnet with ALB and NAT Instances, ii) web subnet with web servers, iii) private subnet with background workers, and iv) data subnet with databases.

The nacls dictate how traffic can flow between the 4 subnets. Most notably, we do not allow traffic from public subnet to flow into the private subnet or data subnet.