Work Hours
Monday to Friday: 8am – 6pm
Weekend: 10am – 2pm
The software system conception is ESP32 based device. It should receive date from GPS and accelerometer via UART and I2C. System should output data to epaper display as well as SD card. The user can interact with the device via…
“Modern” approach to embedded software.I have reached the stage where it would be good to be able to monitor the progress of the track riding. I have a choice: pay for a commercial device, or develop something of my own,…
Introduction Dependency Injection (DI) has become a cornerstone technique in modern software development, promoting loose coupling and enhanced modularity. Particularly in .NET Core, Microsoft’s cutting-edge framework for building applications, DI plays a pivotal role in creating scalable, maintainable, and testable…
I had recently a strange bug in production code. There was no simple way to debug this solution. I needed to test some of the code using production data. Class to test was using parsing big blob file. I have…
In this chapter, we will focus how to release for production. I also have one fun fact about possibilities. Vercel hosting The simplest way to host is to place our app on the servers of the people who made Next.js.…
In this chapter, we will focus on fetching data in two ways: Server Action and API. We also touch forms topic. Server Action Next.js defines server actions as asynchronous functions that are executed at server side. The real power of…
In this chapter, we will focus on layouts, navigation with highlighting active link, images and rendering. Layouts Layout define how our pages will be formatted. It is shared between every page in path and sub path. It can be overridden…
Next.js is a web development framework that makes building websites and web applications easier. It was created to simplify the process of developing React applications by providing a structure and conventions, reducing the need for developers to make many decisions…
Understanding Code Reviews, helping Each Other Get Better Code review is like a team check for computer programs. It’s a moment when your teammates take a close look at the code you wrote and offer advice. However, it’s not just…