ecom馃搼 uliva website for footwear 馃彿锔廡ags : #16-09-2026, #pending #completed #permanent 馃敆 Links Key Takeaways Overview Requirements I want a modern, premium and mobile-friendly e-commerce website for mSep 19, 2026路5 min read
Deep Dive jackson with Spring BootCreate a Spring boot project Add a dependency <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.13.1</version> </dependency> Create a simple Pojo Class package com.h...Mar 25, 2024路2 min read路13
Java and Junit Deep dive with examples馃搼 unit testing in java with junit 4 馃彿锔廡ags : #22-05-2022, #pending #completed #permanent 馃敆 Links project link github sandeepnegi1996/junit_testing: This is the project for learning the junit working (github.com) Key Takeaways Overview here we w...Mar 17, 2024路6 min read路21
Java Concurrency in PracticeJava Concurrency in Practice Become the best by practicing your art Moore鈥檚 law Amdahl鈥檚 Law Should be read cover to cover. Java Specialist -> newsletter -> check that out Don鈥檛 just think of low level design such as code changes -> but try to ...Feb 22, 2024路3 min read路2
Things I am looking for my next jobBetter Laptop -> since I have faced issues in my last organization where what happened -> whole organization whole team is using mac and they have given me windows -> and there are so many isues I have faced with that laptop -> and I have to solve th...Jan 31, 2024路1 min read路7
Interview Experience : Vonyage - Round 1Motivation just documenting my journey of the interview prepration and learning by doing and sharing it with others Interview Questions Design a service for messages Lets say for each message we are going to charge .001 This service will have two ...Jan 25, 2024路2 min read路5
SQL : group results only by date and not date timeselect trunc(DATE_ADDED),count(*) from RESULTS where MERCHANT_ID='test123' group by trunc(DATE_ADDED);Jan 25, 2024路1 min read路5