• Что бы вступить в ряды "Принятый кодер" Вам нужно:
    Написать 10 полезных сообщений или тем и Получить 10 симпатий.
    Для того кто не хочет терять время,может пожертвовать средства для поддержки сервеса, и вступить в ряды VIP на месяц, дополнительная информация в лс.

  • Пользаватели которые будут спамить, уходят в бан без предупреждения. Спам сообщения определяется администрацией и модератором.

  • Гость, Что бы Вы хотели увидеть на нашем Форуме? Изложить свои идеи и пожелания по улучшению форума Вы можете поделиться с нами здесь. ----> Перейдите сюда
  • Все пользователи не прошедшие проверку электронной почты будут заблокированы. Все вопросы с разблокировкой обращайтесь по адресу электронной почте : info@guardianelinks.com . Не пришло сообщение о проверке или о сбросе также сообщите нам.

Результаты поиска

  1. Lomanu4

    Enhancing the VS Code Agent Mode to integrate with Local tools using Model Context Protocol (MCP)

    Enhancing the VS Code Agent Mode to integrate with Local tools using Model Context Protocol (MCP) Building a Todo List Server with Model Context Protocol (MCP) This blog post walks through creating a Todo List server using the Model Context Protocol (MCP), demonstrating how to build...
  2. Lomanu4

    ? "Believe It!" - Mastering Linux File Permissions with Naruto ?

    In the shinobi world, (I don't know this first-hand, this is only for presentation) not everyone can access the Hokage's scrolls or enter top-secret villages. Similarly, in the Linux world, not all users can read, write, and execute every file. That's where Linux permissions and the legendary...
  3. Lomanu4

    Command line instructions to uncheck “Select the previous input source” on macOS

    Still on the subject of post macOS clean reinstall tips, if control + space stops doing what it is supposed to do — such as autocompletion suggestions on Visual Studio Code —, it is probably caused by macOS global shortcut. Check if Settings > Keyboard > Keyboard Shortcuts… > Input Sources and...
  4. Lomanu4

    Integrating Jupyter Notebooks, PostgreSQL, and Power BI in Modern Data Workflows

    Organizations are currently drowning in a sea of information in this information age. But data itself is not power, what we do with it that makes all the difference. For a lot of contemporary businesses, there is simply more to successful data transformation than easily available tools can...
  5. Lomanu4

    Building OpenNutriTracker: A Privacy-First Nutrition App You Can Hack On ?

    L;DR: OpenNutriTracker is a cross-platform calorie and nutrition tracker written in Flutter, licensed under GPL-3.0, and powered by the Open Food Facts and USDA FoodData Central databases. In this post you’ll learn what problems it solves, how its clean-architecture codebase is laid out, and how...
  6. Lomanu4

    DEV Help! #Speakup!

    Hey Dev Community ?I'm curious to see your tips and recommendations for aspiring programmers, what's something that you wish you knew when you first started? Applications, tools, technical tips, I would love to hear anything no matter your experience and sure others would love to hear as well...
  7. Lomanu4

    Understanding eventually consistency

    This is from my series of System design for Developers and based on the book I am reading "Database Internals". Before we jump into understanding eventually consistency. We need to have a clear understanding of 2 questions: 1 . What is consistency? 2 . Why do we need it? For the above...
  8. Lomanu4

    # Is Node.js Really Single-Threaded? Here’s What Most Developers Get Wrong About Node’s Backend Power

    When I recently hit a production issue where one of our Azure Functions unexpectedly fired hundreds of API calls within seconds, it pushed me down a rabbit hole. ? What caused it? Node.js was the culprit — or rather, my misunderstanding of how Node.js handles caching and concurrency. Due to...
  9. Lomanu4

    LVM Land

    Related Series Links: 1.Partition Party 2.Filesystem & mounting 3.LVM Land (this article) This post will explore the more practical world of the Logical Volume Manager. It provides enhanced storage management by allowing dynamic allocation of storage space. It enables administrators to create...
  10. Lomanu4

    Inside the Jewish Agency’s Global Service Center

    1 · Business Context One hotline, six languages (Hebrew, English, French, Spanish, Portuguese, Russian) and 39 toll-free numbers. The Jewish Agency for Israel - U.S. Voice, email, web-forms and WhatsApp (+972-52-474-0024) flow into one triage queue. The Jewish Agency for Israel - U.S. 100 K+...
  11. Lomanu4

    ? RAID Isn’t Just a Fancy Acronym – Why Storage Isn’t Boring

    So I fell into a storage rabbit hole today — and somehow, it was actually… fun? ? Let me introduce you to RAID — a word that sounds like a boss fight but actually stands for Redundant Array of Independent Disks. Basically, RAID is what you use when: You want your data to survive a hard drive...
  12. Lomanu4

    5 Golang Libraries You’ll Wish You Knew Sooner

    Hi there! I'm Shrijith Venkatrama, founder of Hexmos. Right now, I’m building LiveAPI, a first of its kind tool for helping you automatically index API endpoints across all your repositories. LiveAPI helps you discover, understand and use APIs in large tech infrastructures with ease. Golang’s...
  13. Lomanu4

    Atelier : Créer et configurer un VPC complet sur AWS

    Configuration d'un VPC Présentation de l'atelier Amazon Virtual Private Cloud (Amazon VPC) vous permet de mettre en service une section du cloud Amazon Web Services (AWS) qui a été isolée de manière logique, dans laquelle vous pouvez lancer des ressources AWS dans un réseau virtuel que vous...
  14. Lomanu4

    Défi facultatif : test du sous-réseau privé

    Ce défi est facultatif ; il est fourni au cas où il vous resterait du temps avant la fin de l'atelier. Au cours de ce défi facultatif, vous allez lancer une instance EC2 dans le sous-réseau privé et confirmer qu'elle peut communiquer avec Internet. Lancement d'une instance dans le sous-réseau...
  15. Lomanu4

    INP in 2025: The New Core Web Vital You Must Optimize For

    ![INP Benchmarks 2025 Graph] Google’s Core Web Vitals have shifted — and 2025 marks the full replacement of FID (First Input Delay) with INP (Interaction to Next Paint). This update redefines how developers and SEO professionals should measure responsiveness and user experience. ? What is...
  16. Lomanu4

    ? Building and Interacting with a StarkNet Contract using React and StarkNet.js

    ? Introduction As blockchain scalability becomes increasingly important, Layer 2 solutions are gaining momentum. Among them, StarkNet stands out due to its use of zero-knowledge proofs (ZK-STARKs) to enable scalable and secure computations. However, StarkNet development involves a unique stack...
  17. Lomanu4

    Build a One-File EXE with PyInstaller (Including Binaries & Resources)

    Packaging Python projects into standalone executables can be incredibly useful for sharing your work with non-developers. In this guide, we'll walk through how to convert your Python script — even one that depends on additional binaries like ffmpeg or modules like easygui — into a single .exe...
  18. Lomanu4

    CI/CD for Monorepos: Taming the Beast with Smart Strategies ?

    Hey there, fellow developer! ? Let's talk about something that sounds intimidating but doesn’t have to be: managing CI/CD for monorepos. Imagine your codebase as a bustling city—each project is a neighborhood, and CI/CD is the public transit system keeping everything running smoothly. But when...
  19. Lomanu4

    NEST useful packages

    Native (Installed by Default) @nestjs/core @nestjs/common @nestjs/platform-express (or @nestjs/platform-fastify older versions) rxjs reflect-metadata Core Functionality & Utilities npm install --save @nestjs/config npm install --save @nestjs/mapped-types npm install --save class-validator...
Вверх Снизу