<aside> <img src="/icons/alien-pixel_blue.svg" alt="/icons/alien-pixel_blue.svg" width="40px" />
Inventory
</aside>
<aside> <img src="/icons/libra_purple.svg" alt="/icons/libra_purple.svg" width="40px" />
Library
</aside>
<aside> <img src="/icons/graduate_green.svg" alt="/icons/graduate_green.svg" width="40px" />
Learning
</aside>
<aside> <img src="/icons/chess-rook_gray.svg" alt="/icons/chess-rook_gray.svg" width="40px" />
🏛️ My Practice Template, you can also learn from the link provide in this page.
Explore my personal practice template—a space where I refine my skills and share valuable learning resources. You can also enhance your knowledge by visiting the link provided on this page. Dive in and start learning today!
</aside>
[ ] Task is to complete the Notion Setup.
impossible is nothing -Lionel Messi
🎴 Images and Videos
Best Place to Learn Python: Recommended Websites to learn Programming
Python Courses & Tutorials | Codecademy
MongoDB: The Developer Data Platform
class Sorter:
def __init__(self, arr):
self.arr = arr
def quick_sort(self, low, high):
if low < high:
pi = self.partition(low, high)
self.quick_sort(low, pi - 1)
self.quick_sort(pi + 1, high)
def partition(self, low, high):
pivot = self.arr[high]
i = low - 1
for j in range(low, high):
if self.arr[j] <= pivot:
i += 1
self.arr[i], self.arr[j] = self.arr[j], self.arr[i]
self.arr
<aside> <img src="/icons/bug_red.svg" alt="/icons/bug_red.svg" width="40px" />
A developer is a professional skilled in designing, building, and maintaining software applications, systems, or websites. They play a critical role in the tech-driven world by transforming ideas into functional digital products. Developers use programming languages, frameworks, and tools to write clean, efficient code and ensure that software meets user needs and business goals.
</aside>
https://open.spotify.com/playlist/3WLDIcG4Cx2UOPy0rbFhQn?si=93636360ce5f44ff
<aside> <img src="/icons/browser-stop_red.svg" alt="/icons/browser-stop_red.svg" width="40px" />
The End.
</aside>