For a process I had to update the Author field in SharePoint online list item. This time I decided to use PnP.Core instead of PnP.Framework. Was it worth it? I don't really know, but the method is not the most difficult part of the task.
(more...)For a process I had to update the Author field in SharePoint online list item. This time I decided to use PnP.Core instead of PnP.Framework. Was it worth it? I don't really know, but the method is not the most difficult part of the task.
(more...)When you use Azure SQL Database, then you should understand, that it has something different from on-prem version. And you will find it only when you start to work with it.
(more...)You can use AWK or grep
awk '/error/' logfilename.txt
or grep
grep 'pattern' logfilename.txt
(more...)Here I will write down the steps for creating projects for SPFX solutions. The prerequisites - Node, Yo and spfx-fast-serve are already installed.
(more...)Accidentally I found out, that Notepad++ allows to move multiple lines up and down without Copy-Cut / Insert? Use Ctrl + Shift + (arrow up | arrow down).
(more...)An application that was developed by me as a service with Net Core 8 didn’t want to start working as a Windows service. The application was created in Visual studio 2022 with a “Worker service” template. If you just start the app, it works. But I had problems to start it as a Windows Service.
(more...)The Azurite open-source emulator provides a free local environment for testing your Azure Blob, Queue Storage, and Table Storage applications. When you're satisfied with how your application is working locally, switch to using an Azure Storage account in the cloud. The emulator provides cross-platform support on Windows, Linux, and macOS.
(more...)Today I talked to my colleague about the speed of Hot Reload when developing React applications. I told him that I tried launching from WSL and that everything updates faster. This is about pure React, not for SPFX. I was asked how I created a project and how it works for me. And it turns out that it's not always good to use old tried and tested methods.
(more...)Transform text UPPERCASE or lowercase is a very common task for a developer. And when the text is not in the required case, you obviously don't want to type it one more time. Luckily, there are the developers of Visual Studio who already thought about it.
(more...)I knew that Linux is installed at my Windows Installation. And if I choose Ubuntu among the installed apps, I could use it. But not with WSL, then the error. It was the same as from command line, PowerShell. It also didn't allow me to execute any Linux utils within 'wsl -e ... '
(more...)