Vi shortcuts
I am tired to look for Vi shortcuts, let the copy of this content stay here. Press Esc to start waiting for the command and after that enter the action. Read more»
I am tired to look for Vi shortcuts, let the copy of this content stay here. Press Esc to start waiting for the command and after that enter the action. Read more»
As it turned out, I can execeute linux scripts at my Windows PC with WSL installed with Powershell! Just write ‘wsl -e ‘ and after that a command to execute. Read more»
The error is: Configuration loaded builds=0listen_address not defined, metrics & debug endpoints disabled builds=0[session_server].listen_address not defined, session endpoints disabled builds=0In gitlab runners allor “Run untagged jobs: Indicates whether this runner can pick jobs without tags”, set the checkbox correspondingly. Read more»
The short manual how to remove Apache 2 from Ubuntu with bash Linux command line. 4 steps. I advice you to execute all the commands with sudo. Read more»
Many times I told myself not to work with SharePoint, but it’s forever with me 🙂My colleague asked to help him with a problem with modern lists. There some simple fields, without lookups. But there’s an error in displaying items. I spent about an hour to determine the problem – created a copy of the […] Read more»
The commandlet ‘Get-ChildItem’ will give you all the default information about the folders inside. By default they are: Mode, LastWriteTime, Length (for files) and Name. Get-ChildItem c:\Path Read more»
Once I tried to make the application to migrate a custom data source from SharePoint 2010 to SharePoint 2019 on-premise. To make it easier, I decided to make to separate solutions – the first one to export the data from SharePoint 2010 from the list to JSON and attachments to local folder(CSOM for SharePoint 2010 […] Read more»
If you work with external developers and you often have to get the code from them, it’s not very good to transfer it with dropbox or something like that. You want to achieve it, view changes, make tests and build it. It’s why CI/CD is made for. At first you should add external repository to […] Read more»
I can’t imagine the development process without Git. It’s not only to store the source code, but to work and to live with it. If you can’t use Git, you can’t take part in modern development. It’s not very difficult, may be it’s even easy. But you should know some recommendations to avoid mistakes and […] Read more»
The task is. You have an array of numbers, you should find the max sum of the digits. The numbers are natural. Constraints: you can not use arrays. Read more»