Skip to main content

About Me

Hello, and welcome! My name is Sevinch, and I’m a third-year Computer Engineering student at INHA University. I have a deep passion for technology, problem-solving, and continuous learning.My educational path has been influenced by a solid grounding in mathematics, algorithms, and database management, which I take pleasure in utilizing for practical problems.

I began my path in backend development, utilizing tools such as RabbitMQ, Kafka, and databases like MySQL and PostgreSQL, employing Python and Golang to create scalable systems. Lately, I have redirected my attention toward data science. As a newcomer in this fascinating area, I’m currently studying via the Udemy "Data Science Bootcamp," where I’m delving into Python, SQL, and important tools. It has been an exhilarating challenge, and I’m looking forward to discovering where this journey leads me.

Alongside academics and technology, I have a deep enthusiasm for self-improvement and psychology, which I explore through reading. A book I just completed is "The Subconscious Mind Can Do Anything" by Jon Kexo, which deeply influenced me. It investigates the power of the subconscious mind and how we can harness its potential to achieve our goals. Another book I'm currently reading is "The Alchemist" by Paulo Coelho,

 
a wonderful tale about following dreams and listening to one's heart. The concepts of personal destiny and pursuing dreams in the book truly connect with me, as they highlight the importance of perseverance and belief in oneself.

When I’m not studying or acquiring new abilities, I enjoy being outdoors. I consider strolling in nature immensely refreshing.
 
It provides me an opportunity to relax, contemplate my life, and engage with my thoughts. These strolls not only aid me in achieving clarity but also motivate me with new thoughts and viewpoints. The tranquility of nature enables me to rejuvenate and tackle my personal and professional life with a fresh sense of intent.

In this blog, I aim to share my journey, experiences, and the insights I gain throughout, while connecting with others who have similar interests.

Comments

Post a Comment

Popular posts from this blog

My Journey in Backend Development

 My path into backend development started with a strong passion for building scalable and effective systems. I began studying programming languages like Python and Golang, which established the groundwork for my abilities in backend development. During this journey, I acquired practical experience with databases such as MySQL and PostgreSQL and investigated essential tools like RabbitMQ and Kafka. These tools assisted me in learning how to create systems capable of handling significant volumes of data and traffic efficiently. A major milestone in my journey occurred when I enrolled in the Uacademy backend development program. During a period of four months, I acquired essential insights and hands-on experience. Upon finishing the program, I received a certificate that enhanced my confidence and created new opportunities. I was subsequently invited to interview at Uacademy, where I was lucky to achieve a high score. Consequently, I received a complimentary, complete course on Udemy....

Understanding Golang Channels and Goroutines

        Golang, also known as Go, is a powerful and efficient programming language created by Google. It was designed with concurrency in mind, allowing developers to easily write programs that can perform multiple tasks simultaneously. Two key concepts that enable concurrency in Go are goroutines and channels. In this blog post, we'll dive into both of these features, explaining what they are, how they work, and how you can use them to build concurrent programs in Go.  What Are Goroutines? A goroutine is a lightweight thread of execution in Go. Goroutines allow you to run functions concurrently, meaning that the program can execute multiple tasks simultaneously without blocking the main program. To create a goroutine, you simply use the go keyword followed by the function you want to execute concurrently. Here's a simple example: package main import "fmt" func sayHello() {     fmt.Println("Hello from the goroutine!") } func main() {  ...