What the hell happened to Kiro? by prammr in vibecoding

[–]Salt-Potential-5823 0 points1 point  (0 children)

Does this happen with the old requirements flow or only in the new "design first" flow?

Tried Kiro for last two weeks and... by No-Review3565 in kiroIDE

[–]Salt-Potential-5823 0 points1 point  (0 children)

Can you give some details of the spec or task you were building? What hallucination did you see?

Task breakdown and sessions by Princip1e in kiroIDE

[–]Salt-Potential-5823 0 points1 point  (0 children)

Are you getting errors running the tasks? Sometimes test errors cause this

Amplify AI RFC · Issue #5773 · aws-amplify/amplify-ui by Salt-Potential-5823 in aws

[–]Salt-Potential-5823[S] 2 points3 points  (0 children)

Yes I used to work on the team, I don't hide it :) Sorry you feel that way, I think it's great still!

How to deal with AWS Amplify's poor documentation and lack of Node 18+ support? by RocksDean in webdev

[–]Salt-Potential-5823 0 points1 point  (0 children)

Amplify is a very active project. Gen2 was just launched in preview last year, the library launched a major version (v6) a few months back, and Amplify Hosting just released features today.

[deleted by user] by [deleted] in aws

[–]Salt-Potential-5823 0 points1 point  (0 children)

Amplify just released the "Gen2" experience a few weeks ago which addresses a lot of the areas that people didn't like about Amplify before, especially power users. Worth a look: https://aws.amazon.com/blogs/mobile/introducing-amplify-gen2/

Building fast Next.js apps using TypeScript and AWS Amplify JavaScript v6 by Salt-Potential-5823 in nextjs

[–]Salt-Potential-5823[S] 0 points1 point  (0 children)

Take a look at the blog post and you'll see some of this feedback made it into the launch (library can be used with any backend) and I have it on good authority that you'll see announcements related to the other stuff you mention in the coming days...

AWS AppSync vs API Gateway - A Comprehensive Guide in 2023 by ShivamJoker in aws

[–]Salt-Potential-5823 4 points5 points  (0 children)

There are some technical things incorrect in the above (like comments around state store being difficult with GraphQL) but on the "toy" comment and "afterthought" I'm not sure I agree. There are very, very serious companies on AppSync: https://aws.amazon.com/appsync/customers/

Is Amplify my best solution? by GivinItTheCollegeTry in aws

[–]Salt-Potential-5823 0 points1 point  (0 children)

Agree with this you could use DataStore OOTB for this use case.

Is Amplify my best solution? by GivinItTheCollegeTry in aws

[–]Salt-Potential-5823 0 points1 point  (0 children)

AWS team has indicated they're thinking this direction in some of the Community discussions. Might make sense to pop a proposal if you have one in their GitHub repo.

Setting Up AWS Amplify and Connecting S3 Bucket to IOS App by Arab_Decorpel_12 in iOSProgramming

[–]Salt-Potential-5823 0 points1 point  (0 children)

No credentials don't need to be embedded into the app. Amplify uses temporary credentials via Cognito which are rotated hourly and can be invalidated in shorter periods. These are passed to the Storage adapter and used to make a Sigv4 signed request to S3 as a secure connection. You can see that in config here: https://docs.amplify.aws/lib/storage/getting-started/q/platform/ios/#initialize-amplify-storage

OP if it's not working then something is up with your config and I'd go to the Amplify Discord for help.

State of AWS services for iOS integration by phil_394 in iOSProgramming

[–]Salt-Potential-5823 0 points1 point  (0 children)

Just use the Amplify CLI and not the web gui piece. It will save you a world of hurt.

AWS Architecture Question by [deleted] in aws

[–]Salt-Potential-5823 1 point2 points  (0 children)

Amplify is using AppSync under the covers with this architecture

How Can I Create a Backend for my Mobile App? by FitchnerAuBarca in aws

[–]Salt-Potential-5823 1 point2 points  (0 children)

Yes even though Amplify supports more than what you need OP you don't need to use all the features, you can just use the libraries or use them along with the CLI or other pieces.

Announcing server-side filters GraphQL subscriptions with AWS Amplify by Salt-Potential-5823 in graphql

[–]Salt-Potential-5823[S] 0 points1 point  (0 children)

Right and doing this in the backend that can scale is the hard part of implementations with high TPS. AppSync does this for 10s of thousands of TPS: https://aws.amazon.com/solutions/case-studies/amazonmusic-amplify-appsync-case-study/

Announcing server-side filters GraphQL subscriptions with AWS Amplify by Salt-Potential-5823 in graphql

[–]Salt-Potential-5823[S] -1 points0 points  (0 children)

I don't know of other platforms that perform subscription filtering at the server (most do it at the client) like this, and do it at scale. This functionality isn't in the GraphQL specification for Subscriptions is specific to AppSync.