Sajwan05(Odin-ind)
@Thedev55
Followers
78
Following
2K
Media
67
Statuses
1K
Training to be Software Engineer #100Devs. Learning JS. Into Cricket and polity. Quitting Smoking Journey! Learning Full Time @TheodinProject 6kyu @codewars
Joined November 2023
Today we had our first Tech hangout in Dehradun. We had amazing people like @The_Northman07 @DevMukulSajwan And Shubham. For more updates like when we'll be hanging out next please join here if you're from Dehradun : https://t.co/FyUt4Fu9RE
0
1
6
The disease of fake "independence" and "patriotism" is running deep in our system. It's being misused to siphon funds from genuine work that could actually be done out of here. This is also more insecure than the upstream postgres because it looks like it is still stuck at 17.4
Did IIT Madras just cloned postgres, renamed it to shaktidb, and released it as "indian database to reduce dependence on foreign interests". Closed source btw.
38
94
888
Today we had our 2nd tech hangout/meetup in Dehradun. Today I met Adarsh, Adarsh is very passionate about coding learned a lot from him. It was very productive hanging out with Adarsh today. If you're in Dehradun consider joining https://t.co/WzxfobGwPy to know more details.
Today we had our first Tech hangout in Dehradun. We had amazing people like @The_Northman07 @DevMukulSajwan And Shubham. For more updates like when we'll be hanging out next please join here if you're from Dehradun : https://t.co/FyUt4Fu9RE
0
0
3
I am not a good coder, so I won't code I don't code, so I don't become a good coder The cyclic dependency. The chicken or egg. Break the egg and make an omelette. Roll up your sleeves. Start typing some of the ugly code. Make it work. Then improve and improve with months.
11
28
350
Career Update 🎉 After spending incredible 2 years at @ansible, I am excited to share that i have been promoted to SDE-2 at Red Hat and have transitioned to Data and AI team✨
141
12
1K
So much this! ❤️ A lot of festivals are on imaginary characters anyway.
India taking up Halloween culture is very wholesome cause as a kid all i wanted was the ability to get a superhero costume and run around with my friends Anyone hating on this is just being the grumpy neighbours who stopped us from playing cricket in society parks Let the kids
3
1
24
This was in 1990, my home town Vizag. The first floor balcony of Govt school collapsed when Independence day celebrations were going on. Around 10-12 kids were crushed to death, one boy lost his legs. It was just heart rending. Investigation revealed the shoddy construction
35
187
877
Hello! I have some free time ahead before I start my new gig and I plan on helping folks in tech - with job search, interview prep strategies, roles and various other conundrums (tech related pls). This is something I do free of cost to give back to the community. DMs are open!
17
7
165
Great code comes from experience. Experience comes from not-so-great code.
0
0
1
I am looking for a full-time job. Being independent in open source for 3.5+ years has been wonderful. I've gotten done most of the high-level goals I wanted to, and miss having people & structure around me. If you know of a staff TypeScript+web developer role, let me know! 🙂
33
80
639
let str = "hey"; str.toUpperCase(); // HEY - now you can say that if string is primitive and immutable how we can use methods on it, that's because JS is sneky under the hood it uses the wrapper String object and after using method and retrurning it discard the object.
0
0
2
It's often said that everything in Javascript is object but that is not entirely true. Because all the primitives types are not objects but they have wrapper objects like in java we have wrapper classes for primitives. So in javascript sometimes we can do something like below...
1
0
2
if you’re impacted by layoffs atlassian has been hiring alot for sde 2 and sde 3 these days, please reach out to me for referrals! we’re in this together <33
3
3
28
At 25, I was a nobody. In your favorite terms, I was a nobody from a tier-2 city and a tier-3 college, struggling through a mediocre undergrad program. I even had the audacity to pursue a master's degree, despite my questionable grades. At 25, I was still a student when I
By 25, I had already - studied 2 engineering streams (civil and cs, and cleared GATE with good ranks in both of them). Studied mech partially. - built a crypto exchange! - okayish rank in CAT to get call from some IIMs - had made money in diff businesses along with gambling,
39
82
1K
Also it have temporal dead zone (TDZ) which basically means the amount of time it takes execution to reach the statment where it is initialized. So basically TDZ commence when block start and it exit when it reaches the evaluation part for particular variable(initialization).
0
0
1
It will give you undefined. But in case of let and const it is hoisted too but only declaration is hoisted not initialization until it is evaluated or until execution reached the declaration and initialized statements. So until let is evaluated it will give you Reference error
1
0
1
In JavaScript let,var,const,function, class all are hoisted. But let and var are hoisted differently then the var. Because in case of var both declaration and initialization are hoisted that means if you access value of variable initialised with var before imitializing it ....
1
0
2