Note-Code
Welcome to this space, a place where I share one of my greatest passions: technology, software development, and the creation of projects driven by curiosity and the desire to learn.
def is_prime(n: int) -> bool:
if n < 2: return False
for i in range(2, int(n**0.5)+1):
if n % i == 0: return False
return True
Here you’ll find projects I’m currently working on, ideas I’m exploring, and solutions I’m building step by step. My goal is not only to showcase final results, but also to share the process: the challenges, the experiments, and the lessons learned along the way. I believe the best way to grow in the tech world is through sharing, discussion, and building together as a community.
In addition to projects and articles, I’ve created a dedicated section for Python courses and tutorials. Python is one of the most versatile and accessible programming languages, and in this section you’ll find everything from the basics to practical examples and more advanced applications. Whether you’re just getting started or looking to deepen your knowledge in certain areas, the idea is to provide clear, useful, and applicable resources.
This site is not static: it evolves with every new experiment, with every line of code, and with every idea that comes to life. My intention is for this space to be more than just a personal portfolio — I want it to be a place where anyone interested in learning and exploring can find inspiration and valuable resources.
If anything I share here helps you, motivates you to create, or simply sparks your curiosity, then this project has achieved its purpose. I invite you to browse, explore, and if you wish, join this ever-growing conversation.