Story points and estimation
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
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
When installing an offline windows hotfix on a Windows Server 2012 R2 machine, I encountered the errors: Windows update could not be installed because of error 2149842967 Installer encountered an error: 0x80240004 Windows update
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:
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
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
The PowerShell script “My-Script.ps1” is just an example. The *> will direct all output, including the output generated form scripts imported or executed from the “My-Script.ps1” itself. .\My-Script.ps1 *> log.txt
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
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
When I did not use the MX Master 3 for a minute, the mouse would lag, when starting the mouse again on a DELL XPS 9710. Fixed this by changing the following registry keys:
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’,