Simulate a button click in Jest
Simulating a button click seems like a very easy/standard operation. Yet, I can't get it to work in Jest.js tests. This is what I tried (and also doing it using jQuery), but it didn't seem to trigger ...
- Modified
- 24 Sep at 17:45
force css grid container to fill full screen of device
How do I force a css grid container take the full width and height of the device screen for a single page app? Modified example is from Mozilla: [Firefox documentation](https://developer.mozilla.org/e...
Cant add Docker Support Visual Studio 2017
I'm using VS 2017. I have a web service and I want to add docker support to it. When I right click and open up the menu to add docker support it is greyed out. What causes it to be greyed out? How can...
- Modified
- 2 May at 22:14
React JS get current date
I want to output the current date in my componnent. In the console my code works, but the React console says: > bundle.js:14744 Uncaught RangeError: Maximum call stack size exceeded My component looks...
- Modified
- 21 Feb at 14:38
How to use custom preprocessor directives in .Net Core
I am trying to use a preprocessor directive in .Net core, but I can't determine the correct way to get the directive to be set: ``` static void Main(string[] args) { Console.WriteLine("Hello Worl...
How to deserialize a WCF soap response message from a file with DataContractSerializer?
When I call a web service operation, WCF deserializes the message to the proxy class with the DataContractSerializer: why couldn't I do the same ? Here is the soap message in the file ActLoginRespons...
- Modified
- 9 May at 08:3
google console error `OR-IEH-01`
i am trying to upload an android application on google play store (google play developer console). i am adding a new visa card and press pay and it gives me this error: > An unexpected error has occu...
- Modified
- 2 May at 15:14
The inline constraint resolver of type 'DefaultInlineConstraintResolver' was unable to resolve the following inline constraint: 'apiVersion'
I have a basic WebApi implementation setup with the default Values controller. After [reading a blog about RESTful WebApi Versioning](https://www.hanselman.com/blog/ASPNETCoreRESTfulWebAPIVersioningMa...
- Modified
- 24 Dec at 19:51
ASP.NET Core - Overriding the default ControllerFactory
I'm in a specific situation where I'd like to override the default ASP.NET ControllerFactory. I'd like to do this because I want to be in full control of what type of controller I handle each reques...
- Modified
- 2 May at 13:57
servicestack client authentication encrypt password
I have Xamarin application that is using servicestack as back-end API the current implementation to authenticate users is sending plain text from client side to server then authenticate users , what i...
- Modified
- 14 Aug at 20:26
The $(TargetFrameworkVersion) for FormsViewGroup.dll (v7.1) is greater than the $(TargetFrameworkVersion) for your project (v6.0) xamarin
the error is on visual studio 2017 and xamarin: > Severity Code Description Project File Line Suppression StateWarning The $(TargetFrameworkVersion) for FormsViewGroup.dll (v7.1) is g...
- Modified
- 28 Jul at 22:1
Why is TryParse in C#7 syntax (empty out parameter) emitting a warning if you compile it?
In C#7, you are allowed to do ``` if (int.TryParse("123", out int result)) Console.WriteLine($"Parsed: {result}"); ``` or - if you don't use the result and just want to check if the ...
- Modified
- 14 Sep at 12:55
Pagination in a .NET Core API Project
I am trying to implement pagination on `.NET Core` `RESTful` API's (with `EF`). Rather than re-inventing the wheel, I was hoping there was a way to either use a generic function that could hook into...
- Modified
- 2 May at 10:47
How to partially cut ViewCell separator line in Xamarin Forms?
I am using `ViewCell` to create rows in my table settings page. I have a setting to select a Light or Dark theme. ``` <ViewCell Height="50"> <StackLayout x:Name="darkTheme" VerticalOptions="FillA...
- Modified
- 2 May at 09:49
Use Debug.Log from C++
When making C++ plugins in Unity it is easier to use [Debug.Log](https://docs.unity3d.com/ScriptReference/Debug.Log.html) to quickly view variable values but this function is only available from C# si...
UNAUTHORIZED with API key
I try to authenticate a call from a service to another service using an API key. An administrative service creates 'service account users' when it is started for the first time. Now when a service cal...
- Modified
- 4 May at 06:36
Unity/Firebase How to authenticate using Google?
I'm trying to implement Firebase Authentication system in my Unity Game Project. Everything is setup properly on the console panel on the website. I've read the docs and can't find a way to login into...
- Modified
- 2 May at 11:58
Relative imports - ModuleNotFoundError: No module named x
This is the first time I've really sat down and tried python 3, and seem to be failing miserably. I have the following two files: 1. test.py 2. config.py config.py has a few functions defined in it...
- Modified
- 27 Jun at 03:29
re.sub erroring with "Expected string or bytes-like object"
I have read multiple posts regarding this error, but I still can't figure it out. When I try to loop through my function: ``` def fix_Plan(location): letters_only = re.sub("[^a-zA-Z]", # Search ...
How to loop through a JSON object with typescript (Angular2)
I am new to Angular2 and I am trying to loop through a JSON object that I am getting back from a GET request but can't work it out. ``` { Results: [{ Time: "2017-02-11T08:15:01.000+00:...
- Modified
- 1 May at 20:41
ServiceStack selfhosted performance on Raspberry
I have a C# console application with a self hosted ServiceStack server (based on AppSelfHostBase). It has both REST API (get and post) and a "standard" html/javascript website. If i run the code unde...
- Modified
- 1 May at 18:54
How to get connection string out of Azure KeyVault?
A hypothetical web-site currently connects using: ``` public SqlConnection CreateConnection() { DbConnection connection = new SqlConnection(); connection.ConnectionString = GetConnectionString(...
- Modified
- 23 May at 11:54
Getting a list of all users stored in a IAuthRepository
Looks like there is no method to retrieve a List from the IAuthRepository or do I miss something? I use the Redis implementation, so I need a couple of hashes or Alias keys to do some filtering too. ...
- Modified
- 1 May at 16:39
How to check if the docker engine and a docker container are running?
In a script, I need to check: a) Is the docker engine running? b) Given a container name, is that docker container running?
Typescript Servicestack Client authentication for SSE events
I am trying to use typescript [servicestack-client](https://github.com/ServiceStack/servicestack-client) to hook to SSE events from ServiceStack Server. The authentication is made by sending `Authent...
- Modified
- 1 May at 13:33