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.

A practical collection of Git commands for real-world use. Covers working with submodules, rewriting commit history to fix authors, enabling symlinks on Windows, cleaning your working directory, searching commit logs, simulating actions with dry runs, and using git bisect to efficiently track down bugs in your commit history.

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.

Strapi and Next.js make a powerful duo for building modern, content-rich websites. With Strapi’s self-hosted headless CMS and Next.js’s flexibility (SSG, SSR, ISR), you get full control, speed, and scalability—ideal for localized apps, SEO-driven sites, or fast MVPs. In this first part of our walkthrough, we’ll show you how to set up your frontend with TypeScript, Tailwind, and i18n routing, laying the groundwork for a seamless integration with a Strapi backend.

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

This article aims to show that ADHD in combination with chronic cannabis abuse does substantially increase the risk of developing schizophrenia and other disorders.

Due to their impulsive behaviour, a lot of people with ADHD tend to misuse substances like cannabis --- Does chronic cannabis consume and ADHD affect the risk of developing psychotic disorders, such as schizophrenia? --- A small meta-analysis.

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.

With over 24 million users, cannabis is the most widely used drug in the USA; a seemingly harmless substance if you smoke a joint in the morning - abuse, however should not be underestimated as it has many long term consequences.

This article contains a collection of basic neurobiological knowledge. If you are interested in this topic, feel free to read the following sections. However, do not expect any conclusions.

In Part III of the Strapi + Next.js series, we roll up our sleeves and dive into building the Strapi backend. You’ll learn how to create a localized "Article" content type, configure permissions, and expose a clean API for your frontend to consume. We also walk through defining custom routers, controllers, and services for full flexibility—plus how to manage environment variables for seamless integration with your Next.js app. By the end, you’ll have a powerful, multilingual CMS running locally and ready to scale.

In Part II of our Strapi + Next.js series, we dive into setting up the Next.js frontend from scratch—complete with TypeScript, Tailwind CSS, and localized routing using next-intl. You’ll learn how to scaffold your project, integrate internationalization, and connect to your Strapi backend using SSG and ISR. Whether you're building a multilingual blog, landing page, or documentation site, this guide sets the stage for a flexible, lightning-fast frontend powered by Strapi APIs.