That's life.Strumble,get up and Try again...

Joined December 2020
5,470 Photos and videos
Pinned Tweet
Starting #100DaysOfCode challenge to commit myself for learning. Hope i can complete it๐ŸŽฏ๐Ÿคž Day1: 1.Bipartite graph using bfs 2.Bipartite graph using dfs 3.Detect cycle in directed graph #DSA #coding
4
3
30
8,675
Just got a call from naukri for frontend developer role... It was a very good opportunity man - good pay and my fav Hyd location... they told me that they will proceed with my profile ... Need to start preapring now - concepts and machine coding q... Much needed now for me
8
5
177
11,386
Gave an exam today where i need to join meet and give the exam. It consists of 2 DSA q and 5 react and node dependent q. DSA q were too hard man. I mean people who solve CP may solve it but for ocassional interview preparing people i dont think it is easy.
2
9
1,197
1 q is Suppose there are n friends they also give a relationship 2d array r=[[1,2]] which means 1 has phone number of 2. Now suppose a person k got sick, how many minimum extra relations are needed to make all others call this k person. if [1,2] that mean only 1 has number of 2.
1
1
231
2 doesnt have 1's number. It is Graphs based q. But issue is when i solved it in multiple ways - recursion, DFS, greedy all visible test cases were passing and all locked test cases were failing and we cant even see input. So I was stuck there.
186
Are enhance CV, resume worded etc even a proper ats scanners? Whatever i try it wont cross 80 and the issue is it expects quantifyable impacts in each and every points... How could you add numbers for each point when it wont justify...
2
2
192
Kerala Udaipur are currently in my whishlist to travel in india for a vacation.... First need to cover indian destinations... Have been working in IT from 4-2 sem so this almost 6 months gap without a job ... Getting too bored without a job and self earned money...
1
2
25
1,657
Finally got the understanding of claude project structure. Orchestrated a multi agent job search project from scratch with sub agents using sonet, specific for each case like salary,job hunt, joblink verification etc and orchestrator uses Opus. Used skills, agents, rules,MCPs
2
2
273
Gave good results... Still needs a lot of improvement and tuning but finally got a good understanding of claude (... yet a long way to learn... Chrome Dev Tools MCP is one of the best... MCPs are way more useful and makes your task easy...
2
145
What do you do in a Forward Deployed Engineer role? Seeing so many openings and tweets on it in recent times...
1
2
383
Worst thing is checking for jobs, cold dm's reaching out to people, have to spend a lot of time on just job search which is a lot of headache and most disliked thing... Not even motivated now.... You will only be motivated when u get interviews scheduled atleast
By the end of this may... It will be 6 months without any job... Job Market is brutal right now... Just lost the motivation to apply for jobs... If i am seeing any opening that is going to workday portal ... it is testing my patience... Even referals are not working..
1
8
339
By the end of this may... It will be 6 months without any job... Job Market is brutal right now... Just lost the motivation to apply for jobs... If i am seeing any opening that is going to workday portal ... it is testing my patience... Even referals are not working..
2
2
14
883
Same situation... Em chestam time bad anthe...
Referrals ivvaru gani guidance Matram 1st vuntaru relatives IT kodukulu... Maa ayya emo vallatho maatladu maatladu ani oo dhobbuthadu
1
1
704
Hi guys , any people from US working in IT industry in my TL? Please dm me once.
2
1
2
307
True
Very humiliating Ritual. Especially without Connections
236
I think interview went average... DSA q asked were : 1. .find the longest non-empty prefix which is also a suffix. Example: s = "level" Output: "l" Example: s = โ€œaabcdaabcโ€ Output: โ€œaabcโ€ 2. 2. Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string. Note: You must not use any built-in BigInteger library or convert the inputs to integer directly. Example 1: Input: num1 = "2", num2 = "3" Output: "6" Example 2: Input: num1 = "123", num2 = "456" Output: "56088" I fumbled with second question... I was not allowed to use methods or convert string to int directly... FInding individual multiplication for each digit of second number with 1st number - manual multiplication is way. But How would you preserve a white space as done manually... Idk
Passed 1st round... Next round is Coding round. face to face interview at Hyderabad... But I already know i won't get selected... as even if i pass 2nd round last round is design round... and i don't have much knowledge on system design... but for experience it's ok ... will give it a try
1
3
396
Passed 1st round... Next round is Coding round. face to face interview at Hyderabad... But I already know i won't get selected... as even if i pass 2nd round last round is design round... and i don't have much knowledge on system design... but for experience it's ok ... will give it a try
Gave Frontend Interviews today and yesterday for 2 companies... Got to know where i am lagging and now i can focus on those concepts... 1 machine coding question which was asked to me in a round - little more interesting : Build a dynamic tab system in React: Requirements: Display multiple tabs Clicking a tab should show its content. Add a button:On click โ†’ ask user for tab name. Create a new tab dynamically. Show its content when clicked. All content should render on the same page (no separate components required). Here in last point I fumbled initially as i created multiple components and in data.js file I created a array data=[{title: "Test", Component : Test}] in. structure to directly call and use in App.js But at later point when they mentioned about adding a new tab component then creating a new component just by entering component name - my architecture doesn't adops to that code. So I changed my approach to data=[{id: X, content :''}] so if i create new component i add just id and content as null. Just a little bit satisfied as i was able to do it (80%) even though i saw it for the first time... I don't think they will select me for next round... but its ok... Keep moving forward..
3
1
42
5,597
Naku okati ardam kavatledu... Na resume and skills baleda or apply chese process lo emaina tricky ga undatleda... Calls aithe chala takkuva vastunnay naaku
Are we back to the 2021 hiring peak? Colleagues chaala mandhi switch kodutunnaru and ninna oka ammayi call chesi 6 offers in hand unable to choose ani flex chestundhi
4
591
Gave Frontend Interviews today and yesterday for 2 companies... Got to know where i am lagging and now i can focus on those concepts... 1 machine coding question which was asked to me in a round - little more interesting : Build a dynamic tab system in React: Requirements: Display multiple tabs Clicking a tab should show its content. Add a button:On click โ†’ ask user for tab name. Create a new tab dynamically. Show its content when clicked. All content should render on the same page (no separate components required). Here in last point I fumbled initially as i created multiple components and in data.js file I created a array data=[{title: "Test", Component : Test}] in. structure to directly call and use in App.js But at later point when they mentioned about adding a new tab component then creating a new component just by entering component name - my architecture doesn't adops to that code. So I changed my approach to data=[{id: X, content :''}] so if i create new component i add just id and content as null. Just a little bit satisfied as i was able to do it (80%) even though i saw it for the first time... I don't think they will select me for next round... but its ok... Keep moving forward..
10
5,658