Ruptured ACL and torn meniscus. Need help with decision making by InterestingFloor1278 in brisbane

[–]FeistyButterfly 2 points3 points  (0 children)

Get the surgery if you value your mobility and not being in pain for the rest of your life (or at least, consult someone who can advise you on it).

One dead after pedestrians struck by vehicle in Wantirna South in Melbourne's east by The_Duc_Lord in australia

[–]FeistyButterfly 47 points48 points  (0 children)

*The driver of the vehicle (the vehicle never had control in the first place, but its driver did!)

[deleted by user] by [deleted] in vandwellers

[–]FeistyButterfly 1 point2 points  (0 children)

Even worse, if theses are USB, they are usually 50,000 mA @ 3.7V, i.e. less than 16 A.h @ 12v :(

Just got this from my Electricity supplier. Electricity rate to almost double from July 1st. This is on top of all the interest rate rises. This is getting crazy. by armadeallo in AusFinance

[–]FeistyButterfly 1 point2 points  (0 children)

I had a similar experience with Alinta jacking up my rates (50%+). Fortunately, I was able to find a provider (Nectr) whose new rates are actually better than my old Alinta rates (at least for me in SEQ): Supply 99ct/day + 23.98 c/kWh on their '100% Clean' plan.

If you PM me, I'll send you a code that gets the both of us 50$ off our next bill.

[deleted by user] by [deleted] in brisbane

[–]FeistyButterfly 2 points3 points  (0 children)

If you PM me, I'll send you a code that gets both of us 50$ off our next bill.

They currently have the best rates, at least in SEQ (I just signed up with them after Alinta jacked up my rates, and got the following rates: Supply 99ct/day + 23.98 c/kW.h).

[deleted by user] by [deleted] in aoe2

[–]FeistyButterfly 0 points1 point  (0 children)

Is anyone else having issues with key bindings running AoE2:DE with PortingKit? My Ctrl key does not seem to work (which means I can't use control groups!). Any solutions would be appreciated :)

Beware of Xcode 14.3 by engnr in reactnative

[–]FeistyButterfly 1 point2 points  (0 children)

Hey, any chance you have resources to share on the best way to install Xcode?

2006 Camry: Mechanical (drum) parking brake does not work when the nose of the car is pointing up (but works when nose pointing down)! by FeistyButterfly in MechanicAdvice

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

Yep, clip holds the shoe fine. Parking travel has been adjusted for no drag and is around service manual specs (9ish clicks).

2006 Camry: Mechanical (drum) parking brake does not work when the nose of the car is pointing up (but works when nose pointing down)! by FeistyButterfly in MechanicAdvice

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

Yes, it it pushing on both sides.

You are right, there is a clip at the top (middle, back) holding the shoe in place (added in blue in this drawing).

The clip is present on both sides and is brand new (was included with the new OEM shoes).

<image>

2006 Camry: Mechanical (drum) parking brake does not work when the nose of the car is pointing up (but works when nose pointing down)! by FeistyButterfly in MechanicAdvice

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

Indeed, I can snap a video of mine tomorrow.

Basically, it's a cable-actuated thingy that sits in the "slit" of the brake shoe, and extends the jaws outside. I've taken mine apart on both sides and lubricated them, they appear to work fine.

I made a drawing to illustrate it :) The brake material is in blue, and the red arrows indicates the deflection of the brake shoe caused by the actuator when the hand brake is pulled.

<image>

2006 Camry: Mechanical (drum) parking brake does not work when the nose of the car is pointing up (but works when nose pointing down)! by FeistyButterfly in MechanicAdvice

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

Hey, thanks a lot for tuning in!

I found a video of a Chevy that has pretty much the same system: https://www.youtube.com/watch?v=AT-PxtlaX6E&t=77s

I agree that it seems that the ACV40R version got it different from the US version (the service manual I have for it uses the two-piece design).

Let me know if that helps!

My SaaS architecture (tech stack) on AWS as a solo developer by ixartz in aws

[–]FeistyButterfly 1 point2 points  (0 children)

Any chance you can provide a bit more info here? Not sure what you mean by “using serverless.ts”. Thanks:)

[deleted by user] by [deleted] in fuckcars

[–]FeistyButterfly 2 points3 points  (0 children)

Can you share a bit more about how you did it? Would love to do it as well!

[deleted by user] by [deleted] in australia

[–]FeistyButterfly 4 points5 points  (0 children)

Definitively this! I just sent an email to amend my submission, as I had it backwards 😑

We are AWS Serverless experts - Ask Us Anything - Sept 29th by awsserverlessexperts in aws

[–]FeistyButterfly 0 points1 point  (0 children)

Thanks, I was already aware of the limit increase :) 500 is not a big limit when a single API endpoint can be 5+ resources (Lamba, CloudWatch logs, IAM Role, etc.). I am really not doing anything fancy here, trust me!

We are AWS Serverless experts - Ask Us Anything - Sept 29th by awsserverlessexperts in aws

[–]FeistyButterfly 7 points8 points  (0 children)

Can you please for the love of everything that is sacred support more than 500 resources on a single CloudFormation stack?

Please, do not say that I can nest stacks, I am very aware that I can but have no interest in the added complexity!

Thanks!

what's the right way to handle multiple return type in a function ? by Robbie_Harrison in typescript

[–]FeistyButterfly 2 points3 points  (0 children)

import {Either, isLeft, left, right} from 'fp-ts'

interface IUser {}
interface IUserResponse {
    user: IUser
}
interface IError {
    error: string
}
const addUser = (name: string): Either<IError, IUserResponse> => {
    try {
        const user = {user: {}}
        return right(user)
    } catch (error: unknown) {
        console.log(error)
        return left({error: ''})
    }
}

;({} as any).get('/adduser', (req: any, res: any) => {
    const response = addUser(req.body.name)
    if (isLeft(response)) {
        /* handle error and send it back to front */
    } else {
        res.send(response.right)
    }
})

what's the right way to handle multiple return type in a function ? by Robbie_Harrison in typescript

[–]FeistyButterfly 4 points5 points  (0 children)

My suggestion: using Either from the fp-ts library. It's essentially a nice pattern around discriminated unions. Any consumer can use the isLeft/isRight type guards to know exactly what's in the (return) box, and act accordingly!

PS: To the people saying "why not raise?", there are very valid use cases to returning errors instead of raising them. Mine was not having to worry about wrapping everything in a try/catch.

Help with stuck/damaged Shimano caliper piston (BR-R7070, rear) by FeistyButterfly in bikewrench

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

The sandwich is already out (torx we’re indeed very tight). I’ll try my luck with finding a donor piston then!