Explore tweets tagged as #nishantcoder
0
0
1
Learn Bubble Sort from @ThePrimeagen. It accepts an array as a parameter, iterates through the entire array using a loop, and within this loop, it iterates again with a nested loop. If the current value is greater than the next value, it swaps them. #BubbleSort #nishantcoder
0
0
0
Binary Search is a way to find something (like a number) in a sorted list or array. It works by repeatedly dividing the list in half and quickly narrowing it down to the desired item. #BinarySearch #nishantcoder #searching #algorithm #ThePrimeagen #CodingJourney #100DaysOfCode
0
0
0
Queue π First In First Out [FIFO] π Here, a #queue data structure is implemented in #typescript in the form of a linked list. First, we create the structure of a node type. Then, we create a class ... #nishantcoder #LearnInPublic #CodingJourney #dsa 1/5 π§΅
1
0
0
Stack : Last In First Out [LIFO] here, we first create type of node. we create #Stack class in #typescript inside this declare the private and public property name head and length that can store the value of type Node<T> #nishantcoder #LearnInPublic #DSAWithNishant 1/4 π§΅
1
0
1
π Huge shoutout to @FrancescoCiull4 for guiding me through the fascinating world of Docker! π³ Here's a glimpse of what I've learned: β
`docker version` - Checks if Docker's installed and its version 1/6
1
0
0
π Introducing #BrightBridge: A cutting-edge e-learning platform! πBuilt using #TypeScript, #NodeJS, #ExpressJS, #MongoDB, #ReactJS,and #TailwindCSS for an exceptional learning journey. Inspired by @harkirat961πCheck it out and contributeπ https://t.co/LiXNPKDmqC
#nishantcoder
1
0
0
π Iβm excited to announce the completion of my Chainpay project for the @Solana Mini #Hackathon! π Now you can easily send bulk crypto transactions on the Solana #blockchain. Explore it here: https://t.co/4ioyTbSR7K
@kirat_tw @superteamearn @eljloma @100xDevs
3
1
26
Just fixed a bug in the Chainpay billing subscription UI/UX π It's all smooth now after completing the project for the @solana Mini Hackathon . πCheck it out here: https://t.co/EvcruV8rtq and let me know what you think! #Chainpay #Solana #Crypto #web3 #Blockchain
0
0
4
β
`docker exec -it [image_id] bash` - Executes bash inside a container β
`docker tag nodeapp2 NishantCoder/nodeapp2` - Tags for pushing to a repo β
`docker rmi [image_id]` - Deletes an image π¨βπ» I've been documenting my learning on GitHub: https://t.co/ac5B4YpBkp 5/6
1
0
0
@NishantCoder @getnextui Sure, NextUI is production-ready, we use NextUI on NextUI Pro
1
0
1
β
Learned Basic #LinkedList β
Learned Basic #Queue [FIFO] β
Learned Enqueue, Deque, and Peek implementation β
Learned Basic #Stack [LIFO] β
Learned Push, Pop, and Peek implementation method #ThePrimeagen #nishantcoder #dsa #100DaysOfCode #100DayChallenge #CodingJourney
0
0
0
both the head and tail with the created node. If the tail exists, the tail's next node will be the current node, and then the tail will be updated to this new node. In deque: We remove an element from the front. Here, if the head is undefined ... #nishantcoder #dsa 4/5π§΅
1
0
0
Pop Method: Removing from the top. Condition, If the length is equal to 0, we first store the head, and then the head will be set to undefined. If the length is not equal to zero, we update the head with the previous node of the current head. #nishantcoder #LearnInPublic 3/4π§΅
1
0
0
In enqueue: We add an element from the last or the back (tail) node. So, here, we first create a node, and its value is updated by the item coming from the parameter. Now, we check the condition: if the tail is undefined, then we update ... #nishantcoder #LearnInPublic 3/5 π§΅
1
0
0
Peek Method: It allows viewing the top item without removing it. #nishantcoder #LearnInPublic #DSAWithNishant #stack #CodingJourney #100DaysOfCode #ThePrimeagen #frontend #dsa 4/4 π§΅
0
0
1
@NishantCoder Thanks a lot Nishant, ab bas saare Nishant ek dusre se inspire hoke World Leaders bn jaeπ
1
0
1