All Blog Posts
- June 18, 2025Aggregating API requests to improve application performance
API
Laravel
Backend
Nextjs
Frontend
Performance
In some cases it's possible to save up to 50% of the API-communication time during initial loading of the application.
- May 16, 2025The joy of running a blog in one's favourite technology
Frontend
UI
Nextjs
SSG
MDX
Markdown
React
Running a blog is fun. There are two kinds of activities - writing blog articles and improving the blog engine.
- April 11, 2025How contextual understanding can help you? Codeium, real world examples
AI
Tools
Researching
Refactoring
Explaining
Estimating
Switch from using AI for repetitive tasks to using it for deep research during planning, better code understanding during bugfixing and real assistance in developing new features.
- March 3, 2025Easy and secure authentication with magic links (and its quirks) ๐ฎ
Frontend
Backend
Authentication
UI
Magic link is an easy and secure authentication method which doesnโt require creating accounts nor managing passwords.
- January 8, 2025Slim down your Next.js app with Bundle Analyzer
Frontend
Performance
Nextjs
When it comes to getting rid of unnecessary or heavy dependencies we need a handy tool to track them down. Bundle Analyzer turns out to do the job.
- November 27, 2024GitHub Copilot for repetitive work โ๏ธ
AI
Tools
Refactoring
When a migration of frontend library came in, AI did the job for the boring part.
- October 25, 2024Stripe Payments with React and headless Magento ๐
Frontend
Backend
Payment
Magento
React
Stripe
Set up a front-end application to handle credit card payment with Stripe and achieve a seamless online shopping experience.
- September 2, 2024Ant Design select dropdown with images preview
Frontend
UI
Create custom dropdown option labels renderer for Ant Design Select Component.
- August 5, 2024Cloudflare image optimization in Next.js
Frontend
Images
Optimization
Resizing
Cloudflare is really good at optimizing images. Make it handle all images which require optimization and work out the best quality settings which fit your project well.
- July 1, 2024Cleaning up Laravel app database duplicates - part 2 - images
Backend
Laravel
Database
Cleanup
Images
Clean up image duplicates. Generate hash strings for our images and compare them only if other fields are equal.
- June 3, 2024Cleaning up Laravel app database duplicates - part 1
Backend
Laravel
Database
Cleanup
Create a handy migration script to find unwanted rows, remove them and replace foreign keys to point to correct places.