Author: plusz

  • Simplifying Web Testing with AI: Introducing the AI Test Script Generator

    Simplifying Web Testing with AI: Introducing the AI Test Script Generator

    The Testing Challenge As a team lead and software engineer, I’ve often encountered a recurring challenge in my projects: how to effectively test user journeys on websites. This challenge becomes particularly pronounced in companies without specialized QA teams, where testing responsibilities fall on developers who may not have extensive testing expertise. Let’s face it – many…

  • Generative AI + Vibe-Coding: How I Solved My Shopping Problem in One Evening

    Generative AI + Vibe-Coding: How I Solved My Shopping Problem in One Evening

    When a simple grocery shopping trip becomes the catalyst for innovation, you know you’re onto something. Last Saturday, while standing in the supermarket aisle trying to decipher whether sweet macaroons contained gluten, I found myself squinting at tiny German text on a transparent package, with the Polish translation conveniently covered by a price tag. After…

  • Building an Automated Story Generation and Kindle Delivery System with Make.com

    Building an Automated Story Generation and Kindle Delivery System with Make.com

    Sometimes you need to automate things which may be very helpful for your family. If they like to read stories and use Kindle – automation may be a gamechanger. Own stories delivered every day or week, directly to Kindle. Just spend some time (AI can assist) to create a list of stories and main idea/format about what you want…

  • From Novice to Music Clip Creator: Unleashing Your Creativity with AI in Just a Weekend

    From Novice to Music Clip Creator: Unleashing Your Creativity with AI in Just a Weekend

    Last weekend brought several days off and, with rain pouring for two days straight, I found myself indoors-an ideal opportunity to play with creativity and explore the world of AI-powered music video creation. Why AI Is a Game-Changer for Creatives Using AI in coding or project management is like using a harvester instead of harvesting…

  • Streamlining Document Processing with LLM Support: A Case Study

    Streamlining Document Processing with LLM Support: A Case Study

    Application Overview The main goal of the application is to streamline document processing using LLM capabilities. Users can upload one or multiple PDF documents, specify categories for classification, and authorize requests using a unique code provided by the application owner. The LLM processes the documents based on commands like “categorize received document,” but this functionality…

  • Automating Content Creation and Publishing with Make.com and LLM

    Automating Content Creation and Publishing with Make.com and LLM

    Creating and posting automated content to platforms like WordPress, Facebook and LinkedIn can significantly streamline your content strategy and save time. In this article, I’ll walk you through the process I used to create an automated solution for generating blog posts and sharing them on Facebook, using Make.com integrated with Perplexity PRO API and ChatGPT…

  • Middleware on Netlify with Next.js

    Yes, there are known issues with Next.js middleware (middleware.ts) on Netlify, and these can cause your pages not to display or route correctly in production, even if everything works locally. TL;DRread documentation:https://docs.netlify.com/frameworks/next-js/runtime-v4/redirects-and-rewrites/ Key Issues Identified Workarounds and Recommendations Summary Table Issue Type Impact on Netlify Workaround/Advice Middleware runs on all paths Causes 404s, breaks static…

  • Exploring Snowflake DocumentAI for Supermarket Price Tag Recognition

    Exploring Snowflake DocumentAI for Supermarket Price Tag Recognition

    Exploring Snowflake DocumentAI for supermarket price tag recognition, I experimented with extracting product names and prices from images. After setting up a schema and storage, I refined the input data by isolating price tags to improve accuracy. The model achieved 80% accuracy for product names but struggled with price recognition. Automating the process with queues…

  • Don’t blindly trust AI when coding!

    Don’t blindly trust AI when coding!

    Coding is evolving quickly. Tasks that can be described are now easily converted into code by LLM models. But is it safe to trust external tools that might lack awareness of syntax, best practices, and the pros & cons of different solutions? Key Advice:“Always test, write comprehensive unit tests, find errors, and suggest improvements.” Let’s…

  • How to read API and pass data to Chart.js

    How to read API and pass data to Chart.js

    Reading data from Json API, processing it and displaying on the page is one of the most popular solutions on the web.Can we do this with pure Typescript and frontend only? Let’s ask AI…. Then we need to compile ts into javascript, create js code snippet and make sure our && is not replaced with…