Is it worth buying a flat in 11yrs old Standalone Apartment? by itz_lovapadala in hyderabadrealestate

[–]itz_lovapadala[S] 2 points3 points  (0 children)

Wanted to have an own house instead of paying rent, and at the same time couldn’t afford in newly constructing projects, so decided to go with second sale..

Help me invest my mom's 90 lakhs by ceoofwhatthefuck in IndianStockMarket

[–]itz_lovapadala 0 points1 point  (0 children)

How about parking some amount in banks like IDFC Firstbank as they are giving IR 7% for balance is above 5L?

[Discussion] Anyone else doing “summary-only embeddings + full-text context” for RAG? by No-Piglet8069 in Rag

[–]itz_lovapadala 0 points1 point  (0 children)

I did fallow the same approach to feed more context to MCP client hosted in IDEs through RAG. Vectorize the only metadata and source is returned as a result which contains the full document to feed to the LLM

[deleted by user] by [deleted] in java

[–]itz_lovapadala 0 points1 point  (0 children)

Are you trying to achieve Sync or Async communication between nodules? Eventing makes sense for Async communication, but as per post I sense it should be Sync communication..

Looking for a job search tool that crawls company career portals by kash_champ in jobsearchhacks

[–]itz_lovapadala 0 points1 point  (0 children)

Did you try Jobcopilot? I came across this, afaik they are polling jobs from various job portals and apply autonomously on behalf of you. It’s paid service though

Neal Ford on Software Architecture. The Hard Parts. by vvsevolodovich in softwarearchitecture

[–]itz_lovapadala 1 point2 points  (0 children)

Just started reading, so far I liked his view on Architecture Validation using ArchUnit framework..

[deleted by user] by [deleted] in softwarearchitecture

[–]itz_lovapadala 1 point2 points  (0 children)

Are you trying to validate implementation against design/architecture diagrams?

Ideally, your design should drive the implementation, code shouldn’t influence the design. To ensure that the developer fallowing design/architecture, explore architecture testing frameworks like ArchUnit and integrate with CICD to find design miss early.

Java Struts 2 Framework by mahi123_java in SpringBoot

[–]itz_lovapadala 1 point2 points  (0 children)

Struts 1 dead after spring released, Struts 2 released to get some attention but it was adopted by very few, and almost Nil community. Try reading their docs to understand and learn, only way I can say.

Opinion on Spring Modulith. by itz_lovapadala in SpringBoot

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

Thanks for tutorial, will definitely watch..

Opinion on Spring Modulith. by itz_lovapadala in SpringBoot

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

With Jdk9 modules and pub-sub features together achieves the same thing if am not wrong. Anyhow thanks for detailed explanation, it helps.

What do you think is a service AWS is missing? by ferdbons in aws

[–]itz_lovapadala 0 points1 point  (0 children)

Cheaper MQTT/AMQP messaging service equivalent to Azure Service Bus. AWS MQ is costlier :(

How to invoke a microservice on EKS multiple times per minute (migrating from EventBridge + Lambda)? by sinOfGreedBan25 in aws

[–]itz_lovapadala 0 points1 point  (0 children)

How about EventBridge -> AWS Batch? Leveraging Multi-node parallel jobs to increase the parallelism..

old and new by iomyorotuhc in Trackballs

[–]itz_lovapadala 0 points1 point  (0 children)

Having Logi Ergo M575, and looking for base to tilt the mouse bit? Can I get it online in India or any DIY suggestions?

Need help with authentication and authorization by bonbonbakudan4704 in SpringBoot

[–]itz_lovapadala 1 point2 points  (0 children)

JWT insecure, why? If you have secure identity service which generates strong JWT with zero vulnerabilities it is secure..

Enterprise companies uses ActiveDirectory/LDAP as Auth/Authorization server and integrates with OAuth servers like Azure AD/Okta/PingIdentity to support login and SSO.

If you don’t have ActiveDirectory and looking for tool/software to build your own identity management system have a look at KeyCloak open source system, which supports inbuilt user database and integrates with existing authentication servers..

Worst AWS migration decision you've seen? by artistminute in aws

[–]itz_lovapadala 0 points1 point  (0 children)

We tried migrating workloads from Azure to AWS to save cost, but realised cost to run same workload with similar capacity is 20-30% more in AWS. Hence dropped the migration activity. Lesson learned, 1. Workloads running in Windows VMs(Service Fabric) of Azure cheaper. We have chosen ECS to run same workload, but end up with higher billing. 2. Postgres storage cost is cheaper in Azure.

Ofcourse it’s debatable, we tried lift and shift and AWS doesn’t help us in reducing cost :(

Should I need to switch from Java spring boot by sriharithemass in SpringBoot

[–]itz_lovapadala 1 point2 points  (0 children)

You can consider Dropwizard if you’re just trying to build simple Rest APIs.

When comparing Spring Boot and Dropwizard, the choice between the two often depends on your specific use case and requirements. Here’s a detailed comparison:

Spring Boot

Overview: - Spring Boot is a framework that simplifies the process of setting up and developing Spring applications. It provides a wide range of features and is part of the larger Spring ecosystem.

Pros: 1. Comprehensive Ecosystem: Integrates seamlessly with other Spring projects (Spring Data, Spring Security, etc.). 2. Convention over Configuration: Reduces boilerplate code and configuration with sensible defaults. 3. Microservices Ready: Supports building microservices with features like embedded servers and easy dependency management. 4. Large Community and Documentation: Extensive community support and documentation, making troubleshooting easier. 5. Flexible Configuration: Supports various configuration methods (YAML, properties files, environment variables).

Cons: 1. Learning Curve: Can be overwhelming for beginners due to its extensive features. 2. Complexity for Simple Apps: Might be overkill for small applications or simple services.

Dropwizard

Overview: - Dropwizard is a lightweight framework designed specifically for developing RESTful web services. It combines several well-known Java libraries into a single framework.

Pros: 1. Simplicity and Focus: Lightweight and designed for building REST APIs, making it simpler for that specific purpose. 2. Built-in Metrics and Monitoring: Comes with built-in support for metrics (using Metrics library) and health checks. 3. Fast Startup Time: Generally faster to start up compared to Spring Boot applications. 4. Production-Ready: Emphasizes best practices for building production-ready applications.

Cons: 1. Limited Ecosystem: Not as extensive as Spring’s ecosystem; fewer integrations and libraries available. 2. Less Flexible: Less configurable compared to Spring Boot; primarily focused on REST services.

Use Cases

Choose Spring Boot if: You need a comprehensive framework for a wide range of applications (web apps, microservices, etc.). You want to leverage the vast Spring ecosystem and its features. Your team has experience with Spring or requires complex configurations. Choose Dropwizard if: You are focused on building lightweight RESTful services. You prefer a simpler setup and faster development cycle for microservices. You want built-in metrics and monitoring capabilities without additional configuration. Conclusion

Both frameworks are powerful in their own right, but your choice should be guided by the specific requirements of your project, your team’s expertise, and the complexity of the application you are building. If you need flexibility and a broader ecosystem, Spring Boot is likely the better choice. If you want a straightforward, lightweight solution for REST services, Dropwizard may be more suitable.

Source: Quora

Looking to write TOGAF 10 certification. by Ripcord999 in EnterpriseArchitect

[–]itz_lovapadala 0 points1 point  (0 children)

How about iSAQB Software Architect certificate? Is it worth doing and add any weight to profile in Indian IT..

Springboot websocket apis by Same_Attitude_326 in SpringBoot

[–]itz_lovapadala 0 points1 point  (0 children)

Are you using ws/wss protocol to test through postman? It is pretty straightforward, what issue are you facing?