<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Aleksey Baturin</title>
    <description>The latest articles on DEV Community by Aleksey Baturin (@bau_59).</description>
    <link>https://dev.to/bau_59</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3378318%2Fdc8ea57b-cdad-4d11-bb65-d8e62cdaf733.jpg</url>
      <title>DEV Community: Aleksey Baturin</title>
      <link>https://dev.to/bau_59</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bau_59"/>
    <language>en</language>
    <item>
      <title>I built hq4.ru: An alternative job aggregator that only indexes official company career pages (no spam, no registration)</title>
      <dc:creator>Aleksey Baturin</dc:creator>
      <pubDate>Sat, 16 May 2026 09:59:41 +0000</pubDate>
      <link>https://dev.to/bau_59/i-built-hq4ru-an-alternative-job-aggregator-that-only-indexes-official-company-career-pages-no-207d</link>
      <guid>https://dev.to/bau_59/i-built-hq4ru-an-alternative-job-aggregator-that-only-indexes-official-company-career-pages-no-207d</guid>
      <description>&lt;p&gt;The Problem: Job boards are broken&lt;br&gt;
If you've been job hunting in 2025-2026, you know the pain.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5ykh1f324fjbmd8p26v4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5ykh1f324fjbmd8p26v4.png" alt=" " width="800" height="379"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You spend hours scrolling through hundreds of duplicates, fake posts, and "zombie" vacancies that were closed six months ago. You send your resume into a black hole. Most of the time, you're not even applying to the company — you're applying to a recruiting agency that just collects CVs "just in case."&lt;/p&gt;

&lt;p&gt;The signal-to-noise ratio is terrible.&lt;/p&gt;

&lt;p&gt;I'm a developer. I don't like wasting time. So I built a tool for myself that eventually grew into something bigger.&lt;/p&gt;

&lt;p&gt;The Idea: Only official sources&lt;br&gt;
hq4.ru works on a simple principle:&lt;/p&gt;

&lt;p&gt;If a job isn't on the company's official website — it doesn't exist in hq4.ru.&lt;/p&gt;

&lt;p&gt;No scraping from random job boards. No duplicate hell. No "recruiting agencies" posting the same position 50 times.&lt;/p&gt;

&lt;p&gt;We collect vacancies directly from company career pages. That's it.&lt;/p&gt;

&lt;p&gt;Why this matters (technically and ethically)&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Responsibility&lt;br&gt;
A company is legally and reputationally responsible for what it posts on its own website. Nobody posts fake salaries or outdated conditions on their official career page — it's too costly.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Freshness&lt;br&gt;
We update daily. If a company removes a vacancy from its site, it disappears from hq4.ru within 24 hours. No more applying to jobs that don't exist.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;No middlemen&lt;br&gt;
When you click a vacancy, you go straight to the company's website. You apply there — via their form, their email, their phone number. No intermediaries. No data collected by the aggregator.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Tech stack (because this is dev.to)&lt;br&gt;
The project started as a simple script, but grew into something more robust:&lt;/p&gt;

&lt;p&gt;Backend: Go (self-written framework — full control over performance and architecture)&lt;/p&gt;

&lt;p&gt;Database: Optimized for fast full-text search across 5000+ active vacancies&lt;/p&gt;

&lt;p&gt;Parsing engine: Respects robots.txt, uses polite crawling with exponential backoff&lt;/p&gt;

&lt;p&gt;Frontend: Minimal, no JS bloat, works without cookies&lt;/p&gt;

&lt;p&gt;Why Go? Because the previous prototype on Laravel started choking at 5k+ daily users. Go gave me:&lt;/p&gt;

&lt;p&gt;~10x better performance on the same hardware&lt;/p&gt;

&lt;p&gt;Lower memory footprint&lt;/p&gt;

&lt;p&gt;Simpler concurrency for parallel scraping&lt;/p&gt;

&lt;p&gt;Filters that actually work&lt;br&gt;
Users can filter by:&lt;/p&gt;

&lt;p&gt;City (from Moscow to small towns)&lt;/p&gt;

&lt;p&gt;Category (engineering, IT, production, healthcare, construction, security, etc.)&lt;/p&gt;

&lt;p&gt;Work schedule (full-time, shift, rotation)&lt;/p&gt;

&lt;p&gt;Experience level (no experience / 1+ years / 3+ years)&lt;/p&gt;

&lt;p&gt;Education (high school, vocational, higher)&lt;/p&gt;

&lt;p&gt;All without registration. No "sign up to see the salary". No "verify your email to apply".&lt;/p&gt;

&lt;p&gt;For employers (if you're reading this)&lt;br&gt;
If you have a career page or a job section on your website — you can connect it to hq4.ru for free. No API required. We'll find your vacancies and keep them fresh automatically.&lt;/p&gt;

&lt;p&gt;The philosophy&lt;br&gt;
I also run svg4.ru (500k+ free SVG icons, no registration). The same philosophy applies here:&lt;/p&gt;

&lt;p&gt;Remove everything unnecessary. Registration. Middlemen. Shady databases. You come to get things done — find a job, download an icon. Nothing should distract or raise doubts.&lt;/p&gt;

&lt;p&gt;Current state&lt;br&gt;
The project just launched. Growing daily. Not a unicorn startup. Just a useful tool that solves a real problem.&lt;/p&gt;

&lt;p&gt;What's next:&lt;/p&gt;

&lt;p&gt;Telegram subscription for new jobs by city + category&lt;/p&gt;

&lt;p&gt;Better search relevance (using vector search maybe?)&lt;/p&gt;

&lt;p&gt;Manual verification badges for companies&lt;/p&gt;

&lt;p&gt;Try it&lt;br&gt;
👉 hq4.ru&lt;/p&gt;

&lt;p&gt;It's free. No account needed. Just search, click, apply on the company's website.&lt;/p&gt;

</description>
      <category>career</category>
      <category>webdev</category>
      <category>go</category>
    </item>
    <item>
      <title>I built svg4.ru — a high-performance SVG icons platform on Laravel 12</title>
      <dc:creator>Aleksey Baturin</dc:creator>
      <pubDate>Sat, 20 Dec 2025 08:21:20 +0000</pubDate>
      <link>https://dev.to/bau_59/i-built-svg4ru-a-high-performance-svg-icons-platform-on-laravel-12-1h32</link>
      <guid>https://dev.to/bau_59/i-built-svg4ru-a-high-performance-svg-icons-platform-on-laravel-12-1h32</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foia5g6q5v4b8dxt67k9k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foia5g6q5v4b8dxt67k9k.png" alt=" " width="800" height="598"&gt;&lt;/a&gt;&lt;br&gt;
Hi dev.to 👋&lt;br&gt;
I want to share a project I’ve been building and running in production.&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://svg4.ru" rel="noopener noreferrer"&gt;https://svg4.ru&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;svg4.ru is a large SVG icons and vector graphics platform focused on speed, simplicity, and scale.&lt;/p&gt;

&lt;p&gt;🚀 Tech stack&lt;/p&gt;

&lt;p&gt;Laravel 12&lt;/p&gt;

&lt;p&gt;Meilisearch for instant full-text search&lt;/p&gt;

&lt;p&gt;MySQL — over 1,000,000+ records&lt;/p&gt;

&lt;p&gt;Tailwind CSS 4&lt;/p&gt;

&lt;p&gt;Alpine.js&lt;/p&gt;

&lt;p&gt;Clean, minimal JavaScript (no heavy frontend frameworks)&lt;/p&gt;

&lt;p&gt;Despite the data size, the site works blazingly fast:&lt;/p&gt;

&lt;p&gt;instant search&lt;/p&gt;

&lt;p&gt;fast filtering&lt;/p&gt;

&lt;p&gt;low response times even under load&lt;/p&gt;

&lt;p&gt;This project is very engineering-focused: performance, indexing strategy, caching, clean architecture, and predictable behavior at scale.&lt;/p&gt;

&lt;p&gt;🧠 What this project demonstrates&lt;/p&gt;

&lt;p&gt;Laravel can handle million-scale datasets without pain&lt;/p&gt;

&lt;p&gt;Meilisearch is a great alternative to Elasticsearch for real-world apps&lt;/p&gt;

&lt;p&gt;You don’t need React/Vue for fast, interactive UIs&lt;/p&gt;

&lt;p&gt;Tailwind 4 + Alpine.js is a powerful and pragmatic combo&lt;/p&gt;

&lt;p&gt;👀 I’d love your feedback&lt;/p&gt;

&lt;p&gt;If you’re interested, please:&lt;/p&gt;

&lt;p&gt;check out the site&lt;/p&gt;

&lt;p&gt;try the search&lt;/p&gt;

&lt;p&gt;explore the UI&lt;/p&gt;

&lt;p&gt;share feedback or suggestions&lt;/p&gt;

&lt;p&gt;🤝 Open to collaboration&lt;/p&gt;

&lt;p&gt;If you:&lt;/p&gt;

&lt;p&gt;want to build a similar platform&lt;/p&gt;

&lt;p&gt;need help with PHP / Laravel / Node.js&lt;/p&gt;

&lt;p&gt;work with Tailwind 4, Alpine.js&lt;/p&gt;

&lt;p&gt;care about performance, architecture, and scalability&lt;/p&gt;

&lt;p&gt;I’ll be happy to collaborate or help.&lt;/p&gt;

&lt;p&gt;📬 Telegram: &lt;a class="mentioned-user" href="https://dev.to/bau_59"&gt;@bau_59&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading — feedback is very welcome 🙌&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>laravel</category>
      <category>php</category>
      <category>performance</category>
    </item>
    <item>
      <title>Why Forums Still Matter in 2025</title>
      <dc:creator>Aleksey Baturin</dc:creator>
      <pubDate>Thu, 04 Dec 2025 06:00:41 +0000</pubDate>
      <link>https://dev.to/bau_59/why-forums-still-matter-in-2025-d4g</link>
      <guid>https://dev.to/bau_59/why-forums-still-matter-in-2025-d4g</guid>
      <description>&lt;p&gt;These days it feels like everyone has moved to Telegram. Chats are buzzing, questions are solved in minutes, and long discussions seem almost old-fashioned. So you might wonder: why do we even need forums anymore? Aren’t they outdated?&lt;/p&gt;

&lt;p&gt;As someone who recently worked on updating a large professional forum for industrial climbers, I can say with confidence: forums are still very much needed.&lt;/p&gt;

&lt;p&gt;Think of it this way. A chat is like a lively kitchen conversation — fast, noisy, fun, but anything useful gets buried within hours. Try finding something discussed a month ago in a chat… good luck scrolling.&lt;/p&gt;

&lt;p&gt;A forum works differently. It’s more like a library and a community club combined.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Information doesn’t disappear.&lt;br&gt;
A detailed repair guide, a review of a new rope, a breakdown of common mistakes — all of it stays neatly organized. You search → you find → you get a real answer, not fragments of old messages.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A real community forms.&lt;br&gt;
People write thoughtfully, discussions grow naturally, and over time strong experts become recognizable. You can see a user’s history, style, experience — something chats simply don’t preserve.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Work and hiring become easier.&lt;br&gt;
On &lt;a href="https://alp4.ru/" rel="noopener noreferrer"&gt;Alp4.ru&lt;/a&gt;, for example, the job section is incredibly active. Employers aren’t just picking a random “username” — they see someone with a reputation and actual contributions. That kind of trust doesn’t exist in chat streams.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So yes — forums are alive. They’ve just taken their rightful niche: a place where knowledge accumulates instead of evaporating.&lt;/p&gt;

&lt;p&gt;And if your professional community doesn’t have such a “knowledge hub” yet — or you have an old, buggy forum that desperately needs attention — that can be fixed. I help choose, install, configure, and fine-tune modern forum platforms like Discourse &lt;a href="https://t.me/bau_59" rel="noopener noreferrer"&gt;Telegram bau_59&lt;/a&gt;. From structure and design to moderation rules and migration of old data — everything can be done properly so the forum becomes a real home for your community.&lt;/p&gt;

&lt;p&gt;A forum in 2025 isn’t outdated. It’s order, depth, and a working environment without chaos.&lt;/p&gt;

</description>
      <category>discourse</category>
    </item>
    <item>
      <title>🚀 100 out of 100 on Google PageSpeed — in production!</title>
      <dc:creator>Aleksey Baturin</dc:creator>
      <pubDate>Tue, 22 Jul 2025 10:29:20 +0000</pubDate>
      <link>https://dev.to/bau_59/100-out-of-100-on-google-pagespeed-in-production-55f7</link>
      <guid>https://dev.to/bau_59/100-out-of-100-on-google-pagespeed-in-production-55f7</guid>
      <description>&lt;p&gt;Yes, it's real.&lt;br&gt;
Yes, on a live site.&lt;br&gt;
No paid CDN, no hacks, no AMP. Just clean optimization.&lt;/p&gt;

&lt;p&gt;The project svg4.ru is a large-scale SVG icon catalog with filters, images, and dynamic components — and it flies.&lt;/p&gt;

&lt;p&gt;👉 Want to learn how to do the same?&lt;br&gt;
Follow me — I’ll break it down step by step:&lt;/p&gt;

&lt;p&gt;essential server settings&lt;/p&gt;

&lt;p&gt;Laravel + Vite performance tips&lt;/p&gt;

&lt;p&gt;optimizing fonts, SVGs, cache, and lazy-loading&lt;/p&gt;

&lt;p&gt;what truly affects FCP, LCP, and CLS&lt;/p&gt;

&lt;p&gt;and most importantly — what not to do&lt;/p&gt;

&lt;p&gt;📌 The next post will drop once we hit 100 followers.&lt;br&gt;
Want the full breakdown? Hit follow so you don’t miss it.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>devops</category>
      <category>google</category>
    </item>
  </channel>
</rss>
