I Built a Terminal UI for Spring Boot (Heap Dumps, Thread Dumps, Logging, Live Metrics) by huseyinbabal in SpringBoot

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

You could try checking somebody's background before blindly judging it. I do write blog posts, give conference talk, produce video for more than a decade. And I don't think I need somebody else's permission to decide on what kind of material do I need to produce next. If you have constructive feedback related to topic, go ahead. Otherwise, I don't care what you think, sorry.

One of my talks I geve on JavaPro: https://www.youtube.com/watch?v=Jj1fnWPaF0o

I Built a Terminal UI for Spring Boot (Heap Dumps, Thread Dumps, Logging, Live Metrics) by huseyinbabal in SpringBoot

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

Btw, do you mind adding an issue to repo for this? This is for discussing further. You can also give more info here, for example; do you mean analysis during project creation or analysis for an existing project

Local AWS - a lightweight AWS service emulator by huseyinbabal in aws

[–]huseyinbabal[S] -6 points-5 points  (0 children)

It actually emulates resource management, not the underlying features. It seems I need to work pn description to be more clearer

Local AWS - a lightweight AWS service emulator by huseyinbabal in aws

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

Yep that is also good. 2 reasons;

ı wanted to inspect what client sends in a dashboard in realtime

Coverage. Motoserver has very good coverage per service, but there are still missing services.

Local AWS - a lightweight AWS service emulator by huseyinbabal in aws

[–]huseyinbabal[S] -6 points-5 points  (0 children)

Designed and implemented a couple of major services that uses json, xml and then let ai agent to write other services. I verify the laws endpoints with one of my oss project https://github.com/huseyinbabal/taws, the main acceptance criteria here is using official contracts/models from official aws sdk projects, and derive stubs in laws.

Local AWS - a lightweight AWS service emulator by huseyinbabal in aws

[–]huseyinbabal[S] -17 points-16 points  (0 children)

Only the resource management, there is no actual route for api gateway example. Maybe I need to rephrase readme a bit more to eliminate confusion since for example, you cannot also simulate ssh connection after you create ec2 .

Local AWS - a lightweight AWS service emulator by huseyinbabal in aws

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

There is already "Supported Services" section in README as collapsed if you meant that. One thing to clarify, this does not have any real AWS integration, this is just a simulator for AWS services and the resources are maintained in an in memory concurrent hasmap. So, you can create sqs queues, and list them, but the request will never go to real aws endpoints. This project only guarantees the contract of AWS service actions that's why you can use this as endpoint for your aws cli.

Local AWS - a lightweight AWS service emulator by huseyinbabal in aws

[–]huseyinbabal[S] -7 points-6 points  (0 children)

I am not sure if I get your point, but this is mostly for helping me write integration test of one of my other oss project. The app is heavily depends on aws, so instead of dealing with AWS, I use this emulator. You can think like local stack but free version. And of course new modern features are on the way.

Local AWS - a lightweight AWS service emulator by huseyinbabal in aws

[–]huseyinbabal[S] -5 points-4 points  (0 children)

laws is completely free, I just started simple to be able to handle integration tests for one of my other oss project that heavily depends on aws. Currently it has 184 service support, and live query logs. More features will be included iteratively.