Meteor can’t find package eta/core even though it is installed

Summary A Meteor application fails to resolve the eta/core module during the build process, despite the eta package being correctly installed in node_modules. The error originates from the oidc-provider package, which attempts to import eta/core in its view handling code. This failure occurs because Meteor’s build tool does not automatically include the CommonJS sub-path export … Read more

Mockito.verify not behaving properly when using a capture

Summary The issue at hand involves Mockito.verify not behaving as expected when using a capture in conjunction with times(2). This problem arose after upgrading to JDK 21. The test fails when both times(2) and myCaptor.capture() are used, but passes if either is removed. Root Cause The root cause of this issue can be attributed to … Read more

Where is the error “SessionNotFound: invalid_request” generated?

Summary The SessionNotFound: invalid_request error is a common issue encountered when working with OIDC (OpenID Connect) providers. This error occurs when the OIDC provider is unable to find a valid session, resulting in an invalid_request error. The error message is often misleading, making it challenging to identify the root cause. Root Cause The root cause … Read more

Azure Data Factory + Synapse Serverless SQL Pool — Which Linked Service to Use for Dataset creation?

Summary When working with Azure Data Factory (ADF) and Azure Synapse Analytics using the serverless SQL pool, it’s essential to understand which linked service to use for dataset creation. The recommended approach is to use the Azure Synapse Analytics (SQL) linked service, which allows for seamless integration with the serverless SQL pool. Root Cause The … Read more

Problems linking boost with cmake

Summary The issue at hand is related to linking errors when using CMake to compile a project that includes Boost and OpenCV. The errors specifically pertain to the boost::program_options component. Despite the project compiling successfully without CMake using a custom makefile, the introduction of CMake results in undefined reference errors during the linking phase. Root … Read more

Angular version 18.2.14 has a bug on @Directive standalone compiling

Summary The Angular version 18.2.14 has a bug related to @Directive standalone compiling. This issue arises when using a directive with the standalone: true property, and the directive is not properly imported into the component’s imports array. The bug causes the page to function incorrectly without throwing any compilation errors. Root Cause The root cause … Read more

Access violation code when starting a debugging session of a Visual Studio Add-in for Office

Summary The issue at hand is an access violation that occurs when attempting to start a debugging session of a Visual Studio Add-in for Office. This problem arises despite the add-in being successfully built and installed through the debug folder using the .vsto file, which operates normally. The error message indicates that the program ‘[excel.exe]’ … Read more