dhanashri_2610 Profile Banner
Dhanashri Lambade Profile
Dhanashri Lambade

@dhanashri_2610

Followers
63
Following
590
Media
8
Statuses
113

🔬 "Engineer at heart 💡 Innovating solutions, not problems 🚀 Forever a techie 🌐" Software Engg | Angular| Java | NodeJS | JSP| Servlet | Hibernate | Spring.

Pune, Maharashtra, India
Joined August 2018
Don't wanna be here? Send us removal request.
@dhanashri_2610
Dhanashri Lambade
6 days
Success isn’t built in a day — it’s built every day. Even small progress counts. Every step forward is one step closer to your breakthrough. #NeverGiveUp #Hustle #Goals #MindsetMatters #StayPositive.
1
0
7
@dhanashri_2610
Dhanashri Lambade
7 hours
RT @Saurabh_CS_: 🚀 Hi, I’m Saurabh — BCA grad & Web Developer passionate about building clean, scalable web apps. 💻 Skills: React.js | Java….
0
2
0
@dhanashri_2610
Dhanashri Lambade
4 days
Well said.
@rohit_negi9
Rohit Negi
4 days
One mindset I’ve seen in many students is this , even if I start slow in the IT industry, I’ll make a big jump in 2-3 years. College mein thoda masti kar lete hain, pehli job chhoti moti le lenge, phir experience ke saath switch kar lenge. What they don’t realise is… after that.
0
0
3
@dhanashri_2610
Dhanashri Lambade
11 days
Curious to hear your thoughts, guys. What do you think. Will this impact the Indian economy??
Tweet media one
0
0
4
@dhanashri_2610
Dhanashri Lambade
11 days
When is ValidatorFn used?.It is used when you want to create custom validation logic based on custom rules like,.1.Passwords must match.2.Joining date > Date of Birth.3.Username should not contain certain characters.4.Age >= 18 yrs.5.Cross-field validation (comparing two fields).
0
0
5
@dhanashri_2610
Dhanashri Lambade
11 days
While working on a project, I hit a roadblock:. 🛑"Joining date must be after date of birth.".That’s when I discovered the power of ValidatorFn in Angular. It lets you build custom form validations tailored to your logic. A must-know for complex reactive forms! .#Angular #webdev
Tweet media one
1
0
6
@dhanashri_2610
Dhanashri Lambade
12 days
RT @systemdesignone: If I had to deploy code, here are 5 patterns I'd consider:. 1 Big Bang.↳ Deploy on all servers at once, replacing the….
0
29
0
@dhanashri_2610
Dhanashri Lambade
14 days
What’s one thing you learned from building your first app? 👇Let me know in the comments. I would love to know your insights on this. 😇.
0
0
1
@dhanashri_2610
Dhanashri Lambade
14 days
🚀 From 0 to shipping my first app — what I learned:. 1. Start simple — complexity kills flow. 2. Sketch UI/mind maps early. 3. Build → learn → repeat. 4. Good UI = good experience. 5. Debugging teaches the most. 6. Ship it. Perfect later. #buildinpublic #Angular #Webdev
Tweet media one
4
0
9
@dhanashri_2610
Dhanashri Lambade
16 days
.
@dhanashri_2610
Dhanashri Lambade
17 days
Handling keystrokes, clicks or API data in Angular? 🎯.Think like a chef data's your ingredient. RxJS Operators = your kitchen tools. 🍳.Slice with map(), filter the junk with filter(), cool with debounceTime() & mix combineLatest(). Turn messy streams into tasty results! 👨‍🍳
Tweet media one
0
0
5
@dhanashri_2610
Dhanashri Lambade
17 days
Some real-life examples where we can use RxJS Operator. 1.When we want to transform data(e.g convert a number to a string).2.Filter values(e.g ignore empty inputs).3.Combine streams(e.g merge data from two APIs).4.Control timing(e.g delay or debounce user inputs).5.Error Handling.
0
0
3
@dhanashri_2610
Dhanashri Lambade
17 days
Handling keystrokes, clicks or API data in Angular? 🎯.Think like a chef data's your ingredient. RxJS Operators = your kitchen tools. 🍳.Slice with map(), filter the junk with filter(), cool with debounceTime() & mix combineLatest(). Turn messy streams into tasty results! 👨‍🍳
Tweet media one
2
0
9
@dhanashri_2610
Dhanashri Lambade
19 days
🔴Angular devs & hiring experts. What kind of problems are usually asked in the machine coding round for an Angular Developer role?. Looking for real examples or tips!.Would love to hear your experience. #Angular #FrontendInterview #MachineCodingRound #TechTwitter.
0
1
5
@dhanashri_2610
Dhanashri Lambade
19 days
Calling all Angular developers and interviewers! 👋. What are common tasks/projects given during a machine coding round for Angular positions?. Looking to prepare well — would appreciate any insights or examples!. #AngularDev #InterviewPrep #FrontendInterview #TechCommunity.
0
1
5
@dhanashri_2610
Dhanashri Lambade
19 days
🌍 Real-Life Analogy. 📺Example: Watching a Live News Channel. The News Channel = Observable (broadcasting updates).You (the viewer) = Observer (watching and reacting). You receive:.News updates = next ().If the channel breaks down = error ().If the broadcast ends = complete ().
0
0
2
@dhanashri_2610
Dhanashri Lambade
19 days
When do we use Observer?.👉When we want to respond to emitted data from an observable. 👉Handle errors on completion. 👉React to asynchronous events like API calls, user input, timers, etc. #Angular #WebDevelopment #RxJS #Tech4all #ReactiveProgramming.
1
0
2
@dhanashri_2610
Dhanashri Lambade
19 days
What is Observer?.--> It is the consumer of the data stream produced by an observable. An observer is an object that listens to the observable & defines what to do when:. ✅A new value is emitted. ✅An error occurs. ✅The observable completes. #Angular #Webdev #RxJS #Tech4all.
1
0
2
@dhanashri_2610
Dhanashri Lambade
19 days
When to use Observables?.--> While dealing with asynchronous events like:. 👉API calls (Http requests).👉User input (click action, keyboard events).👉Timers or intervals. 👉Form value changes (In reactive form).👉WebSocket or real-time updates. #Angular #WebDevelopment #Tech4all.
1
0
2
@dhanashri_2610
Dhanashri Lambade
19 days
What is Observable?.👉 It's like a stream of data that you can subscribe to & react to changes. It allows you to subscribe to the stream & react whenever a new value comes in. It can emit:.▶️ One value. ▶️Multiple values. ▶️Or no value. #Angular #WebDevelopment #Tech4all #RxJS.
1
0
2
@dhanashri_2610
Dhanashri Lambade
19 days
Ever wondered how Angular apps react to changes so smoothly? Thanks to Observables & Observers -> the ultimate reactive pair!. Think of it like this:.👀 Observer = the listener.📡 Observable = the broadcaster.Together, they make reactive programming magical. Let's break it down👇.
1
0
5