Movatterモバイル変換


[0]ホーム

URL:


Pull to refresh

Development

Show first
Rating limit
Level of difficulty

How to create UI/UX design for AI chatbots: a few simple tips

Level of difficultyEasy
Reading time4 min
Views545
Tutorial

With the rising popularity of AI, chatbots are rapidly becoming an essential part of any customer-oriented platform. More and more companies now integrate them into apps and websites, providing a space for their clients to interact with the business itself while taking load off human employees and reducing expenses on the customer support team. At first glance, chatbots might seem pretty uncomplicated in their design and functionality, but creating UI/UX design for chatbots requires a deep understanding of this technology and the way they can serve both business and its users. Here are some useful tips for creating a successful user experience in AI chatbot:

Read more
Rating0

What Exactly is n8n? Build Powerful Workflows Without Coding

Level of difficultyEasy
Reading time5 min
Views695
Tutorial

Do you want to automate tasks without writing a single line of code? If the answer is yes, then you’ve come to the right place. In this simple tutorial, I’m going to show you how you can create your first automated workflow using a tool called n8n.

Read more
Rating0

How we implemented vector search in Postgres Pro

Level of difficultyEasy
Reading time7 min
Views296
Review
Translation

In this article, we’ll explore what vector search is, what problems it solves, and how the pgpro_vector extension for Postgres Pro brings powerful vector capabilities directly into a relational database — no need for separate specialized systems.

Read more
Rating0

On reordering expressions in Postgres

Level of difficultyEasy
Reading time4 min
Views371
Case
Translation

Today, I want to talk about one of those sneaky tricks that can help speed up query execution. Specifically, this is about reordering conditions in WHERE clauses, JOINs, HAVING clauses, and so on.

The idea is simple: if a condition in an AND chain turns out to be false, or if one in an OR chain turns out to be true, there's no need to evaluate the rest. That means saved CPU cycles — and sometimes, a lot of them. Let’s break this down.

Read more
Total votes 1: ↑1 and ↓0+2

Gemini CLI: Open-Source AI Agent in Terminal

Level of difficultyEasy
Reading time4 min
Views2.5K
Tutorial

Have you ever wished for an AI assistant right inside your terminal window? Well, your dream has come true because Google just released Gemini CLI. In this tutorial, I'm going to show you everything you need to know about this new open-source AI agent. We'll cover how to use it, the pricing, and some useful tips and tricks. So, if you're ready, let's get started! ;)

Read more
Rating0

Automated management of extended statistics in PostgreSQL

Level of difficultyMedium
Reading time6 min
Views498
Case
Translation

Here I describe the results of developing a PostgreSQL extension I built just out of curiosity. Its purpose is to automatically manage extended column statistics. The idea came to me while finishing work on another "smart" query-driven product for improving PostgreSQL planning quality. I realized that the current architecture of PostgreSQL isn’t quite ready for fully autonomous operation — automatic detection of bad plans and adaptive optimizer tuning. So why not try the other way around and build an autonomous data-driven assistant?

Read more
Total votes 2: ↑2 and ↓0+3

What May Surprise You About UUIDv7

Level of difficultyMedium
Reading time3 min
Views1.9K
Analytics

UUIDv7 was inspired by ULID. Like ULID, it is a 128-bit identifier, containing a timestamp on the left side and random data on the right side. But RFC 9562 establishes many requirements for UUIDv7.

In databases and distributed systems, a properly implemented UUIDv7 is always preferred over any other identifier type, including natural keys, autoincrement, UUIDv4, TypeID, ULID, KSUID, CUID, NanoID, and Snowflake ID.

Surprising distinctions of UUIDv7
Total votes 1: ↑1 and ↓0+1

Get Free Backlinks from These 35+ Authority Websites

Level of difficultyEasy
Reading time6 min
Views1.4K
Review
Translation

Getting backlinks is hard. And getting traffic? Even harder.

But some websites still give you both for free.

I made a list of 35+ free sites and directories where you can add your product. You’ll get a real link to your site (a site backlink) and start getting clicks.

Get Free Backlinks
Rating0

How to provide effective training for a UX design team

Level of difficultyEasy
Reading time4 min
Views546
Retrospective

Training is one of the most essential factors for growth, evolution and effective collaboration for any UX design team. Design is an ever-changing industry, and there is always something new to learn even for the most experienced professionals. The reality is, not all companies take training seriously, whether the reason is a low budget, lack of time or just not realising its necessity. Meanwhile, investing in training not only boosts the quality of work, but also helps find ways to find easier solutions, work faster and optimize the whole process. Let’s discuss some tips that might help you provide effective and fruitful training for your design team without spending extra budget or wasting time on some questionable training methods. 

Read more
Rating0

AI Agents in Modern IT Solutions

Level of difficultyEasy
Reading time13 min
Views856
Review
Translation

These days, it seems like everyone is talking about AI. AI here, AI there—AI will replace us all, and so on. I started to wonder: how exactly is AI going to replace us? I decided to dig into this question and examine the technical foundations, mainly to understand it for myself—how exactly is AI supposed to replace us all? Spoiler: it isn’t planning to just yet, but what’s already available today is impressive.

Read more
Rating0

Whose feature is better, or how to compare the efficiency of SQL query plans

Level of difficultyMedium
Reading time5 min
Views358
Opinion
Translation

How to compare the efficiency of SQL query plans? “Measure the execution time, of course!” — an experienced reader would say. And they would be absolutely right: from a practical perspective, the more efficient DBMS is the one that delivers higher TPS. However, sometimes we need to design a system that doesn't exist yet or predict behavior under loads that haven't occurred yet. In such cases, we need a characteristic that allows us to perform a qualitative analysis of a plan or compare two plans. This post is dedicated to one such characteristic — the number of data pages read.

Read more
Total votes 5: ↑5 and ↓0+6

The Billiard Fractals

Level of difficultyHard
Reading time25 min
Views822
FAQ
Translation


Complex systems often appear chaotic or incomprehensible, yet closer examination reveals that such complexity can frequently be reduced to a simple underlying mechanism. By systematically removing layers of emergent behavior, one can uncover a fundamental rule or equation from which the entire system originates.

Read more →
Total votes 4: ↑4 and ↓0+4

OpenAI Codex: A Software Engineering Agent

Level of difficultyEasy
Reading time4 min
Views1.2K
Tutorial

A few weeks ago, OpenAI announced that Codex is available for Plus users, and I didn’t miss a chance to try it. And today, I’m excited to share a guide to OpenAI’s Codex. As a developer, I’ve found it to be a powerful and practical tool.

Read more
Total votes 2: ↑1 and ↓1+2

Coloring a T-SQL Procedure Listing with Metric Values

Level of difficultyMedium
Reading time3 min
Views531
Tutorial

We append the following metrics to the T-SQL procedure statements: execution count (x), CPU time in milliseconds (c), duration in microseconds (d), number of reads (r), number of writes (w), and @@rowcount value (n). You can display these as absolute values or percentages.

Read more
Total votes 2: ↑2 and ↓0+5

SQL Server vs. PostgreSQL query optimization: room for improvement?

Level of difficultyMedium
Reading time15 min
Views670
Case

For years, we’ve studied Oracle to make PostgreSQL a more migration-friendly option. We introduced tools similar toSQL profile andSQL plan baseline asAQO andsr_plan extensions. In some cases, PostgreSQL even outperforms Oracle, especially inautomatic re-optimization.

Migrations from Oracle to PostgreSQL are usually smooth performance-wise, and we’ve even developedsession variable extensions to make the transition easier. While many enterprise-only features exist, PostgreSQL often integrates popular solutions directly into the core.

Read more
Total votes 2: ↑2 and ↓0+4

Neat defer macro for C++17

Level of difficultyMedium
Reading time5 min
Views672
Tutorial

Manual resource management in low level C-style C++ code might be annoying. It's not practical to create good enough RAII wrappers for every single C API you use, but approaches withgoto cleanup or loads of nestedif (success) hurt readability.

Adefer macro to the rescue! The deferred lambda will be executed on scope exit, no matter how it happens: you canreturn from any point,throw an exception (if allowed), or even use agoto to an outer scope. It is truly zero-cost and doesn't rely on C runtime or standard library, so it can be used even in kernel development.

Read more
Rating0

Google Jules: An Asynchronous Coding Agent Explained

Level of difficultyEasy
Reading time3 min
Views1.3K
Tutorial

In this tutorial, I’ll walk you through everything I’ve learned about using Google Jules — an asynchronous coding agent. I’ve kept the explanations clear and simple, so whether you're an experienced developer or a beginner, you’ll be able to follow along. By the end, you should feel confident working with Jules: assigning tasks, reviewing its output, and making the most of its capabilities. Ready? Let’s dive in. ;)

Read more
Rating0

How an AI CAPTCHA Solver Works: From OCR to Deep Learning

Level of difficultyEasy
Reading time13 min
Views1K
Review
Translation

CAPTCHA has become a familiar part of the internet: distorted texts, “find all the traffic lights” images, audio riddles, and other challenges that distinguish humans from machines. Every bot-system developer or QA engineer automating web scenarios has at least once run into a script suddenly stumbling over a CAPTCHA. A natural question arises: can a program be taught to solve CAPTCHAs the way a human does—quickly and reliably? In this article I will try to figure out how AI CAPTCHA solvers are built, from classical OCR methods to modern neural networks.

Read more
Rating0

Postgres Pro OpenTelemetry сollector

Level of difficultyMedium
Reading time4 min
Views541
Review
Translation

Hi everyone, I’m Alexey. I’m a big fan of observability, and in this post, I want to share something I’ve been working on — the pgpro-otel-collector.

TL;DRpgpro-otel-collector is an OpenTelemetry collector (aka monitoring agent) tailored for gathering Postgres metrics and logs — brought to you by PostgresPro.

Read more
Total votes 1: ↑1 and ↓0+3

Want to rank higher on Google? Use these 6 backlink techniques

Level of difficultyEasy
Reading time7 min
Views1.1K
Tutorial
Translation

Want Higher Google Rankings?

Try These 6 Backlink Strategies That Actually Work.

In the end, you’ll get tips to help you build a strong backlink strategy.

Get Backlink Strategies
Total votes 1: ↑1 and ↓0+3
BackHere
1
23 ...
Support
© 2006–2025,Habr

[8]ページ先頭

©2009-2025 Movatter.jp