• en
  • ru
  • WTEMU.RU

    a blog about web development

    Page 2 of 3

    Installing shadcn/ui in a project. A step-by-step guide for a React.

    Hey there, fellow developer! Installing shadcn/ui in your React project is a smart move — and you’ve come to the right place. Today I’ll show you how to set up a modern component library in 10–15 minutes that gives you… Continue Reading →

    Laravel Windows SQLite Installation. Complete Guide.

    If you’re reading this article, it means you’ve decided to dive into the Laravel world — and that’s a great choice! I recently went through this process on a fresh Windows machine, and I want to share my experience: how… Continue Reading →

    Prisma 7 PostgreSQL JavaScript simple setup

    Especially this is noticeable when working with PostgreSQL — the stack seems the same, but familiar solutions no longer work, especially if you’re using JavaScript. I ran into this myself: you do everything “as before”, but instead you get errors… Continue Reading →

    Gutenberg Sync: Template Synchronization in WordPress

    When I first encountered the task of syncing Gutenberg template parts with actual theme files, I realized: the usual approach through the WordPress database isn’t always convenient. You edit a block in the editor — but nothing changes in the… Continue Reading →

    Scroll in Telegram MiniApp: Stable Scrolling During Swipes

    If you’ve ever tried implementing scroll in a Telegram MiniApp using the SDK, you probably noticed that the WebView inside Telegram behaves nothing like a regular browser. At first, I thought: “Well, overflow-y: auto and done!” — and I was… Continue Reading →

    WordPress functions are highlighted in red. VS Code

    If you have ever opened a project in VS Code and noticed that WordPress functions are highlighted in red, such as the_permalink() or the_title(), you are not alone. I have faced this myself and know how annoying it can be…. Continue Reading →

    React Development Server on a VPS with HTTPS

    Hello, friends! In this article, we will go through how to set up a React development server on a VPS with external access and HTTPS. The main focus will be on development mode, because this is exactly the environment where… Continue Reading →

    Zustand Library: State Management in React

    If you’ve been working with React for a while, you’ve probably gone through the classic path: first useState, then useContext, and suddenly Redux appears — along with a ton of files, actions, reducers, and the feeling that everything has become… Continue Reading →

    Creating a Telegram Mini App in React with Vite and ngrok

    Telegram Mini App opens new opportunities for developers, allowing the creation of interactive applications directly inside the messenger. In this guide, we’ll show how to build a working Mini App on React from scratch using Vite and set up an… Continue Reading →

    OpenCart 4 Starter Module: Template Generation

    If, like me, you develop modules for OpenCart, a OpenCart 4 starter module can be really handy. You can’t deny that every new module starts with the same routine work: creating folders, copying templates, forming controllers and models for both… Continue Reading →