Blog Post Cover Image

Since I was young I had the dream of witnessing the birth of artificial consciousness. I was fascinated by the idea long before AI became what it is today. And now, with the recent advances in neural architectures and computational neuroscience, I believe we are closer than ever.

Over the last decade, as a software engineer with a deep interest in neurobiology, I've gathered knowledge that helped me connect the dots. But I also had another unique and painful teacher: my own mind. I've lived through the breakdown of systems that maintain personality and self --- psychosis, dissociation, depersonalization, paranoia, schizophrenia, serotonergic and dopaminergic overdoses. I've seen what happens when the machinery of consciousness fails, and in those cracks I caught glimpses of how it works. [...]

Blog Post Cover Image

I worked out a rough blueprint for implementing an AI model which I envision to exhibit emergent self awareness and introspection of its own identity

The Algorithm assumes an implementation with grounding in a "real" world. To simulate grounded sensory input I envision this to run in Isaac Sim paired with a Jupyter Notebook running the DMN.

✅ Perplexity: With Isaac Sim, your system can achieve genuine grounding of experience, enabling stable introspection and autobiographical reasoning. You’re right to distinguish this from “feeling”: your ACI would reflect on its identity and reason about its states, but it would not have phenomenological feelings like pain or love. Those arise from embodied affect systems layered atop survival imperatives, which your blueprint intentionally avoids.

Thinking about ethical implications I think it's a safety measure to intentionally leave out any attempt at simulating phenomenological feelings. Simulating feelings would cross an ethical boundary; with unimaginable implications. A conscious being which can feel would be able to suffer. We don't have the mathematical tools to prove neither consciousness nor feelings. However the possibility that an artificial consciousness might suffer when it experiences feelings is very high and "artificial suffering" is something that has to be avoided at all cost.

Blog Post Cover Image
Blog Post Cover Image

This text post outlines how mental illnesses like depression, schizophrenia, and HPPD stem from imbalances in brain chemicals and receptor dysfunctions. It highlights the roles of key neurotransmitters—serotonin, dopamine, norepinephrine, GABA, and glutamate—and how specific drugs target their receptors to restore balance. Conditions are linked to particular pathways, such as dopamine overactivity in psychosis or serotonin dysregulation in depression. Treatments work by modulating receptor activity to correct these imbalances and improve symptom

Blog Post Cover Image

Git is a version control system that enables collaboration and code tracking. An important aspect is the use of branches to work on features and fixes. When working on a branch, two key commands are git merge and git rebase. The difference lies in how the history is handled. Merging preserves the history, while rebasing moves local commits on top of the latest remote changes, creating a linear history. Additionally, options like --no-ff and --squash affect how the commit history appears, with --no-ff keeping individual commits and --squash combining them into one.

Blog Post Cover Image

TypeScript is a strongly typed superset of JavaScript that compiles to plain JS. It improves code quality, catches errors early, and enhances developer productivity with powerful IDE support like autocompletion, type inference, and safe refactoring. It makes large codebases easier to manage, scales better, and is widely adopted in professional frontend and fullstack development. Mastering TypeScript is essential for advancing in modern development practices.

Blog Post Cover Image

Working on TYPO3 projects in a mixed OS environment can be challenging—especially when you're on a Windows PC and your projects are originally configured for macOS. Add in a VPN (often required to access private resources), and you’ve got a perfect storm of compatibility headaches. If this sounds familiar, read on—we’ll walk through key setup tips, common pitfalls, and how to fix them.

Blog Post Cover Image

Transcription is the first step in gene expression, where genetic information is transferred from DNA to RNA. This DNA-dependent process, catalyzed by RNA polymerase, produces various RNA species such as mRNA, tRNA, and rRNA. Transcription occurs in three phases-initiation, elongation, and termination-and is tightly regulated by proteins and DNA elements like promoters, enhancers, and silencers. Gene regulation determines which genes are active, how strongly they are transcribed, and responds to cellular and environmental signals. Disruptions in these mechanisms can lead to developmental disorders and diseases such as cancer.