lakshya__bansal Profile Banner
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป Profile
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป

@lakshya__bansal

Followers
216
Following
1K
Media
33
Statuses
280

Software Engineer II @Wayfair | Views my own

India
Joined January 2015
Don't wanna be here? Send us removal request.
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
1 year
๐Ÿš€ Had an incredible day at GitHub Constellation 2024 in Bengaluru! ๐ŸŒŸ. Kudos to @Github for organizing such a fantastic event! ๐Ÿ‘. #GitHubConstellation #SoftwareDevelopment #TechCommunity
Tweet media one
Tweet media two
Tweet media three
0
0
12
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
1 year
Investment Architect ๐Ÿซฐ๐Ÿป.Attending @_groww's AIKG Bengaluru edition today and event is loaded with too much learning from industry experts @chandrarsrikant @duavarun @mukeshbansal06 @lkeshre. #celebrating150thEvent #groww
Tweet media one
Tweet media two
Tweet media three
0
1
5
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
1 year
@theniyo @RBI @FinMinIndia The above mentioned issue with Niyo Global has finally been resolved by their team. Big thanks to them for sorting it out.
1
0
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
1 year
No response from @theniyo on my issue! ๐Ÿ˜“ Ticket ID raised, but still no resolution. This is getting worrisome. Can you please prioritize and address this matter urgently? @RBI @FinMinIndia your assistance is crucial here ๐Ÿ™.#SecurityAlert #PANCardConcern.
2
0
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
1 year
Serious concern ๐Ÿšจ.Found out my pan card is linked to someone else's account on @theniyo while doing registration. This is a major security breach @RBI, urgent action needed to address this issue and safeguard our financial data.
3
0
2
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
1 year
Symbolising cultural and religious significance, #RamMandir stands as a testament to faith and a historic milestone in Hindu civilization. เคœเคฏ เคถเฅเคฐเฅ€ เคฐเคพเคฎ ๐Ÿšฉโค๏ธ.#RamMandirPranPrathistha
Tweet media one
Tweet media two
Tweet media three
0
0
3
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
2 years
๐Ÿช”โœจ Witnessing the perfect blend of tradition and innovation this #GaneshChaturthi! ๐Ÿ™๐Ÿš€. As we welcome Lord Ganesh into our hearts, let's also marvel at @isro's incredible journey to the Moon with Chandrayaan. ๐ŸŒ•๐Ÿ’ซ. #GanpatiBappaMorya #Chandrayaan #InnovationAndFaith ๐Ÿช”๐Ÿ˜๐Ÿš€
1
0
3
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
2 years
RT @financewsharan: You delay learning about finance because it's tough๐Ÿ”ป. Here are some basic rules to start with๐Ÿ’ธ. No fancy financial jargโ€ฆ.
0
270
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
2 years
After four years of hard work, I'm thrilled to announce that I've officially graduated from Galgotias University with a Bachelor's degree in Computer Science and Engineering! ๐ŸŽ“๐ŸŽ‰ Here's to the next chapter! #ClassOf2022 #ProudGraduate.
0
0
1
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
7) Rename the branch locally.โžก๏ธ git branch -m <old_name> <new_name>. 8) What changed in a span of time.โžก๏ธ git whatchanged --since="1 week ago".List all the commits that were made including the files that were updated and excluding the merge commits.
0
0
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
6) Compare Changes.โžก๏ธ git diff HEAD.Compares staged and unstaged changes with the latest commit. โžก๏ธ git diff <commit_hash> <commit_hash>.Compares the changes between two commits. โžก๏ธ git diff <branch1_name> <branch2_name>.Compares the changes between two branches.
1
0
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
5) Git Cherrypick.โžก๏ธ git checkout main.โžก๏ธ git cherry-pick <commit_hash>.Picking a commit from the feature branch and applying it to the main branch.
1
0
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
4) Git Reset to Head.โžก๏ธ git reset --soft HEAD~2.Moves HEAD backwards by two commits and save all the changes in the index. โžก๏ธ git reset --hard HEAD~2.Moves HEAD backwards by two commits and delete all the changes.
1
0
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
3) Remove a file from the last commit.โžก๏ธ git rm --cached <file-to-remove>.โžก๏ธ git commit --amend.First, remove the file from the working tree and index using the rm command and then modify the last commit using the commit -amend command.
1
0
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
2) Find a branch by Commit.โžก๏ธ git branch --contains <commit_hash>.Lists branches that contain the passed commit. For tracking the remote branches add -r option. For tracking both the local and remote branches add -a option.
1
0
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
Git Hacks you must know as a developer ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป. 1) Modify the most recent commit.โžก๏ธ git commit --amend.Lets you combine staged changes with the previous commit instead of creating a new commit. #git #github #developer #commands #versioncontrol.
1
0
1
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
RT @0xPolygon: FAST CAN BE FASTER โซ thanks to researchers of the Polygon PoS chain ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป . The parallel EVM engine will INCREASE gas throughโ€ฆ.
0
314
0
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
Mondays don't scare you if you are doing what you loveโœŒ๏ธ.
0
0
2
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
Happy Diwali ๐Ÿช”โœจ.
1
0
1
@lakshya__bansal
Lakshya Bansal ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป
3 years
I would tell you a UDP joke,.But you might not get it. ๐Ÿ˜œ.
0
0
0