Cannot load V8 interface assembly. Load failure information for v8-ia32.dll
Cannot load V8 interface assembly. Load failure information for v8-ia32.dll: C:\Users\szymarad\AppData\Local\Temp\Temporary ASP.NET Files\vs\506fb4ab\b0850f51\assembly\dl3\28a19a82\00b1e3d3_a5add301\v...
- Modified
- 14 Dec at 06:3
Properties slower than fields
It seems that every post I have come across comes to the same consensus: properties that merely return a field are inlined by JIT and have nearly identical performance to fields. However, this doesn'...
- Modified
- 14 Dec at 19:14
How do I add a C# solution file in JetBrains Rider?
In Rider, if I open a folder that has a single .csproj file in it, how do I add a solution? Is there a way to do it inside Rider, like there is in Visual Studio, without resorting to the command line ...
- Modified
- 22 May at 04:18
servicestack null ref error when using native SQL and ORMLite. Dapper error
I am getting an error trying to get this data with ORMLite. I am pretty sure its failing because the ParentID is null. But I don't know how to fix it. It errors when I call this method. ``` return ...
- Modified
- 13 Dec at 19:42
Angular 7 error RangeError: Maximum call stack size exceeded
I am trying to learn angular by following the [official tutorial](https://angular.io/tutorial/) but when following steps for `hero component` and `hero detail component`, it raises an error "RangeErro...
It was not possible to find any compatible framework version. The specified framework 'Microsoft.NETCore.App', version '2.2.0' was not found
I had a .Net Core console app built and deployed. The project's Platform target is x86. Target framework is .Net Core 2.2(x86). Although .Net Core 2.2 (x86) SDK is installed, I get following err...
TLS/SSL with System.IO.Pipelines
I have noticed the new System.IO.Pipelines and are trying to port existing, stream based, code over to it. The problems with streams are well understood, but at the same time it features a rich echosy...
Strongly typed Guid as generic struct
I already make twice same bug in code like following: ``` void Foo(Guid appId, Guid accountId, Guid paymentId, Guid whateverId) { ... } Guid appId = ....; Guid accountId = ...; Guid paymentId = ...;...
How to ignore ssl_client_socket_impl.cc(1061)] handshake failed in selenium c# ChromeDriver
I have added But still getting: > ssl_client_socket_impl.cc(1061)] handshake failed error How to suppress this error from console?
- Modified
- 1 Sep at 11:7
Where is JRE 11?
# UPDATE: You can find [JRE 8](https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html), [JRE 9](https://www.oracle.com/technetwork/java/javase/downloads/java-archive-...
Deploying a plain ASP.NET Core 2.2 Web App in Azure using Web Deploy is throwing an error
I went to publish an ASP.NET Core web application using Azure through the screen in Visual Studio 2017. I used all of the defaults, though my app uses migrations so I had to tell it to run them in th...
- Modified
- 11 Apr at 22:15
aspNetCore 2.2.0 - AspNetCoreModuleV2 error
After updating my project to "Microsoft.AspNetCore.All" 2.2.0, I get an error when running in IIS, but not when running in Visual Studio. `HTTP-Fehler 500.21 - Internal Server Error Der Handler "aspN...
- Modified
- 12 Dec at 01:31
Async method deadlocks with TestScheduler in ReactiveUI
I'm trying to use the reactiveui test scheduler with an async method in a test. The test hangs when the async call is awaited. The root cause seems to be a command that's awaited in the async method...
- Modified
- 22 Dec at 17:11
How to run BackgroundService on a timer in ASP.NET Core 2.1
I want to run a background job in ASP.NET Core 2.1. It has to run every 2 hours and it will need to access my DI Container because it will perform some cleanups in the database. It will need to be `as...
- Modified
- 11 Dec at 19:57
Unexplained crashes related to ntdll.dll
I have an application that I've written that crashes intermittently, but I'm unable to capture an exception at the application layer. I always get an entry in the event log but doesn't give me much i...
AttributeError: 'Series' object has no attribute 'reshape'
I'm using sci-kit learn linear regression algorithm. While scaling Y target feature with: ``` Ys = scaler.fit_transform(Y) ``` I got > ValueError: Expected 2D array, got 1D array instead: After ...
- Modified
- 11 Dec at 13:18
NETSDK1061: The project was restored using Microsoft.NETCore.App version 1.0.0, but with current settings, version 2.0.9 would be used instead
I'm developing a mobile app and using MS App Center for CI. Yesterday the Unit Test project failed to build in App Center with the following error. I couldn't recreate the issue on any developer machi...
- Modified
- 1 Nov at 08:4
Typescript error This condition will always return 'true' since the types have no overlap
I having this condition on a form group: ``` if((age>17 && (this.frType=="Infant")) || (age>40 && this.frType=="Grandchild") || (age<=5 && (this.frType!="Child" || this.frType!="Infant" ...
- Modified
- 11 Dec at 07:59
Download folder from Amazon S3 bucket using .net SDK
How to download entire folder present inside s3 bucket using .net sdk.Tried with below code, it throws invalid key.I need to download all files present inside nested pesudo folder present inside bucke...
- Modified
- 4 Jun at 03:41
Can I set state inside a useEffect hook
Lets say I have some state that is dependent on some other state (eg when A changes I want B to change). Is it appropriate to create a hook that observes A and sets B inside the useEffect hook? Wi...
- Modified
- 23 Jul at 15:44
ServiceStack: Getting FileNotFoundException when properties are null?
I am using ServiceStack and have discovered something odd. I am getting the `FileNotFoundException` on `System.Numerics.Vectors` when the WS Dto contains some `null` values. For example, I have a Dto ...
- Modified
- 10 Dec at 12:49
Inject Entity Framework Core Context into repository with ServiceStack when unit testing
I have a repository class ``` public class PersonRepository : IPersonRepository { private DataContext _context; public PersonRepository(DataContext context) { _context = context;...
- Modified
- 10 Dec at 13:39
First Enum Value Not Mapping Correctly In JSON Response
I have the following endpoint: ``` public List<SubBranch> Get(GetSubBranch request) { SubBranch subBranch = new SubBranch(); subBranch.BranchId = 1; subBra...
- Modified
- 10 Dec at 01:57
Servicestack Roles Users and Groups
Since roles don't contain permissions. I am a bit confused by the Roles and Permission in ServiceStack. It appears they are really the same thing? I want to implement a Group, that has roles, that ha...
- Modified
- 30 Dec at 02:7
Why is summing an array of value types slower then summing an array of reference types?
I'm trying to understand better how memory works in .NET, so I'm playing with [BenchmarkDotNet and diagnozers](https://benchmarkdotnet.org/articles/configs/diagnosers.html). I've created a benchmark c...
- Modified
- 11 Dec at 01:39