Story points and estimation

0 Comments

GoalIt’s goals is helping the product owner and team to prioritize work and make user stories clear for all team members. Notes Why Are Story Points Better Than Hours?Estimating the number of hours for a

How to fix: Permission denied (publickey) on Windows 11, when using git clone and id_rsa private key

0 Comments

Source: https://confluence.atlassian.com/bitbucketserverkb/ssh-rsa-key-rejected-with-message-no-mutual-signature-algorithm-1026057701.html When using git clone with git 2.34.1 on Windows 11, I was getting the error: Permission denied (publickey). Cause: rsa is deprecated The SSH public private keys were generated by using the command:

How to setup a new iPad pro from an existing iPad

0 Comments

  To setup my new iPad pro based on my existing iPad pro I used the quick start feature (https://support.apple.com/en-us/HT210216). At first the quick start screen did not appear on the old iPad. I fixed

Split PDF in C# for free with .NET Core and iText.Kernel.Pdf

0 Comments

using iText.Kernel.Pdf; namespace RvvFacturatie.Services { public class PdfService { public void Split(string filePath, string outputFolderPath) { // Make sure the output folder exists and is empty. if (Directory.Exists(filePath)) { Directory.Delete(filePath, true); } Directory.CreateDirectory(outputFolderPath); using (var

How to run GitLab in a container hosted by Docker Desktop for Windows

0 Comments

  Resources https://docs.microsoft.com/nl-nl/windows/wsl/install-win10#step-4—download-the-linux-kernel-update-package   Installing GitLab on WSL 2 container running on Docker Desktop for Windows * Install Windows feature “Windows Subsystem for Linux” (Start > Turn Windows features on or off > check “Windows

How to fix: MSBuild error MSB4226: The imported project was not found

0 Comments

  When you get the MSBuild error: “WebService.csproj” (Rebuild target) (1) -> WebService.csproj(193,11): error MSB4226: The imported project “C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Microsoft\VisualStudio\v16.0\WebApplications\Microsoft.WebApplication.targets” was not found. Also, tried to find “WebApplications\Microsoft.WebApplication.targets” in the fallback search

Using ‘winston-daily-rotate-file in TypeScript

0 Comments

  In TypeScript you need to import the library ‘winston-daily-rotate-file’ like, so:   import ‘winston-daily-rotate-file’   import { createLogger, format, Logger, transports } from ‘winston’; import ‘winston-daily-rotate-file’;   let _winstonLogger: Logger;   function initialise() {   _winstonLogger = createLogger({     format: format.json(),     transports: [       new transports.Console({         format: format.combine(format.colorize(), format.simple()),       }),     ],   }); }   function addRotatingFileSystemLogging() {   const options = {     filename: ‘application-%DATE%.log’,