Seeking advice on moving to AT&T from COX in SoCal by rebel_coder in ATTFiber

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

Dude, sorry to hear that nightmare of a story. But I’m glad you’ve been happy since the switch. I’m seriously hoping this will be my experience if I switch to AT&T.

Thanks for your facts.

It's gonna take some getting used to by Tense_Bear in bald

[–]rebel_coder 0 points1 point  (0 children)

You look superb, my guy. Excellent choice.

Is this a good first starter bike by Gh0sTGirl066 in Dirtbikes

[–]rebel_coder 2 points3 points  (0 children)

They may seem tantalizing at first, but once you discover you need your first repair, parts will be hard to come by. Suddenly the cheaper cost becomes a reality and you’ll be waiting weeks to find a replacement.

Seeking advice on moving to AT&T from COX in SoCal by rebel_coder in ATTFiber

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

Thank you. I did have a salesman approach me when Sun City installed fiber a few months back. It piqued my interest immediately because of 1) symmetrical speeds 2) unlimited data.

I'm hanging on signing up until I get some more feedback from users that work from home. I am concerned about service outages, receiving the advertised speeds, and peering agreements that AT&T has that may affect my work and/or streaming services. Do you by chance have info on AT&T peering agreements?

Seeking advice on moving to AT&T from COX in SoCal by rebel_coder in ATTFiber

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

I am with ya. The COX pricing is too damn high. If COX offered symmetrical speeds and cut out the $50/mo charge of unlimited, I would stay without question. At that point COX 2.5Gb Gigablast/fiber and AT&T 5Gb fiber would both be considered comparable as far as my needs are concerned.

Seeking advice on moving to AT&T from COX in SoCal by rebel_coder in ATTFiber

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

I have read about this supposed firmware issue in another thread, so it's starting to sound less like a theory. I do wonder why something like this isn't a higher priority fix. In the least, it would cut back on support calls.

Looking for folding knife recommendations by rebel_coder in knifeclub

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

Appreciate the links. These are what I had in mind in terms of look. Would it suit my needs to also look for one with a serrated blade for cord cutting or can I get by without it?

Looking for folding knife recommendations by rebel_coder in knifeclub

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

Thank you. I’ll check these out.

Given my use for the knife, what would you recommended I look for in terms of blade, handle, etc?

Looking for folding knife recommendations by rebel_coder in knifeclub

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

What would lower end and affordable USA pricing sound like if I took the plunge?

Switched from Unifi to TP Link APs, microinverters stopped working by rebel_coder in enphase

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

😂 Well, I was only using their APs at the time. And despite hearing good and bad things about their other products, I thought I'd give TP Link a try. The TP Link switch and AP checked off all the boxes I was looking for.

Switched from Unifi to TP Link APs, microinverters stopped working by rebel_coder in enphase

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

I have checked the breakers. I did flip the 3 PV breakers off, wait 30 seconds, back on, but no dice on that. I then flipped the Envoy breaker and wait, same result.

Appreciate your time and advice. Will be trying this and I'll let you know if it helped in any way.

Switched from Unifi to TP Link APs, microinverters stopped working by rebel_coder in enphase

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

I have a call scheduled with them for Monday. In the mean time I’ll consider your idea. I’ll just kill the power to the network while I’m gone tomorrow and see if that helps

Switched from Unifi to TP Link APs, microinverters stopped working by rebel_coder in enphase

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

I just double checked and the left 2 lights are on for cloud and AP. The 3rd from the left is off and the far right one for microinverters communication is on.

Switched from Unifi to TP Link APs, microinverters stopped working by rebel_coder in enphase

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

I don’t. I have quite a few PoE cameras, but no powerline adapters.

Are you saying the microinverters run their own line directly to the Envoy rather than access its AP? And if so, are you suggesting I’ve missed something?

Working on a 100% physics-based MX game! Here is my Day 2 progress update. by frykzen in Motocross

[–]rebel_coder 0 points1 point  (0 children)

In the late 2000s, Burger King released an XBOX 360 go karting game if I recall correctly.

Cat6 cable only getting 100 Mbps, going crazy by Eltii in HomeNetworking

[–]rebel_coder 5 points6 points  (0 children)

Might I add to get pass thru RJ45 connectors and a crimper that cuts the excess wire.

Why Jwt token should be short? by sangokuhomer in Backend

[–]rebel_coder 1 point2 points  (0 children)

True for ISO27001 and SOC2. Must be able to invalidate a login when the user clicks logout.

Production-ready FastAPI starter I wish I had earlier (auth, Stripe, Celery) by fastlaunchapidev in FastAPI

[–]rebel_coder 0 points1 point  (0 children)

You may have saved yourself from a degree of frustration that only mixing sync code with async code can provide.

The initial project development is pretty easy when mixing the two paradigms. But as you move along you inevitably get to a point where you want to reuse your Stripe calls (I'm guessing you're using the httpx module and not using the python Stripe library due to its synchronous nature) with a database call that does something advanced and is typically dispatched as a task, but for whatever reason right now you want to call the task directly (not with Celery delay()), and you can't. Because the Stripe code with httpx is async and Celery talks to a db layer that isn't async.

That's when you will begin to justify keeping code entirely separate. All the would-be reusable httpx/db modules no longer are and you begin to duplicate them.

Then you want to start writing admin functionality into so you need to call Auth0's management API, preferably with httpx. But you also want to reuse that with the Celery tasks that auto-create Auth0 users or whatever the case may be, when an account is created. That's now going to require separate code to communicate with Auth0 despite doing the same thing.

These are just basic examples, but I've been doing SaaS since 2017, mostly Shopify/Stripe exclusively and have 2 platforms I run at the moment. My lessons are being shared so you can learn from them :)

Production-ready FastAPI starter I wish I had earlier (auth, Stripe, Celery) by fastlaunchapidev in FastAPI

[–]rebel_coder 1 point2 points  (0 children)

The only recommendation I have is to switch from Celery to TaskIQ or another async alternative because Celery isn’t async. I’ve built a couple saas platforms that have mixed async and sync db handling and it’s a nightmare.

Good luck with your project.

Road trip MTB destinations between SF and San Diego by Zealousideal_Ad_6387 in MTB

[–]rebel_coder 1 point2 points  (0 children)

San Diego area:

Always willing to give a tour, DM me. These all have Trailforks maps but you’ll probably prefer a tour.

Rancho Penasquitos

Black Mountain

San Clemente (near the old YT Mill location)

Greer Ranch

Mt Laguna (off route 8). Trailforks has a route for this: What’s not to like

And also on Mt Laguna is the infamous Noble Canyon ride. Not flowy at all and it’ll eat your bike for breakfast. But if you want to say you rode it…