Blog
Thoughts, tutorials, and insights
Welcome to my personal website where I share my projects, thoughts, and things that I find interesting.
I'm a Full Stack Developer with a passion for creating elegant, efficient, and user-friendly web applications. I specialize in modern JavaScript frameworks like Vue.js and Node.js, but I'm always exploring new technologies.
import { ref, computed } from 'vue' const useProjects = () => { const projects = ref([]) const loading = ref(true) const fetchProjects = async () => { try { // Get projects data const response = await api.get('/projects') projects.value = response.data } catch (error) { console.error(error) } finally { loading.value = false } } return { projects, loading, fetchProjects } }
A showcase of my recent work and contributions
Interesting resources and articles I've found on the web