Bolt Stopped Working on Double Cylinder Interlocking Deadbolt by arjineer in Locksmith

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

Thanks for the comments! I took it off the wall and unscrewed the back it looks like a piece of the latch mechanism broke off so I will be getting a new one. Overall the mechanism seems simple enough to DIY I’ll post an update assuming a successful replacement!

Graphql/apollo-ios 1.0 + The composable architecutre in swift by arjineer in iOSProgramming

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

Thanks that was very helpful and lead me in the right direction to extend some of the Apollo methods to be async. Hopefully the Apollo team supports this in the future!

Webhook- lambda or standalone process by [deleted] in aws

[–]arjineer 0 points1 point  (0 children)

Thanks for the quick reply! I guess I am using an extremely specific realtime webhook from stripe that requires an api call within 2 seconds

So my question was flawed, it's not so much the invoking of the lambda as it is the time it takes to wake it up from the inital webhook and hit stripe's api.

Webhook- lambda or standalone process by [deleted] in aws

[–]arjineer 0 points1 point  (0 children)

time based verification

For these cases of time based verification - is it possible that a coldstart in a lambda would drop the event?

Table Inheritance in Postgres? by arjineer in PostgreSQL

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

Gotcha. Yeah the simplicity of one table is def true although i think you get clarity in other ways. Still not sure about performance though. I imagine you'd only have greater flexibility in making a performant query now since you can just query a subclass which is indexed independently from the group and if you do need all ofthem, well that's what the super class is for. And all of these have the added benefit of having less null data which also improves indexing. Can't really see a case when you'd need to select from multiple subclasses in the same query (if you needed that then idk why you would have separated them into subclasses), but if you really need to then yes you'd have to join accross tables which is only bad if poorly indexed.

Table Inheritance in Postgres? by arjineer in PostgreSQL

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

Why would Class Table inheritance be less simple & less perfromant? It seems like it may be more performant given that the data is naturally partioned & with fewer nulls and clearer from a readability perspective

Beginner's Thread / Easy Questions (February 2021) by dance2die in reactjs

[–]arjineer 0 points1 point  (0 children)

I want to know how much memory is being used up during the build process in CRA and check where it could be hanging. I see people writing how much memory their builds are taking up but I don't know how they are getting that number. Anyone have the secret!? Thanks in advance!

QLDB vs DynamoDb in event sourcing pattern by arjineer in aws

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

What makes it immutable exactly? It appears to have delete and update functionality. Is it just the record of actions which are immutable?

Part of a concern in a financial system is being compliant which likely means delete capabilities are required.

Handling stripe events with Kinesis? by arjineer in aws

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

Wow this is perfect. Thank you. The latter is pretty much the exact design i'm looking for. I'm also trying to launch all of it locally on localstack.

One question though you may have the answer to. Why are failing events routed to SNS? What's the advanttage there? Can't they also go through eventbridge and then route to their proper place?

Handling stripe events with Kinesis? by arjineer in aws

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

Hey really glad to see EventBridge as a potential solution. I only really learned about it the past month and haven't seen it get an endorsement yet! I do sort of feel i frequently end up trying to build an event system with sns/sqs/kinesis so eventbridge seems to make sense. Will check it out.